h1 {
  font-size: 64px;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.2em;
}

body.admin-bar > header {
  top: 32px;
}

a {
  text-decoration: none;
  color: #000000;
}
a:hover {
  text-decoration: underline;
}

.button {
  text-decoration: none;
  border-radius: 30px;
  padding: 8px 12px;
  height: 25px;
  background-color: #7F33CC;
  color: #E5E4E2;
  border: solid 1px #7F33CC;
}
.button.fullwidth {
  width: 100%;
  text-align: center;
}
.button:hover {
  background-color: #935CCC;
  color: #310063;
  text-decoration: none;
}

.social-btn {
  position: fixed;
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
}

#fancybox-wrap .fancybox-custom-header {
  background: rgba(211, 211, 211, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 5px 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  color: #000000;
  text-shadow: 0 0 20px #ffffff;
}
#fancybox-wrap #fancybox-outer {
  box-shadow: none;
  background: rgba(211, 211, 211, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 0 10px 10px 10px;
}
#fancybox-wrap #fancybox-outer #fancybox-content {
  border: none;
}
#fancybox-wrap #fancybox-outer #fancybox-close {
  right: 10px;
  top: -29px;
  width: 24px;
  height: 24px;
}
#fancybox-wrap #fancybox-outer #fancybox-close:hover span {
  transform: none;
}
#fancybox-wrap #fancybox-outer #fancybox-close span {
  background: transparent;
  border-radius: 0 6px 0 0;
  box-shadow: none;
  border: none;
  left: 0;
  top: 0;
}
#fancybox-wrap #fancybox-outer #fancybox-close span::before, #fancybox-wrap #fancybox-outer #fancybox-close span::after {
  top: 10px;
  left: 5px;
}
#fancybox-wrap #fancybox-outer #fancybox-open-new-tab {
  position: absolute;
  right: 35px;
  top: -27px;
  border: none;
  width: 24px;
  height: 24px;
}
#fancybox-wrap #fancybox-outer #fancybox-open-new-tab svg {
  width: 70%;
  height: auto;
}
#fancybox-wrap #fancybox-outer #fancybox-open-new-tab:hover {
  cursor: pointer;
}

.tooltip {
  position: absolute;
  transform: translate(-50%, calc(-100% - 5px));
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background: rgba(229, 228, 226, 0.3);
  border-bottom: solid 1px #D3D3D3;
  padding: 10px 15px;
  border-radius: 15px;
}

