/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
main#main {
  min-height: 150vh;
}

.insights .insights-hero {
  background-color: #ffffff;
  padding: 6rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .insights .insights-hero {
    padding: 3rem 0 0;
  }
}
.insights .insights-hero .title_container {
  text-align: center;
  margin: 0 auto 2rem;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .insights .insights-hero .title_container {
    width: 80%;
  }
}
.insights .insights-hero .title_container h1 {
  margin-bottom: 0;
}
.insights .insights-hero .title_container h4 {
  margin-bottom: 0;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .insights .insights-hero .title_container h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.insights .insights-hero .category_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .insights .insights-hero .category_container {
    margin-bottom: 0;
  }
}
.insights .insights-hero .category_container .categories {
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  color: #074CA0;
  font-weight: bold;
  border: 2px solid transparent;
  border-radius: 4px;
}
.insights .insights-hero .category_container .categories:hover {
  border: 2px solid #074CA0;
  color: #ffffff;
  background-color: #074CA0;
}
.insights .insights-hero .category_container .categories.active {
  border: 1px solid #074CA0;
  color: #ffffff;
  background-color: #074CA0;
}
.insights .main {
  background-color: #FBFCFC;
}
.insights .main .main__container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 80%;
  margin: 0 auto;
  padding: 4rem 0 2rem;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .insights .main .main__container {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .insights .main .main__container {
    padding: 2rem 0;
  }
}
.insights .main .main__container .search_container {
  background-color: rgba(104, 104, 104, 0.05);
  position: absolute;
  width: 19.5%;
}
@media screen and (max-width: 999px) {
  .insights .main .main__container .search_container {
    width: 44%;
  }
}
@media screen and (max-width: 768px) {
  .insights .main .main__container .search_container {
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    background-color: rgba(104, 104, 104, 0.04);
  }
}
.insights .main .main__container .search_container .accordian {
  padding: 1rem;
  display: none;
  cursor: pointer;
}
.insights .main .main__container .search_container .accordian:hover {
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .insights .main .main__container .search_container .accordian {
    display: block;
  }
}
.insights .main .main__container .search_container .accordian.active h5::after {
  transform: rotate(-45deg);
  transition: 0.3s;
  top: 0.5rem;
}
.insights .main .main__container .search_container .accordian h5 {
  margin: 0;
  font-weight: 600;
  font-family: "Arial";
  color: rgba(7, 76, 160, 0.8);
  font-size: 18px;
  padding-bottom: 0;
  display: block;
  position: relative;
}
.insights .main .main__container .search_container .accordian h5::after {
  content: "";
  display: block;
  position: absolute;
  right: 1rem;
  top: 0;
  height: 15px;
  width: 15px;
  border-top: 2px solid #074CA0;
  border-right: 2px solid #074CA0;
  transform: rotate(135deg);
}
@media screen and (max-width: 576px) {
  .insights .main .main__container .search_container .searchandfilter {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform-origin: left top;
    transform: scaleY(0);
  }
  .insights .main .main__container .search_container .searchandfilter.show {
    opacity: 1;
    visibility: visible;
    transition: all 500ms ease;
    transform: scaleY(1);
  }
  .insights .main .main__container .search_container .searchandfilter.show ul {
    display: block;
  }
}
.insights .main .main__container .search_container .searchandfilter ul {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 576px) {
  .insights .main .main__container .search_container .searchandfilter ul {
    display: none;
  }
}
.insights .main .main__container .search_container .searchandfilter ul h4 {
  margin: 0;
  font-weight: 600;
  font-family: "Arial";
  color: rgba(7, 76, 160, 0.8);
  padding-left: 0.5rem;
  padding-bottom: 0;
}
.insights .main .main__container .search_container .searchandfilter ul .sf-field-search {
  width: 100%;
  padding: 0.5rem;
  background-color: rgba(104, 104, 104, 0.05);
}
@media screen and (max-width: 768px) {
  .insights .main .main__container .search_container .searchandfilter ul .sf-field-search {
    background-color: transparent;
  }
}
.insights .main .main__container .search_container .searchandfilter ul .sf-field-search label {
  width: 100%;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 0;
}
@media screen and (max-width: 999px) {
  .insights .main .main__container .search_container .searchandfilter ul .sf-field-search label {
    padding-left: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .insights .main .main__container .search_container .searchandfilter ul .sf-field-search label {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .insights .main .main__container .search_container .searchandfilter ul .sf-field-search label {
    width: 100%;
  }
}
.insights .main .main__container .search_container .searchandfilter ul .sf-field-search label input {
  border: none;
  border-radius: 20px;
  border: 1px solid #074CA0;
  color: #074CA0;
  background-color: rgba(251, 252, 252, 0.01);
}
.insights .main .main__container .search_container .searchandfilter ul .sf-field-search label input::placeholder {
  color: #074CA0;
  padding: 0 0 0 0.25rem;
  font-size: 12px;
  font-style: italic;
}
.insights .main .main__container .search_container .searchandfilter ul .sf-field-reset {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  border-top: 1px solid rgba(7, 76, 160, 0.3);
  padding: 1rem 0;
}
.insights .main .main__container .search_container .sf-field-taxonomy-insight_tags {
  padding: 0.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .insights .main .main__container .search_container .sf-field-taxonomy-insight_tags ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.insights .main .main__container .search_container .sf-field-taxonomy-insight_tags ul li {
  display: block;
  padding: 0;
  margin: 0.5rem 0 0.5rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .insights .main .main__container .search_container .sf-field-taxonomy-insight_tags ul li {
    margin: 0.25rem 0.25rem 0.25rem 1rem;
  }
}
.insights .main .main__container .search_container .sf-field-taxonomy-insight_tags ul li input {
  display: none;
}
.insights .main .main__container .search_container .sf-field-taxonomy-insight_tags ul li label {
  color: #074CA0;
  font-weight: 400;
  padding-left: 0;
  display: inline-block;
}
.insights .main .main__container .search_container .sf-field-taxonomy-insight_tags ul li label::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  transition: 0.3s;
  opacity: 0;
}
.insights .main .main__container .search_container .sf-field-taxonomy-insight_tags ul li label:hover::after {
  background-image: linear-gradient(to right, #EA1E2B, #074CA0);
  opacity: 1;
  transition: 0.3s;
}
.insights .main .search-filter-results {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.insights .main .search-filter-results .no_results {
  margin-left: 28%;
}
@media screen and (max-width: 999px) {
  .insights .main .search-filter-results .no_results {
    margin-left: 53%;
  }
}
@media screen and (max-width: 768px) {
  .insights .main .search-filter-results .no_results {
    margin-left: 0;
  }
}
.insights .main .search-filter-results article {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  flex: 1 0 23%;
  max-width: 23%;
  margin: 0 1% 1.25rem;
  box-shadow: 0px 12px 18px -6px rgba(35, 57, 102, 0.15);
}
.insights .main .search-filter-results article:first-of-type {
  margin-left: 26%;
}
@media screen and (max-width: 999px) {
  .insights .main .search-filter-results article:first-of-type {
    margin-left: 51%;
  }
}
@media screen and (max-width: 768px) {
  .insights .main .search-filter-results article:first-of-type {
    margin-left: 0;
  }
}
@media screen and (max-width: 999px) {
  .insights .main .search-filter-results article {
    flex: 1 0 48%;
    max-width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .insights .main .search-filter-results article {
    flex: 1 0 100%;
    margin: 0 0 1.25rem;
    max-width: 100%;
  }
}
.insights .main .search-filter-results article img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.insights .main .search-filter-results article h5 {
  line-height: 1.5rem;
  font-size: 20px;
}
.insights .main .search-filter-results article .article__permalink {
  margin-top: auto;
  margin-bottom: 0.75rem;
}
.insights .main .search-filter-results article .article__permalink a {
  border-radius: 4px;
  border: 2px solid #074CA0;
  padding: 0.5rem 1rem;
}
.insights .main .search-filter-results article .article__permalink a:hover {
  background-color: #074CA0;
  color: #ffffff;
  letter-spacing: 1px;
}
.insights .main .search-filter-results article .article__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.insights .main .search-filter-results article .article__content p {
  font-size: 14px;
}
.insights .main .search-filter-results article .article__content .meta {
  font-size: 12px;
  text-transform: uppercase;
  color: #686868;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.insights .main .search-filter-results article .article__content .meta span {
  margin: 0 0.5rem;
}

.go_deeper.half {
  background-image: linear-gradient(#ffffff 60%, #074CA0 60%);
  margin-bottom: 0;
  padding-bottom: 4rem;
}
@media screen and (max-width: 576px) {
  .go_deeper.half {
    background-image: linear-gradient(#ffffff 40%, #074CA0 40%);
  }
}
.go_deeper .go_deeper--inner {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.go_deeper .go_deeper--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3rem 0;
}
.go_deeper .go_deeper--title h2 {
  margin: 0;
}
.go_deeper .go_deeper--title.center {
  display: block;
  text-align: center;
}
.go_deeper .go_deeper--title.center_line {
  display: block;
  text-align: center;
}
.go_deeper .go_deeper--title.center_line::before {
  content: "";
  width: 150px;
  height: 4px;
  margin-bottom: 1rem;
  background-color: #686868;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .go_deeper .go_deeper--title.center_line::before {
    width: 100px;
    height: 2px;
  }
}
.go_deeper .button__outline {
  border: 2px solid #074CA0;
  display: block;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}
.go_deeper .button__outline:hover {
  background-color: #074CA0;
  color: #ffffff;
}
.go_deeper .go_deeper_columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.go_deeper .go_deeper_columns .go_deeper_column {
  width: 31%;
  flex: 1 0 31%;
  margin: 0 1%;
  display: block;
  background-color: #ffffff;
  box-shadow: 5px 5px 10px rgba(104, 104, 104, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .go_deeper .go_deeper_columns .go_deeper_column {
    flex: 1 0 48%;
    margin: 0.5rem 1%;
  }
}
@media screen and (max-width: 768px) {
  .go_deeper .go_deeper_columns .go_deeper_column {
    flex: 1 0 100%;
    margin-bottom: 1rem;
  }
}
.go_deeper .go_deeper_columns .go_deeper_column img {
  height: 250px;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 576px) {
  .go_deeper .go_deeper_columns .go_deeper_column img {
    height: 300px;
  }
}
.go_deeper .go_deeper_columns .go_deeper_column a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  font-weight: 500;
  margin-bottom: 1rem;
  margin-right: 1rem;
}
.go_deeper .go_deeper_columns .go_deeper_column a::after {
  display: block;
  content: "";
  background-image: url("images/arrow-right.svg");
  width: 28px;
  height: 28px;
  margin-left: 0.5rem;
}
.go_deeper .go_deeper_columns .go_deeper_column a:hover {
  color: #074CA0;
  text-decoration: underline;
}
.go_deeper .go_deeper_columns .go_deeper_column .go_deeper_column-body {
  padding: 1rem;
}
.go_deeper .go_deeper_columns .go_deeper_column .go_deeper_column-body p {
  color: #000000;
  font-size: 16px;
}
.go_deeper .go_deeper_columns .go_deeper_column .go_deeper_column-body h5 {
  margin: 0.5rem 0;
}
.go_deeper .go_deeper_columns .go_deeper_column .go_deeper_column-body h6 {
  font-size: 15px;
  margin: 0;
}

.newsletter {
  background-image: linear-gradient(#ffffff 50%, #074CA0 50%);
  padding: 2rem 0;
}
.newsletter .newsletter__inner {
  background-color: #F1F1F1;
  display: block;
  margin: 0 auto;
  width: 70%;
  padding: 2rem;
}
@media screen and (max-width: 999px) {
  .newsletter .newsletter__inner {
    width: 90%;
  }
}
.newsletter .newsletter__inner .newsletter__title {
  text-align: center;
}
.newsletter .newsletter__inner .newsletter__title h3, .newsletter .newsletter__inner .newsletter__title h6 {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .newsletter .newsletter__inner .newsletter__title h3, .newsletter .newsletter__inner .newsletter__title h6 {
    width: 90%;
  }
}
.newsletter .newsletter__inner .newsletter__title h6 {
  padding-bottom: 1rem;
}
.newsletter .newsletter__inner .newsletter__form {
  display: block;
  width: 60%;
  margin: 2rem auto;
}
@media screen and (max-width: 999px) {
  .newsletter .newsletter__inner .newsletter__form {
    width: 90%;
  }
}
.newsletter .newsletter__inner #mc_embed_signup_scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.newsletter .newsletter__inner #mc_embed_signup_scroll .mc-field-group {
  width: 32%;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .newsletter .newsletter__inner #mc_embed_signup_scroll .mc-field-group {
    width: 48%;
  }
}
.newsletter .newsletter__inner #mc_embed_signup_scroll .mc-field-group input {
  width: 100%;
  outline: none;
  border: none;
  height: 35px;
  border-radius: 5px;
  padding: 0 10px;
}
.newsletter .newsletter__inner #mc_embed_signup_scroll .mc-field-group label {
  width: 100%;
  display: block;
  text-transform: uppercase;
  font-size: 14px;
}
.newsletter .newsletter__inner #mc_embed_signup_scroll .optionalParent {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .newsletter .newsletter__inner #mc_embed_signup_scroll .optionalParent {
    width: 100%;
    margin-top: 1rem;
  }
}
.newsletter .newsletter__inner #mc_embed_signup_scroll .mc-field-group.email {
  width: 100%;
}
.newsletter .newsletter__inner #mc_embed_signup_scroll input.button {
  width: 100%;
  background-color: #074CA0;
  color: #fff;
  padding: 0.3rem 1rem;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid #074CA0;
  border-radius: 5px;
  font-weight: bold;
  display: block;
  margin: 0;
}
.newsletter .newsletter__inner #mc_embed_signup_scroll input.button:hover {
  color: #074CA0;
  margin: 0;
  background-color: transparent;
}

