.filters-bar {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 50px 0;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .filters-bar {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .filters-bar {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .filters-bar {
    padding-bottom: 25px;
  }
}
.filters-bar.search-page-bar {
  border-top: none;
  padding-top: 25px;
}
.filters-bar .post-categories-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .filters-bar .post-categories-wrapper {
    justify-content: left;
  }
}
@media (max-width: 768px) {
  .filters-bar .post-categories-wrapper {
    justify-content: center;
  }
}
.filters-bar .post-categories-wrapper .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 108%;
  margin-bottom: 0;
  width: 29%;
}
@media (max-width: 991px) {
  .filters-bar .post-categories-wrapper .title {
    font-size: 25px;
    width: unset;
  }
}
@media (max-width: 768px) {
  .filters-bar .post-categories-wrapper .title {
    font-size: 20px;
    display: none;
  }
}
.filters-bar .post-categories-wrapper .category-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
  gap: 15px;
  max-width: 898px;
  width: 100%;
}
@media (max-width: 768px) {
  .filters-bar .post-categories-wrapper .category-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.filters-bar .post-categories-wrapper .category-wrap .category-button {
  font-size: 13px;
  font-weight: 600;
  line-height: 1em;
  background-color: white;
  border: 1px solid #242626;
  border-radius: 32px;
  width: 100%;
  max-width: 152;
  height: 41px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
}
.filters-bar .post-categories-wrapper .category-wrap .category-button.active {
  border-color: #303ab2;
  background-color: #f1fbff;
  color: #303ab2;
}
.filters-bar .post-categories-wrapper .category-wrap .category-button:hover {
  border-color: #303ab2;
  background-color: #f1fbff;
  color: #303ab2;
}
@media (max-width: 768px) {
  .filters-bar .post-categories-wrapper .category-wrap .category-button {
    max-width: 160px;
  }
}
.filters-bar .search-form {
  border-left: 1px solid #242626;
  padding-left: 25px;
  padding-right: 10px;
  margin-left: 25px;
  max-width: 315px;
  width: 100%;
}
@media (max-width: 1200px) {
  .filters-bar .search-form {
    padding-left: 15px;
    margin-left: 15px;
    padding-right: 5px;
  }
}
@media (max-width: 991px) {
  .filters-bar .search-form {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}
.filters-bar .search-form .search-wrap {
  position: relative;
  max-width: 315px;
  width: 100%;
}
.filters-bar .search-form .search-wrap svg {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.filters-bar .search-form #search {
  border: 1px solid #242626;
  outline: none;
  border-radius: 32px;
  padding-left: 30px;
  font-size: 13px;
  height: 41px;
  width: 88%;
}

#category-info .filters-bar {
  margin: 40px auto -10px auto;
}

#recent-posts .post-container {
  max-width: 1440px;
  width: 100%;
}
#recent-posts .post-container .title {
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#recent-posts .post-container .title h2,
#recent-posts .post-container .title .search-page-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 108%;
}
@media (max-width: 991px) {
  #recent-posts .post-container .title h2,
  #recent-posts .post-container .title .search-page-title {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  #recent-posts .post-container .title h2,
  #recent-posts .post-container .title .search-page-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  #recent-posts .post-container .title h2,
  #recent-posts .post-container .title .search-page-title {
    font-size: 25px;
  }
}
@media (max-width: 440px) {
  #recent-posts .post-container .title h2,
  #recent-posts .post-container .title .search-page-title {
    font-size: 20px;
  }
}
#recent-posts .post-container .title a {
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px) {
  #recent-posts .post-container .title a {
    font-size: 16px;
  }
  #recent-posts .post-container .title a svg {
    width: 22px;
    height: 22px;
  }
}
#recent-posts .post-container .title a:hover {
  color: #303ab2;
}
#recent-posts .post-container .posts-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  padding: 40px 0 80px 0;
  width: 100%;
  gap: 30px;
}
@media (max-width: 768px) {
  #recent-posts .post-container .posts-wrap {
    padding-bottom: 60px;
  }
}
@media (max-width: 790px) {
  #recent-posts .post-container .posts-wrap {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  #recent-posts .post-container .posts-wrap {
    padding-bottom: 40px;
  }
}
#recent-posts .post-container .posts-wrap .post-item {
  width: 100%;
  max-width: 455px;
  padding: 20px;
  border-radius: 40px;
  align-self: stretch;
}
@media (max-width: 1500px) {
  #recent-posts .post-container .posts-wrap .post-item {
    max-width: 380px;
  }
}
@media (max-width: 1265px) {
  #recent-posts .post-container .posts-wrap .post-item {
    max-width: 350px;
  }
}
@media (max-width: 790px) {
  #recent-posts .post-container .posts-wrap .post-item {
    max-width: 420px;
  }
}
#recent-posts .post-container .posts-wrap .post-item:hover {
  background-color: #f1fbff;
}
#recent-posts .post-container .posts-wrap .post-item:hover .global-btn {
  background-color: #303ab2;
  color: white;
}
@media (max-width: 1500px) {
  #recent-posts .post-container .posts-wrap .post-item .global-btn {
    padding: 12px;
    max-width: 165px;
  }
}
@media (max-width: 480px) {
  #recent-posts .post-container .posts-wrap .post-item .global-btn {
    font-size: 14px;
    padding: 10px;
    max-width: 135px;
  }
}
#recent-posts .post-container .posts-wrap .post-item .post-thumbnail {
  width: 100%;
  max-width: 415px;
}
#recent-posts .post-container .posts-wrap .post-item .post-thumbnail img {
  width: 100%;
  max-width: 415px;
  height: auto;
  border-radius: 19px;
  max-height: 219px;
}
@media (max-width: 430px) {
  #recent-posts .post-container .posts-wrap .post-item .post-thumbnail img {
    border-radius: 17px;
  }
}
@media (max-width: 380px) {
  #recent-posts .post-container .posts-wrap .post-item .post-thumbnail img {
    border-radius: 12px;
  }
}
#recent-posts .post-container .posts-wrap .post-item .post-title h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.9px;
  margin: 25px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1265px) {
  #recent-posts .post-container .posts-wrap .post-item .post-title h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #recent-posts .post-container .posts-wrap .post-item .post-title h3 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  #recent-posts .post-container .posts-wrap .post-item .post-title h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
  }
}
@media (max-width: 440px) {
  #recent-posts .post-container .posts-wrap .post-item .post-title h3 {
    font-size: 19px;
  }
}

