:root {
  --main-solid: #020D2C;
  --main: #020D2C;
  --main-trans: linear-gradient(90deg, rgba(2, 13, 44, 0.6), rgba(7, 43, 141, 0.6));
  --accent: #6DB847;
  --accent-gradient: linear-gradient(125deg, #a7d491, rgba(109, 184, 71, 0.6));
  --accent-gradient-trans: linear-gradient(125deg, #a7d491, rgba(109, 184, 71, 0.6));
  --secondary: #efefef;
  --secondary-gradient: linear-gradient(125deg, #efefef, #bdbdbd);
  --secondary-gradient-trans: linear-gradient(125deg, rgba(240, 240, 240, 0.6), rgba(189, 189, 189, 0.6));
  --bg: #fff;
  --dark: #020D2C;
  --dark-gradient: linear-gradient(90deg, #020D2C, #072b8d);
  --dark-gradient-trans: linear-gradient(90deg, rgba(2, 13, 44, 0.6), rgba(7, 43, 141, 0.6));
  --defVal: 10px;
  --text-v1: #fff;
}

::-moz-selection {
  color: var(--bg);
  background: var(--secondary);
}

::selection {
  color: var(--bg);
  background: var(--secondary);
}

.insights-hero {
  min-height: calc(100vh);
}

.insights-hero::before {
  background-position: left center;
}

.insights-hero::after {
  background: radial-gradient(circle at center left, rgba(23, 19, 26, 0.949) 25%, rgba(23, 19, 26, 0.761) 65%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 1;
}

.insights-hero__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100% - 120px);
}

.insights-hero__wrapper::after {
  content: "";
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3px;
  height: 50%;
  background: var(--main);
  border-radius: 10px;
}

.insights-hero__option-cont {
  text-align: center;
  margin-top: 0;
  -ms-flex-item-align: unset;
      -ms-grid-row-align: unset;
      align-self: unset;
}

@media screen and (min-width: 768px) {
  .insights-hero__wrapper {
    gap: 80px;
  }
}

.insights-wrapper {
  position: relative;
}

@media screen and (min-width: 768px) {
  .insights-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 5fr 2fr;
        grid-template-columns: 5fr 2fr;
    gap: 40px;
  }
}

.blog-wrapper {
  position: relative;
}

.articles-section {
  position: relative;
  background: #fff;
  border-radius: 0 20px 20px 0;
}

.articles-section__gallery {
  margin-top: 0;
}

@supports (font-size: clamp(40px, 5vw, 48px)) {
  .articles-section__caption {
    font-size: clamp(18px, 10vw, 32px);
  }
}

@media screen and (min-width: 1200px) {
  .articles-section {
    border-radius: 10px;
  }
}

.article-item {
  padding: 0;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 3fr;
      grid-template-columns: 1.5fr 3fr;
  gap: 20px;
  margin-bottom: 40px;
}

.article-item__header {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.article-item__img-cont {
  max-width: 200px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 5px;
}

.article-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-item__details span {
  font-size: 11px;
}

.article-item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@supports (font-size: clamp(40px, 5vw, 48px)) {
  .article-item__caption {
    font-size: clamp(14px, 5vw, 28px);
  }
}

.blog-aside {
  margin-top: 60px;
}

.blog-aside__categories-cont {
  margin-top: 20px;
}

.blog-aside__category {
  margin-top: 10px;
  color: var(--dark);
}

.blog-aside__category a {
  color: inherit;
}

.blog-aside__recents {
  margin-top: 20px;
}

.blog-aside__post {
  margin-bottom: 20px;
}

.category__hero {
  min-height: -webkit-min-content;
  min-height: -moz-min-content;
  min-height: min-content;
  height: unset;
}

.blog-search {
  width: 100%;
  height: 60px;
  background: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2.5px;
}

.blog-search > [type="search"] {
  width: 100%;
}

.blog-search__input {
  background: transparent;
  outline: none;
  border: none;
  height: 100%;
  padding: 10px 20px;
  margin: 0;
  color: var(--dark);
}

.blog-search__cta {
  height: 100%;
  width: 50px;
}

.blog-select {
  width: 100%;
  position: relative;
}

.blog-select__select {
  padding: 10px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 2.5px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.blog-select__arrow {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background: var(--main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2.5px;
  pointer-events: none;
}

.blog-select__arrow * {
  fill: var(--bg);
}

.pagination > * {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.pagination__prev, .pagination__next {
  right: unset;
  left: unset;
  border-radius: 2.5px;
}

@media screen and (max-width: 600px) {
  .simple-grid__item {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 600px) {
  .simple-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 80px;
    row-gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .simple-grid--1-1-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    row-gap: 40px;
  }
}
