.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .footer {
    justify-content: space-between;
    margin-top: 50px;
  }
}
.footer__copy {
  font-size: 9px;
  color: #9d9d9c;
}
@media (min-width: 992px) {
  .footer__copy {
    font-size: 13px;
  }
}
.footer__copy a {
  text-decoration: none;
  color: #9d9d9c;
  transition: all 0.3s ease-in-out;
}
.footer__copy a:hover {
  color: #60d300;
}
.footer__menu {
  list-style-type: none;
  padding-left: 0;
  display: none;
}
@media (min-width: 992px) {
  .footer__menu {
    display: block;
  }
}
.footer__menu__link {
  display: inline-block;
}
.footer__menu__link a {
  color: #3c3c3b;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .footer__menu__link a {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .footer__menu__link a {
    font-size: 16px;
    margin-left: 47px;
  }
}
.footer__menu__link a:hover {
  color: #60d300;
}
.tagLabel {
  font-family: "Poppins", sans-serif;
  border-radius: 25px;
  border: 2px solid #dadada;
  padding: 3px 15px;
  color: #1d1d1b;
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  text-decoration: none;
  margin-bottom: 11px;
  margin-right: 11px;
  transition: all 0.3s ease-in-out;
}
.tagLabel:hover {
  border-color: #1d1d1b;
}
.new-article {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
  max-width: 100%;
}
.new-article__title {
  width: 100%;
  flex: 0 0 100%;
  color: #3c3c3b;
  font-weight: 400;
  line-height: 130%;
  font-size: 14px;
  margin-bottom: 15px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.new-article__date {
  font-size: 12px;
  color: #9d9d9c;
  max-width: 30%;
}
.new-article__category {
  font-weight: 400;
  font-size: 9px;
  color: #60d300;
  padding-top: 3px;
  letter-spacing: 0.5px;
  max-width: 70%;
  text-align: right;
}
.new-article:hover {
  margin-left: -15px;
}
.new-article:hover .new-article__title {
  color: #60d300;
}
.top-menu {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 14;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  left: -200%;
  top: -100%;
}
.top-menu.active {
  left: 0;
  top: 0;
}
@media (min-width: 992px) {
  .top-menu {
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    visibility: visible;
    margin-bottom: 30px;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    display: block;
  }
}
@media (min-width: 1600px) {
  .top-menu {
    margin-bottom: 80px;
  }
}
.top-menu__backdrop {
  background: rgba(0, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .top-menu__backdrop {
    display: block;
    display: none;
  }
}
.top-menu__list {
  text-align: left;
  color: #3c3c3b;
  font-family: 'Poppins', sans-serif;
  padding: 0 30px;
}
@media (min-width: 992px) {
  .top-menu__list {
    text-align: right;
  }
}
.top-menu__list-item {
  display: block;
}
@media (min-width: 992px) {
  .top-menu__list-item {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .top-menu__list-item.show-mobile {
    display: none;
  }
}
.top-menu__link {
  text-decoration: none;
  color: #3c3c3b;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: block;
  font-size: 14px;
  padding: 10px 26px;
  letter-spacing: 0.5px;
  position: relative;
}
@media (min-width: 992px) {
  .top-menu__link {
    padding: 30px 26px;
  }
}
@media (min-width: 1024px) {
  .top-menu__link {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .top-menu__link {
    font-size: 14px;
  }
}
.top-menu__link:after {
  content: "";
  background: #60d300;
  height: 0;
  bottom: -1px;
  width: 0;
  left: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.top-menu__link.active {
  color: #60d300;
}
.top-menu__link:hover:after {
  height: 5px;
  width: 100%;
}
.top-menu__closer {
  position: absolute;
  top: 45px;
  right: 45px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: block;
}
@media (min-width: 992px) {
  .top-menu__closer {
    display: none;
  }
}
.top-menu__closer:before,
.top-menu__closer:after {
  content: "";
  height: 2px;
  background: #626262;
  width: 45px;
  position: absolute;
  left: 50%;
  top: 50%;
}
.top-menu__closer:before {
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: 0 50%;
}
.top-menu__closer:after {
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: 0 50%;
}
.subcategories {
  font-family: "Poppins", sans-serif;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(255, 255, 255, 0.95);
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 16;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.subcategories.active {
  opacity: 1;
  visibility: visible;
}
.subcategories__wrapper {
  width: 80%;
  max-width: 1170px;
  display: flex;
  justify-content: center;
}
.subcategories__category {
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .subcategories__category {
    text-decoration: none;
    font-size: 40px;
    margin-bottom: 15px;
  }
  .subcategories__category:hover {
    color: #60d300;
  }
}
.subcategories__closer {
  position: absolute;
  top: 45px;
  right: 45px;
  width: 40px;
  height: 40px;
  cursor: Pointer;
}
.subcategories__closer:before,
.subcategories__closer:after {
  content: "";
  height: 2px;
  background: #626262;
  width: 45px;
  position: absolute;
  left: 50%;
  top: 50%;
}
.subcategories__closer:before {
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: 0 50%;
}
.subcategories__closer:after {
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: 0 50%;
}
.bottom-menu {
  position: fixed;
  bottom: 0;
  background: #fff;
  left: 0;
  padding: 0 15px;
  width: 100%;
  z-index: 8;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 992px) {
  .bottom-menu {
    display: none;
  }
}
.bottom-menu__action {
  padding: 10px 20px;
  text-align: center;
  color: #42c000;
  font-weight: 500;
  font-size: 9px;
  text-transform: uppercase;
}
.bottom-menu__action__icon {
  margin-bottom: 6px;
}
.bottom-menu__tags {
  position: fixed;
  bottom: -200px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  left: 0;
  height: 200px;
  overflow: auto;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
@media (min-width: 992px) {
  .bottom-menu__tags {
    display: none;
  }
}
.bottom-menu__tags.active {
  bottom: 58px;
}
.bottom-menu__articles {
  position: fixed;
  bottom: -300px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  left: 0;
  height: 300px;
  overflow: auto;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
@media (min-width: 992px) {
  .bottom-menu__articles {
    display: none;
  }
}
.bottom-menu__articles.active {
  bottom: 58px;
}
.subpage-wrapper {
  background: #fff;
  border-top: 4px solid #60d300;
  padding: 30px 30px 100px 30px;
}
@media (min-width: 1600px) {
  .subpage-wrapper {
    padding: 104px 122px;
  }
}
.subpage-wrapper__content {
  display: flex;
  justify-content: space-between;
}
.subpage-wrapper__content__left {
  width: 100%;
}
@media (min-width: 992px) {
  .subpage-wrapper__content__left {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .subpage-wrapper__content__left {
    width: 70%;
  }
}
.subpage-wrapper__content__right {
  display: none;
}
@media (min-width: 992px) {
  .subpage-wrapper__content__right {
    width: 35%;
    display: block;
  }
}
@media (min-width: 1200px) {
  .subpage-wrapper__content__right {
    width: 25%;
  }
  .subpage-wrapper__content__right__tags {
    margin-bottom: 65px;
  }
  .subpage-wrapper__content__right__new-articles {
    margin-bottom: 65px;
    border-left: 2px solid #60d300;
    margin-left: 18px;
    padding-left: 41px;
  }
}
.pagination {
  list-style-type: none;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .pagination {
    justify-content: flex-start;
  }
}
.pagination .page-item {
  display: inline-block;
}
.pagination .page-item.active span {
  color: #60d300;
  font-weight: 700;
}
.pagination .page-item:first-of-type a,
.pagination .page-item:last-of-type a {
  font-size: 30px;
  font-weight: 300;
  position: relative;
  top: -2px;
}
.pagination .page-link {
  font-size: 16px;
  text-decoration: none;
  color: #000;
  font-weight: 400;
  padding: 10px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.pagination .page-link:hover {
  color: #60d300;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: center;
}
@media (min-width: 992px) {
  .top-bar {
    margin-bottom: 30px;
  }
}
@media (min-width: 1600px) {
  .top-bar {
    margin-bottom: 80px;
  }
}
.top-bar__logo {
  width: 100px;
}
@media (min-width: 768px) {
  .top-bar__logo {
    width: auto;
  }
}
.top-bar__right {
  display: flex;
  justify-content: space-between;
}
.top-bar__menu-opener {
  display: block;
}
@media (min-width: 992px) {
  .top-bar__menu-opener {
    display: none;
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  50% {
    transform: scale(1.2);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  1000% {
    transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  50% {
    transform: scale(1.2);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  1000% {
    transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.search-box__icon {
  cursor: pointer;
  margin-right: 21px;
  width: 15px;
  position: relative;
  top: 2px;
}
@media (min-width: 992px) {
  .search-box__icon {
    margin-right: 0;
    width: auto;
    top: auto;
  }
}
.search-box__icon:hover {
  -webkit-animation: bounce;
          animation: bounce;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
.search-wrapper {
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 24;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.search-wrapper.active {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.search-wrapper .backdrop {
  opacity: 0.92;
}
.search-wrapper__closer {
  position: absolute;
  top: 45px;
  right: 45px;
  width: 40px;
  height: 40px;
  cursor: Pointer;
}
.search-wrapper__closer:before,
.search-wrapper__closer:after {
  content: "";
  height: 2px;
  background: #626262;
  width: 45px;
  position: absolute;
  left: 50%;
  top: 50%;
}
.search-wrapper__closer:before {
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: 0 50%;
}
.search-wrapper__closer:after {
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: 0 50%;
}
.search-wrapper__form {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  font-family: "Poppins", sans-serif;
}
.search-wrapper__form form {
  text-align: center;
}
.search-wrapper__form__input {
  width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 15px;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.search-wrapper__form__submit {
  margin: 0 auto;
  padding: 10px 30px;
  color: #fff;
  background: #42c000;
  outline: none;
  border: none;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
}
opacity .search-wrapper__form__submit:hover {
  background: #706f6f;
}
.search-wrapper__form__message {
  color: red;
  margin-bottom: 15px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*:focus,
*:active {
  outline: 0;
}
body {
  background: #fff;
  max-width: 100%;
  overflow-x: hidden;
}
@media (min-width: 1200px) {
  body {
    padding: 0 50px 50px 50px;
  }
}
@media (min-width: 1600px) {
  body {
    padding: 0 104px 122px 104px;
  }
}
.backdrop {
  background: #fff;
  height: 100%;
  cursor: pointer;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.section-header {
  color: #9d9d9c;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
  width: 100%;
}
@media (min-width: 992px) {
  .section-header {
    margin-bottom: 65px;
  }
}
.grid-row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}
.grid-col {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .grid-sm-6 {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .grid-md-4 {
    width: 33.3333%;
  }
}
.editor-content img {
  max-width: 100%;
  margin: 30px 0;
}
.editor-content a {
  text-decoration: none;
  color: #60d300;
}
.editor-content p {
  margin-bottom: 15px;
}
.subpage {
  font-family: "Poppins", sans-serif;
}
.subpage__title {
  font-weight: 600;
  font-size: 25px;
  color: #000;
  margin-bottom: 65px;
}
.subpage__intro {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  font-style: italic;
  margin-bottom: 65px;
}
.subpage__content {
  font-weight: 300;
  font-size: 14px;
  color: #4c4c4c;
  margin-bottom: 65px;
}