.global-btn {
  display: block;
  letter-spacing: 0;
  background-color: #303ab2;
  border: 2px solid #303ab2;
  border-radius: 40px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.4s;
  text-align: center;
  padding: 16px 20px;
  max-width: 180px;
  border: 2px solid #303ab2;
}
.global-btn:hover {
  background-color: #202777;
  border: 2px solid #202777;
}
.global-btn:focus {
  border: 2px solid #1edfe9;
}
.global-btn:active {
  color: black;
  border: 2px solid #1edfe9;
  background-color: #1edfe9;
}
.global-btn.ghost-btn {
  background-color: white;
  border: 2px solid #303ab2;
  color: #303ab2;
}
@media (max-width: 480px) {
  .global-btn.ghost-btn {
    font-size: 16px;
    padding: 13px;
    max-width: 160px;
  }
}
.global-btn.ghost-btn:hover {
  background-color: #202777;
  border: 2px solid #202777;
  color: white;
}
.global-btn.ghost-btn:focus {
  border: 2px solid #1edfe9;
  background-color: #303ab2;
  color: white;
}
.global-btn.ghost-btn:active {
  color: black;
  border: 2px solid #1edfe9;
  background-color: #1edfe9;
}
.global-btn.ghost-btn#load-more {
  cursor: pointer;
  margin: 0 auto;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: black;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  max-width: 200px;
}
.global-btn.ghost-btn#load-more:hover {
  background-color: #303ab2;
  color: white !important;
}
.global-btn.ghost-btn#load-more:hover span {
  color: white !important;
}
.global-btn.ghost-btn#load-more:active {
  background-color: #303ab2;
  color: white !important;
}
.global-btn.ghost-btn#load-more:active span {
  color: white !important;
}
.global-btn.ghost-btn#load-more:focus {
  background-color: #303ab2;
  color: white !important;
}
.global-btn.ghost-btn#load-more:focus span {
  color: white !important;
}
@media (max-width: 991px) {
  .global-btn.ghost-btn#load-more {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .global-btn.ghost-btn#load-more {
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  .global-btn.ghost-btn#load-more {
    font-size: 17px;
  }
}