@keyframes opacityFlash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveLeftRightExampleForRelatedPosts {
  0% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 60% 50%;
  }
  50% {
    background-position: 40% 50%;
  }
  100% {
    background-position: 50% 50%;
  }
}
.menu-container {
  height: 100%;
  display: flex;
  padding: 10px 0;
}
@media screen and (max-width: 991px) {
  .menu-container.main-menu {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media screen and (max-width: 991px) {
  .menu-container.main-menu .menu {
    display: none;
  }
}
.menu-container.main-menu .menu.showing {
  display: block;
}
.menu-container.main-menu .mobile-menu-button {
  width: 36px;
  height: 36px;
  display: none;
}
@media screen and (max-width: 991px) {
  .menu-container.main-menu .mobile-menu-button {
    display: block;
  }
}
.menu-container.main-menu .mobile-menu-button .row {
  display: block;
  margin: 4px;
  height: 5px;
  background-color: #000000;
  transition: all 500ms;
}
.menu-container.main-menu .mobile-menu-button.close span:first-of-type {
  transform: translate(5px, 4px) rotate(45deg);
}
.menu-container.main-menu .mobile-menu-button.close span:nth-of-type(2) {
  transform: translate(5px, -5px) rotate(-45deg);
}
.menu-container.main-menu .mobile-menu-button.close span:last-of-type {
  display: none;
}
.menu-container .menu li {
  min-width: 150px;
  height: 100%;
  margin: 0 10px;
  padding: 8px 12px;
}
.menu-container .menu li.current-menu-item {
  background: #E5E4E2;
  border-radius: 30px;
}
.menu-container .menu li a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 15px #ffffff;
}

header {
  background: linear-gradient(to right, rgba(229, 228, 226, 0.3), rgba(229, 228, 226, 0.3), rgba(229, 228, 226, 0.3));
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-bottom: solid 1px #D3D3D3;
}
@media screen and (max-width: 991px) {
  header .navigation {
    align-items: flex-start;
  }
}
header .navigation .homepage-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 2em;
  color: #000000;
  text-shadow: 0 0 20px #ffffff;
  display: flex;
}
header .navigation .homepage-link img {
  max-width: 64px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  header .navigation .additional-menu {
    transform: translateY(50%);
  }
}
header .navigation .additional-menu .show-search {
  display: block;
  width: 24px;
  height: 24px;
  background: url("/wp-content/themes/earn-in-net/assets/img/search.png") no-repeat;
  background-size: contain;
}
header .search {
  height: 0;
  overflow: hidden;
  transition: height 300ms;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
header .search #searchform > div {
  display: flex;
  justify-content: center;
  height: 40px;
  margin-top: 2px;
}
header .search #searchform > div input[name=s] {
  width: 50%;
  border-radius: 10px 0 0 10px;
  border: solid 1px #D3D3D3;
  padding: 0 10px;
}
header .search #searchform > div input[name=s]:focus-visible {
  border: none;
  outline: solid 1px #7F33CC;
  height: 38px;
  margin-top: 1px;
}
header .search #searchform > div #searchsubmit {
  border-radius: 0 10px 10px 0;
  background: #7F33CC;
  border: solid 1px #7F33CC;
  color: #E5E4E2;
}
header .search #searchform > div #searchsubmit:hover {
  background-color: #7F33CC;
  color: #310063;
  cursor: pointer;
}
header .search.showing {
  height: 55px;
}
header .space-devider {
  flex: 1;
}