.hero {
  height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 400px;
  }
}
.hero::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(7, 76, 160, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.hero .hero--inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-top: 4rem;
  width: 60%;
}
.hero .hero--inner h1, .hero .hero--inner h6 {
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.hero .hero--inner h5 {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .hero .hero--inner h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero--inner {
    width: 85%;
  }
}

.timeline {
  border-bottom: 2px solid rgba(7, 76, 160, 0.4);
  border-top: 2px solid rgba(7, 76, 160, 0.4);
  margin: 4rem 0;
  padding: 1rem 0;
}
.timeline h3 {
  margin: 0 6%;
  padding: 1rem 0;
}
.timeline .slides {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.timeline .slides h4 {
  margin-bottom: 0;
}
.timeline .slides .arrow-right {
  display: block;
  cursor: pointer;
  width: 5%;
  position: relative;
}
.timeline .slides .arrow-right::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  height: 20px;
  width: 20px;
  border-right: 2px solid #074CA0;
  border-bottom: 2px solid #074CA0;
  transform: rotate(-45deg);
}
.timeline .slides .arrow-left {
  display: block;
  cursor: pointer;
  width: 5%;
  position: relative;
}
.timeline .slides .arrow-left::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  height: 20px;
  width: 20px;
  border-left: 2px solid #074CA0;
  border-bottom: 2px solid #074CA0;
  transform: rotate(45deg);
}
.timeline .slides .slick-list {
  width: 90%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .timeline .slides .slick-list {
    width: 80%;
  }
}
.timeline .slick-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.timeline .slick-track .slide {
  display: block;
  position: relative;
  margin: 0 0.5rem;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.0392156863);
}
.timeline .slick-track .slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.timeline .slick-track .slide .slide__inner {
  padding: 1rem;
}
.timeline .slick-track .slide .slide__inner p {
  margin: 0;
}

.insights .main .main__container .search_container .sf-field-taxonomy-insight_tags ul li.sf-option-active label::after {
  transition: 0.3s;
  opacity: 1;
  background-image: linear-gradient(to right, #EA1E2B, #074CA0);
}

.pagination {
  display: block;
  margin: 2rem auto;
  text-align: center;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .pagination {
    width: 100%;
  }
}
.pagination .wp-pagenavi span, .pagination .wp-pagenavi a {
  margin: 0 1rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .pagination .wp-pagenavi span, .pagination .wp-pagenavi a {
    margin: 0 0.75rem;
  }
}
.pagination .wp-pagenavi span.current {
  font-weight: bold;
  color: #686868;
  border-bottom: 3px solid #686868;
}