main {
  width: 100%;
  background: white;
}
main h1,
main h2,
main h3,
main h4,
main p,
main a,
main span {
  color: #242626;
}

#intro {
  background-color: #303ab2;
  padding: 50px 20px;
}
@media (max-width: 768px) {
  #intro {
    padding: 40px 20px;
  }
}
#intro.category-intro {
  padding: 20px 10px;
}
@media (max-width: 565px) {
  #intro.category-intro {
    padding: 35px 10px;
  }
}
#intro.category-intro .wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
#intro.category-intro .get-back-txt {
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  display: block;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  #intro.category-intro .get-back-txt {
    font-size: 16px;
  }
}
@media (max-width: 565px) {
  #intro.category-intro .get-back-txt {
    font-size: 13px;
    bottom: -20px;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
#intro h1 {
  color: white;
  text-align: center;
  font-size: 55px;
  font-weight: 800;
  line-height: 1em;
  margin-bottom: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  #intro h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  #intro h1 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  #intro h1 {
    font-size: 30px;
  }
}
@media (max-width: 440px) {
  #intro h1 {
    font-size: 26px;
  }
}
#intro h1 svg {
  display: block;
  margin: 0 10px;
  width: 63px;
  height: 72px;
}
@media (max-width: 991px) {
  #intro h1 svg {
    width: 60px;
    height: auto;
  }
}
@media (max-width: 768px) {
  #intro h1 svg {
    width: 55px;
  }
}
@media (max-width: 480px) {
  #intro h1 svg {
    width: 40px;
  }
}
#intro .category-intro-txt {
  color: white;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  #intro .category-intro-txt {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  #intro .category-intro-txt {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  #intro .category-intro-txt {
    font-size: 25px;
  }
}
@media (max-width: 440px) {
  #intro .category-intro-txt {
    font-size: 23px;
  }
}
#intro .category-intro-txt svg {
  display: block;
  margin: 0 10px;
  width: 38px;
}
@media (max-width: 991px) {
  #intro .category-intro-txt svg {
    width: 32px;
    height: auto;
  }
}
@media (max-width: 768px) {
  #intro .category-intro-txt svg {
    width: 26px;
  }
}
@media (max-width: 480px) {
  #intro .category-intro-txt svg {
    width: 20px;
  }
}
#intro p.desc {
  color: white;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  #intro p.desc {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #intro p.desc {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #intro p.desc {
    font-size: 22px;
  }
}
@media (max-width: 440px) {
  #intro p.desc {
    font-size: 19px;
  }
}

