@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-gray:#dfd9d9;
  --color-green:#248443;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: var(--color-green);
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.layout-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.layout-header {
  background: url(../portfolio-img/background-main.webp) no-repeat center center;
  background-size: cover;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.topbar-wrapper {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 100;
}

.header-flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.brand-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.brand-title a {
  color: #fff;
}

.main-menu {
  background-color: var(--color-green);
  background: linear-gradient(108deg, #0d9436, #28a04d);
}

.main-menu .layout-shell {
  padding: 0;
}

.nav-item-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding-left: 0;
}

.nav-item-list li {
  position: relative;
  margin-bottom: 0;
}

.nav-item-list li:before {
  display: none;
}

.nav-item-list a {
  color: #fff;
  padding: 15px;
  display: block;
}

.nav-item-list a:hover {
  background-color: #28a04d;
  text-decoration: none;
}

.scroll-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background-color: var(--color-green);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.scroll-top-btn.visible {
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  visibility: visible;
  opacity: 1;
}

.menu-toggle-btn {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-toggle-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.menu-toggle-btn span:nth-child(1) {
  top: 0;
}

.menu-toggle-btn span:nth-child(2) {
  top: 8px;
}

.menu-toggle-btn span:nth-child(3) {
  top: 16px;
}

.menu-toggle-btn.active span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.menu-toggle-btn.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle-btn.active span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px 0;
}

.article {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.article-wrapper {
  margin-top: 40px;
}

.article-body {
  display: grid;
  gap: 25px;
  grid-template-columns: 4fr 1fr;
}

.post-detail-text {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-detail-text a:not([class]) {
  text-decoration: underline;
}

.headline-text {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.hero {
  background-color: #f8f8f8;
  padding: 30px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

ol, ul {
  margin: 15px 0;
  padding-left: 30px;
}

ol li, ul li {
  margin-bottom: 10px;
  position: relative;
}

ul {
  list-style: none;
}

ul li:before {
  content: "✓";
  color: var(--color-green);
  font-weight: 700;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
}

ol {
  counter-reset: li;
  list-style: none;
}

ol li:before {
  content: counter(li);
  counter-increment: li;
  color: #fff;
  background-color: var(--color-green);
  border-radius: 50%;
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  margin-right: 10px;
  margin-left: -32px;
}

.advantages-section {
  margin: 30px 0;
}

.advantages-section h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.advantages-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.advantages-section ul li:before {
  content: "✓";
  color: var(--color-green);
}

.sidebar-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-widget li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.sidebar-widget li:before {
  display: none;
}

.review-summary-block {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 5px;
  margin: 30px 0;
}

.score-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
}

.features {
  margin: 30px 0;
}

.features h2 {
  margin-bottom: 15px;
}

.side-panel {
  width: 100%;
}

.nested-spacing > :not(:last-child) {
  margin-bottom: 15px;
}

.nested-spacing > :where(h2, h3):not(:last-child) {
  margin-top: 25px;
  margin-bottom: 12px;
}

.nested-spacing img {
  max-width: 100%;
  border-radius: 6px;
}

.sidebar-links {
  position: sticky;
  top: 30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 280px;
}

.widget-heading {
  margin-bottom: 15px;
  border-bottom: 2px solid var(--color-green);
  padding-bottom: 10px;
}

.faq-container {
  margin: 30px 0;
}

.faq-entry {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-entry h3 {
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-entry h3:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
}

.faq-entry.active h3:after {
  content: "-";
}

.answer-text {
  display: none;
}

.faq-entry.active .answer-text {
  display: block;
}

.bonus-showcase {
  background-color: #fcfcfc;
  border-radius: 5px;
  padding: 20px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.offer-logo-img {
  width: 100px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  margin-right: 20px;
}

.offer-description {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.claim-offer-btn {
  background-color: var(--color-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.animated-cta-btn {
  position: relative;
  overflow: hidden;
}

.animated-cta-btn:before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0));
  -webkit-transform: skew(-15deg);
  -ms-transform: skew(-15deg);
  transform: skew(-15deg);
  width: 20px;
  height: 100px;
  opacity: 0.5;
  -webkit-animation: irst 2.4s ease-in-out 2.2s infinite;
  animation: irst 2.4s ease-in-out 2.2s infinite;
}

@-webkit-keyframes irst {
  0% {
    left: -200px;
  }
  100% {
    left: 200px;
  }
}
@keyframes irst {
  0% {
    left: -200px;
  }
  100% {
    left: 200px;
  }
}
.claim-offer-btn:hover {
  background-color: #32ce62;
  text-decoration: none;
}

.page-footer {
  background-color: #333;
  color: var(--color-gray);
  padding: 40px 0;
  margin-top: 40px;
  font-size: 14px;
}

.footer-content-wrap > :not(:last-child) {
  margin-bottom: 15px;
}

.footer-content-wrap > :last-child {
  margin-top: 40px;
}

.footer-nav-link {
  color: #f8f8f8;
  text-decoration: underline;
}

@media (max-width: 992.98px) {
  .article-body {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .sidebar-links {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .menu-toggle-btn {
    display: block;
  }
  .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .side-panel {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .bonus-showcase {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .offer-logo-img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .main-menu {
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    z-index: 30;
    border-radius: 0 0 12px 12px;
    -webkit-box-shadow: 1px 2px 8px #0a2713;
    box-shadow: 1px 2px 8px #0a2713;
    -webkit-transform: translateY(-140%);
    -ms-transform: translateY(-140%);
    transform: translateY(-140%);
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
  }
  .main-menu.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .nav-item-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .scroll-top-btn {
    right: 15px;
  }
}