footer {
  background: linear-gradient(to right, #e5e4e2, #e5e4e2, #e5e4e2);
  min-height: 60px;
  border-top: solid 1px #D3D3D3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .information {
  flex: 1;
  flex-direction: row;
  background: #313336;
  color: #ffffff;
  padding: 15px 10px;
}
footer .information .copyright a {
  text-decoration: underline;
  color: #ffffff;
}
footer .information .copyright a:hover {
  text-decoration: none;
  color: #cccccc;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

body.home > aside {
  width: 100%;
}

.updates {
  padding: 0;
}
.updates .category-poster-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .updates .category-poster-wrapper {
    padding: 10% 0;
    box-sizing: unset;
  }
}
.updates .category-poster-wrapper .category-poster {
  background: rgba(229, 228, 226, 0.3);
  display: flex;
  flex-direction: row;
  padding: 0;
  margin-bottom: 20px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 15px;
  max-width: 80%;
}
.updates .category-poster-wrapper .category-poster .last-posts {
  max-width: 50%;
  width: 100%;
  position: relative;
  background: #fff;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (max-width: 991px) {
  .updates .category-poster-wrapper .category-poster .last-posts {
    max-width: 100%;
    border-radius: 15px;
  }
}
.updates .category-poster-wrapper .category-poster .last-posts .slick-prev,
.updates .category-poster-wrapper .category-poster .last-posts .slick-next {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: rgba(229, 228, 226, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: solid 1px #D3D3D3;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin: 15px;
}
.updates .category-poster-wrapper .category-poster .last-posts .slick-prev:hover,
.updates .category-poster-wrapper .category-poster .last-posts .slick-next:hover {
  cursor: pointer;
}
.updates .category-poster-wrapper .category-poster .last-posts .slick-prev {
  left: 0;
  transform: rotate(-135deg);
}
.updates .category-poster-wrapper .category-poster .last-posts .slick-prev .arrow {
  transform: rotate(135deg);
  display: block;
  padding: 0 10px 2px 0;
  text-align: center;
}
.updates .category-poster-wrapper .category-poster .last-posts .slick-next {
  right: 0;
  transform: rotate(45deg);
}
.updates .category-poster-wrapper .category-poster .last-posts .slick-next .arrow {
  transform: rotate(-45deg);
  display: block;
  padding: 2px 0 0 10px;
  text-align: center;
}
.updates .category-poster-wrapper .category-poster .statistic {
  max-width: 50%;
  width: 100%;
  padding: 0 15px;
}
@media screen and (max-width: 991px) {
  .updates .category-poster-wrapper .category-poster .statistic {
    display: none;
  }
}
.updates .category-poster-wrapper .category-poster .statistic .poster-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.updates .category-poster-wrapper .category-poster .statistic .poster-title .category-prefix {
  font-size: 1.5em;
  margin-right: 10px;
}
.updates .category-poster-wrapper .category-poster.left .card {
  position: relative;
}
.updates .category-poster-wrapper .category-poster.left .card .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
}
.updates .category-poster-wrapper .category-poster.left .card .short-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  overflow: hidden;
}
.updates .category-poster-wrapper .category-poster.left .card .short-content .title {
  height: 30px;
  z-index: 1;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 15px;
}
@media screen and (max-width: 991px) {
  .updates .category-poster-wrapper .category-poster.left .card .short-content .title {
    background: rgba(211, 211, 211, 0.3);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}
.updates .category-poster-wrapper .category-poster.left .card .short-content .excerpt {
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: rgba(229, 228, 226, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transform: translateY(150vh);
  transition: transform 700ms;
  padding: 30px 15px 10px 15px;
}
.updates .category-poster-wrapper .category-poster.left .card .short-content:hover .excerpt {
  transform: translateY(-30px);
}
.updates .category-poster-wrapper .category-poster.left .card {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.updates .category-poster-wrapper .category-poster.left .card .image {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (max-width: 991px) {
  .updates .category-poster-wrapper .category-poster.left .card .image {
    border-radius: 15px;
  }
}
.updates .category-poster-wrapper .category-poster.left .card .short-content .excerpt {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.updates .category-poster-wrapper .category-poster.right .last-posts {
  border-radius: 0 0 15px 15px;
  /*
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  */
}
@media screen and (max-width: 991px) {
  .updates .category-poster-wrapper .category-poster.right .last-posts {
    border-radius: 15px;
  }
}
.updates .category-poster-wrapper .category-poster.right .card {
  position: relative;
}
.updates .category-poster-wrapper .category-poster.right .card .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
}
.updates .category-poster-wrapper .category-poster.right .card .short-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  overflow: hidden;
}
.updates .category-poster-wrapper .category-poster.right .card .short-content .title {
  height: 30px;
  z-index: 1;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 15px;
}
@media screen and (max-width: 991px) {
  .updates .category-poster-wrapper .category-poster.right .card .short-content .title {
    background: rgba(211, 211, 211, 0.3);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}
.updates .category-poster-wrapper .category-poster.right .card .short-content .excerpt {
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: rgba(229, 228, 226, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transform: translateY(150vh);
  transition: transform 700ms;
  padding: 30px 15px 10px 15px;
}
.updates .category-poster-wrapper .category-poster.right .card .short-content:hover .excerpt {
  transform: translateY(-30px);
}
.updates .category-poster-wrapper .category-poster.right .card {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.updates .category-poster-wrapper .category-poster.right .card .image {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media screen and (max-width: 991px) {
  .updates .category-poster-wrapper .category-poster.right .card .image {
    border-radius: 15px;
  }
}
.updates .category-poster-wrapper .category-poster.right .card .short-content .excerpt {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.updates .category-poster-wrapper.category-seo {
  background: #04859D;
}
.updates .category-poster-wrapper.category-zagalni-vidomosti {
  background: #FF7C00;
}
.updates .category-poster-wrapper.category-robota-v-interneti {
  background: #1437AD;
}
.updates .category-poster-wrapper.category-stvorennya-sajtu {
  background: #FFB000;
}

.comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.comment .metadata {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #E5E4E2;
  padding: 5px 15px 5px 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.comment .metadata .author {
  display: flex;
  align-items: center;
}
.comment .metadata .author .avatar {
  margin-right: 5px;
}
.comment .text {
  border: solid 1px #E5E4E2;
  padding: 0 15px;
}

.attachment-full {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.heading-with-anchor {
  display: flex;
  align-items: center;
}
.heading-with-anchor a {
  background: url("/wp-content/themes/earn-in-net/assets/img/link.png") no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin: 10px 0 0 5px;
  transition: opacity 300ms;
  opacity: 0;
}
.heading-with-anchor a.copied {
  animation: opacityFlash 300ms linear;
}
.heading-with-anchor:hover a {
  opacity: 1;
}

.partner-info {
  border: solid 1px #000000;
  border-radius: 15px;
  padding: 15px;
}
.partner-info.checking {
  border-color: #CCCC00;
}
.partner-info.checking .status {
  color: #CCCC00;
}
.partner-info.pay {
  border-color: #32CD32;
}
.partner-info.pay .status {
  color: #32CD32;
}
.partner-info.not_pay {
  border-color: #DC143C;
}
.partner-info.not_pay .status {
  color: #DC143C;
}
.partner-info .status {
  font-weight: bold;
}

.level-of-difficult-and-technologies {
  border: solid 1px #000000;
  border-radius: 15px;
  padding: 15px;
}
.level-of-difficult-and-technologies.easy {
  border-color: #32CD32;
}
.level-of-difficult-and-technologies.easy .level-of-difficult {
  color: #32CD32;
}
.level-of-difficult-and-technologies.medium {
  border-color: #CCCC00;
}
.level-of-difficult-and-technologies.medium .level-of-difficult {
  color: #CCCC00;
}
.level-of-difficult-and-technologies.difficult {
  border-color: #DC143C;
}
.level-of-difficult-and-technologies.difficult .level-of-difficult {
  color: #DC143C;
}
.level-of-difficult-and-technologies .level-of-difficult {
  font-weight: bold;
}

.related-posts {
  display: flex;
  position: relative;
}
.related-posts .card-wrapper {
  max-width: 25%;
  padding: 15px 5px;
  box-sizing: border-box;
  display: flex;
}
@media screen and (max-width: 991px) {
  .related-posts .card-wrapper {
    max-width: 100%;
  }
}
.related-posts .card-wrapper .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #E5E4E2;
  border: solid 1px #D3D3D3;
  border-radius: 15px;
}
@media screen and (max-width: 991px) {
  .related-posts .card-wrapper .card {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.related-posts .card-wrapper .card .image {
  aspect-ratio: 16/9;
  background-color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-posts .card-wrapper .card .title {
  padding: 0 15px;
}
.related-posts .card-wrapper .card .excerpt {
  padding: 0 15px;
}
.related-posts .card-wrapper .card .read-more-wrapper {
  padding: 0 15px;
  height: 41px;
  margin-top: auto;
  margin-bottom: 10px;
  text-align: right;
}
.related-posts .card-wrapper .card .read-more-wrapper .button {
  display: inline-table;
}
.related-posts .card-wrapper {
  max-width: none;
}
.related-posts .action-example {
  background: url("/wp-content/themes/earn-in-net/assets/img/move-right-left.png") no-repeat 50% 50% rgba(229, 228, 226, 0.3);
  border-radius: 15px;
  height: calc(100% - 20px);
  width: 100%;
  position: absolute;
  animation: moveLeftRightExampleForRelatedPosts 4s infinite;
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .related-posts .action-example {
    display: none;
  }
}
.related-posts:hover .action-example, .related-posts * :hover .action-example, .related-posts .action-example:hover {
  display: none;
}

.category {
  display: flex;
  flex-direction: column;
  /*
  .pagination {
    display: flex;
    justify-content: center;
  }
  */
}
@media screen and (max-width: 991px) {
  .category {
    overflow: auto;
    margin-bottom: 50px;
  }
}
.category .posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .category .posts {
    flex-direction: column;
  }
}
.category .posts .card-wrapper {
  max-width: 25%;
  padding: 15px 5px;
  box-sizing: border-box;
  display: flex;
}
@media screen and (max-width: 991px) {
  .category .posts .card-wrapper {
    max-width: 100%;
  }
}
.category .posts .card-wrapper .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #E5E4E2;
  border: solid 1px #D3D3D3;
  border-radius: 15px;
}
@media screen and (max-width: 991px) {
  .category .posts .card-wrapper .card {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.category .posts .card-wrapper .card .image {
  aspect-ratio: 16/9;
  background-color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.category .posts .card-wrapper .card .title {
  padding: 0 15px;
}
.category .posts .card-wrapper .card .excerpt {
  padding: 0 15px;
}
.category .posts .card-wrapper .card .read-more-wrapper {
  padding: 0 15px;
  height: 41px;
  margin-top: auto;
  margin-bottom: 10px;
  text-align: right;
}
.category .posts .card-wrapper .card .read-more-wrapper .button {
  display: inline-table;
}
.category .subcategories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .category .subcategories {
    flex-direction: column;
  }
}
.category .subcategories .card-wrapper {
  max-width: 25%;
  padding: 15px 5px;
  box-sizing: border-box;
  display: flex;
}
@media screen and (max-width: 991px) {
  .category .subcategories .card-wrapper {
    max-width: 100%;
  }
}
.category .subcategories .card-wrapper .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #E5E4E2;
  border: solid 1px #D3D3D3;
  border-radius: 15px;
}
@media screen and (max-width: 991px) {
  .category .subcategories .card-wrapper .card {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.category .subcategories .card-wrapper .card .image {
  aspect-ratio: 16/9;
  background-color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.category .subcategories .card-wrapper .card .title {
  padding: 0 15px;
}
.category .subcategories .card-wrapper .card .excerpt {
  padding: 0 15px;
}
.category .subcategories .card-wrapper .card .read-more-wrapper {
  padding: 0 15px;
  height: 41px;
  margin-top: auto;
  margin-bottom: 10px;
  text-align: right;
}
.category .subcategories .card-wrapper .card .read-more-wrapper .button {
  display: inline-table;
}
.category .load-more {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.category .description {
  margin: 20px 0 40px 0;
}

.search-results {
  display: flex;
  flex-direction: column;
}
.search-results .posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .search-results .posts {
    flex-direction: column;
  }
}
.search-results .posts .card-wrapper {
  max-width: 25%;
  padding: 15px 5px;
  box-sizing: border-box;
  display: flex;
}
@media screen and (max-width: 991px) {
  .search-results .posts .card-wrapper {
    max-width: 100%;
  }
}
.search-results .posts .card-wrapper .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #E5E4E2;
  border: solid 1px #D3D3D3;
  border-radius: 15px;
}
@media screen and (max-width: 991px) {
  .search-results .posts .card-wrapper .card {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.search-results .posts .card-wrapper .card .image {
  aspect-ratio: 16/9;
  background-color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-results .posts .card-wrapper .card .title {
  padding: 0 15px;
}
.search-results .posts .card-wrapper .card .excerpt {
  padding: 0 15px;
}
.search-results .posts .card-wrapper .card .read-more-wrapper {
  padding: 0 15px;
  height: 41px;
  margin-top: auto;
  margin-bottom: 10px;
  text-align: right;
}
.search-results .posts .card-wrapper .card .read-more-wrapper .button {
  display: inline-table;
}

.external-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  min-height: calc(100% - 92px - 60px);
}
.external-link .external-link-manually {
  margin: 50px 0;
}

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/earn-in-net/assets/fonts/Poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/earn-in-net/assets/fonts/Poppins/Poppins-MediumItalic.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/earn-in-net/assets/fonts/Poppins/Poppins-SemiBold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/earn-in-net/assets/fonts/Poppins/Poppins-SemiBoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/earn-in-net/assets/fonts/Poppins/Poppins-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/earn-in-net/assets/fonts/Poppins/Poppins-BoldItalic.ttf");
  font-weight: bold;
  font-style: italic;
}