#featured {
  padding: 60px 20px 40px 20px;
}
@media (max-width: 768px) {
  #featured {
    padding-bottom: 20px;
  }
}
#featured .two-cols {
  width: 100%;
  max-width: 1440px;
  gap: 20px;
  margin: 0 auto;
  padding-right: 50px;
}
@media (max-width: 1455px) {
  #featured .two-cols {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  #featured .two-cols {
    gap: 35px;
  }
}
#featured .two-cols .featured-img {
  width: 100%;
  max-width: 735px;
}
@media (max-width: 991px) {
  #featured .two-cols .featured-img {
    max-width: 660px;
  }
}
#featured .two-cols .featured-img img {
  width: 100%;
  max-width: 735px;
  height: auto;
  border-radius: 30px;
}
@media (max-width: 600px) {
  #featured .two-cols .featured-img img {
    border-radius: 25px;
  }
}
@media (max-width: 500px) {
  #featured .two-cols .featured-img img {
    border-radius: 20px;
  }
}
@media (max-width: 430px) {
  #featured .two-cols .featured-img img {
    border-radius: 18px;
  }
}
@media (max-width: 380px) {
  #featured .two-cols .featured-img img {
    border-radius: 18px;
  }
}
#featured .two-cols .txt-wrap {
  width: 100%;
  max-width: 540px;
}
#featured .two-cols .txt-wrap .featured-category {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
  line-height: 108%;
  letter-spacing: 4.4px;
  color: #303ab2;
}
@media (max-width: 991px) {
  #featured .two-cols .txt-wrap .featured-category {
    font-size: 20px;
    text-align: center;
    display: block;
  }
}
@media (max-width: 768px) {
  #featured .two-cols .txt-wrap .featured-category {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  #featured .two-cols .txt-wrap .featured-category {
    font-size: 15px;
  }
}
#featured .two-cols .txt-wrap h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 108%;
  margin: 30px 0;
}
@media (max-width: 1455px) {
  #featured .two-cols .txt-wrap h2 {
    font-size: 45px;
  }
}
@media (max-width: 1225px) {
  #featured .two-cols .txt-wrap h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  #featured .two-cols .txt-wrap h2 {
    text-align: center;
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  #featured .two-cols .txt-wrap h2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  #featured .two-cols .txt-wrap h2 {
    font-size: 26px;
    margin: 15px 0;
  }
}
#featured .two-cols .txt-wrap .meta-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1125px) {
  #featured .two-cols .txt-wrap .meta-info {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  #featured .two-cols .txt-wrap .meta-info {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  #featured .two-cols .txt-wrap .meta-info {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  #featured .two-cols .txt-wrap .meta-info {
    margin-bottom: 15px;
    gap: 20px;
  }
}
#featured .two-cols .txt-wrap .meta-info svg {
  width: 20px;
  margin-right: 5px;
}
@media (max-width: 480px) {
  #featured .two-cols .txt-wrap .meta-info svg {
    width: 12px;
  }
}
@media (max-width: 440px) {
  #featured .two-cols .txt-wrap .meta-info svg {
    display: none;
  }
}
#featured .two-cols .txt-wrap .meta-info p {
  font-size: 21px;
  font-weight: 500;
  line-height: 133%;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1125px) {
  #featured .two-cols .txt-wrap .meta-info p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #featured .two-cols .txt-wrap .meta-info p {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  #featured .two-cols .txt-wrap .meta-info p {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  #featured .two-cols .txt-wrap .global-btn {
    margin: 0 auto;
  }
}

#recent-posts {
  padding: 30px 20px 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #recent-posts {
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  #recent-posts {
    padding-bottom: 20px;
  }
}

#insights {
  padding: 75px 20px 0 20px;
  background-color: #303ab2;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  #insights {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  #insights {
    padding: 50px 20px;
  }
}
@media (max-width: 480px) {
  #insights {
    padding: 40px 20px;
  }
}
#insights .two-cols {
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 22;
}
@media (max-width: 991px) {
  #insights .two-cols {
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
#insights .two-cols .form-wrap {
  padding-bottom: 45px;
}
@media (max-width: 991px) {
  #insights .two-cols .form-wrap {
    padding: 0;
  }
}
#insights .two-cols .form-wrap h2 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  #insights .two-cols .form-wrap h2 {
    font-size: 30px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  #insights .two-cols .form-wrap h2 {
    font-size: 28px;
  }
}
@media (max-width: 440px) {
  #insights .two-cols .form-wrap h2 {
    font-size: 26px;
  }
}
#insights .two-cols .form-wrap .desc {
  color: white;
  margin: 40px 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 125%;
  max-width: 525px;
}
@media (max-width: 991px) {
  #insights .two-cols .form-wrap .desc {
    text-align: center;
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  #insights .two-cols .form-wrap .desc {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  #insights .two-cols .form-wrap .desc {
    font-size: 18px;
    margin: 25px 0;
  }
}
#insights .two-cols .form-wrap .form {
  height: 150px;
}
#insights .two-cols .form-wrap .form #gform_36 .gfield_required.gfield_required_text {
  display: none;
}
#insights .two-cols .form-wrap .form #gform_36 #input_36_1 {
  border: none;
  border-bottom: 2px solid white;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  color: white;
  font-size: 21px;
  font-weight: 500;
  line-height: 108%;
  padding-left: 0;
}
@media (max-width: 991px) {
  #insights .two-cols .form-wrap .form #gform_36 #input_36_1 {
    text-align: center;
  }
}
#insights .two-cols .form-wrap .form #gform_36 #input_36_1:active {
  outline: none;
}
#insights .two-cols .form-wrap .form #gform_36 #input_36_1:focus {
  outline: none;
}
#insights .two-cols .form-wrap .form #gform_36 #input_36_1:target {
  outline: none;
}
#insights .two-cols .form-wrap .form #gform_36 #field_36_1 {
  position: relative;
}
#insights .two-cols .form-wrap .form #gform_36 #field_36_1 label {
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 108%;
}
@media (max-width: 991px) {
  #insights .two-cols .form-wrap .form #gform_36 #field_36_1 label {
    text-align: center;
    justify-content: center;
  }
}
#insights .two-cols .form-wrap .form #gform_36 #field_36_1 #validation_message_36_1 {
  position: absolute;
  bottom: -28px;
  color: white;
}
@media (max-width: 991px) {
  #insights .two-cols .form-wrap .form #gform_36 #field_36_1 #validation_message_36_1 {
    text-align: center;
  }
}
#insights .two-cols .form-wrap .form #gform_36 #gform_submit_button_36 {
  border-radius: 40px;
  background: white;
  color: #303ab2;
  font-size: 15px;
  font-weight: 700;
  line-height: 1em;
  width: 100%;
  max-width: 180px;
  padding: 15px;
  border: 2px solid white;
}
@media (max-width: 991px) {
  #insights .two-cols .form-wrap .form #gform_36 #gform_submit_button_36 {
    margin: 0 auto;
  }
}
#insights .two-cols .form-wrap .form #gform_36 #gform_submit_button_36:hover {
  background-color: #202777;
  border: 2px solid #202777;
  color: white;
}
#insights .two-cols .form-wrap .form #gform_36 #gform_submit_button_36:focus {
  border: 2px solid #1edfe9;
  background-color: #303ab2;
  color: white;
  outline: none;
}
#insights .two-cols .form-wrap .form #gform_36 #gform_submit_button_36:active {
  color: black;
  border: 2px solid #1edfe9;
  background-color: #1edfe9;
  outline: none;
}
#insights .two-cols .form-wrap .form #gform_36_validation_container {
  display: none !important;
}
#insights .two-cols .form-wrap .form #gform_confirmation_message_36 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 108%;
  font-family: "Gilroy", Arial, sans-serif;
}
#insights .two-cols .img-wrap {
  width: 100%;
  max-width: 291px;
  position: relative;
  bottom: -24px;
}
@media (max-width: 991px) {
  #insights .two-cols .img-wrap {
    bottom: -175px;
    margin-top: -135px;
  }
}
@media (max-width: 480px) {
  #insights .two-cols .img-wrap {
    max-width: 200px;
  }
}
#insights .two-cols .img-wrap img {
  width: 100%;
  max-width: 291px;
  height: auto;
}
@media (max-width: 480px) {
  #insights .two-cols .img-wrap img {
    max-width: 200px;
  }
}

#category-info {
  padding: 40px 20px 10px 20px;
}
#category-info h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 125%;
  text-align: center;
  margin-bottom: 15px;
  color: #303ab2;
}
@media (max-width: 991px) {
  #category-info h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  #category-info h1 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  #category-info h1 {
    font-size: 30px;
  }
}
@media (max-width: 440px) {
  #category-info h1 {
    font-size: 26px;
  }
}
#category-info p.desc {
  font-size: 30px;
  font-weight: 500;
  line-height: 125%;
  text-align: center;
  color: #303ab2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  #category-info p.desc {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #category-info p.desc {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  #category-info p.desc {
    font-size: 21px;
  }
}
@media (max-width: 440px) {
  #category-info p.desc {
    font-size: 17px;
  }
}/*# sourceMappingURL=main.css.map */