@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  /* Color styles */
  --black: rgba(0, 0, 0, 1);
  --blue--ribbon: rgba(20, 99, 254, 1);
  --cod--gray: rgba(20, 20, 20, 1);
  --ghost: rgba(199, 199, 209, 1);
  --dusty--gray: rgba(151, 151, 151, 1);
  --mercury: rgba(233, 233, 233, 1);
  --mine--shaft: rgba(34, 34, 34, 1);
  --white: rgba(255, 255, 255, 1);
  /* Text-size styles */
  --semantic---heading-1: 24px;
  --semantic---heading-1: 40px;
  --semantic---heading-2: 72px;
  --semantic---heading-4: 20px;
  --semantic---link: 20px;
  --inter---regular: 24px;
  --inter---semi--bold: 20px;
  --heading-1: 16px;
  --heading-1: 24px;
  --heading-1: 32px;
  --heading-2: 48px;
}

body {
  background-color: var(--white);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  color: var(--cod--gray);
  font-weight: 400;
  transition: 0.4s;
  opacity: 1;
  min-height: 100%;
}
body.preload {
  opacity: 0;
}

a {
  outline: none;
  color: var(--cod--gray);
  font-size: 1rem;
  outline: none !important;
  text-decoration: none;
  transition: 0.4s;
}

a:not(.btn):hover {
  opacity: 0.7;
}

input, textarea, select, button {
  font-family: "Inter", sans-serif;
  transition: 0.4s;
}

section {
  padding: 40px 0;
}
@media screen and (max-width: 991px) {
  section {
    padding: 20px 0;
  }
}
section:first-child {
  padding-top: 80px;
}
@media screen and (max-width: 991px) {
  section:first-child {
    padding-top: 40px;
  }
}
section:last-child {
  padding-bottom: 80px;
}
@media screen and (max-width: 991px) {
  section:last-child {
    padding-bottom: 40px;
  }
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 600;
}

.btn {
  background: var(--cod--gray);
  border-radius: 12px;
  color: var(--white);
  padding: 13px 17px;
  border: 1px solid var(--cod--gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 300;
}
.btn:hover {
  background: var(--white);
  color: var(--cod--gray);
}
.btn-border {
  background: var(--white);
  border-color: var(--mercury);
  color: var(--cod--gray);
}
.btn-border:hover {
  background: var(--mercury);
}
.btn-gray {
  background: #E9E9E9;
  border-color: #E9E9E9;
  color: var(--cod--gray);
}
.btn-blue {
  background: var(--blue--ribbon);
  border-color: var(--blue--ribbon);
}
.btn svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 991px) {
  .btn svg {
    width: 16px;
    height: 16px;
  }
}

.btns-row {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 8px;
}

.h1 {
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .h1 {
    font-size: 24px;
  }
}

.h2 {
  font-size: 25px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .h2 {
    font-size: 24px;
  }
}

.h4 {
  font-size: 20px;
  font-weight: 600;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .margin-bottom-30 {
    margin-bottom: 20px;
  }
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
.margin-bottom-60 {
  margin-bottom: 60px;
}
.margin-bottom-70 {
  margin-bottom: 70px;
}

.text-24 {
  font-size: 18px;
}
@media screen and (max-width: 919px) {
  .text-24 {
    font-size: 16px;
  }
}

.text-light {
  font-weight: 300;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.padding-section {
  padding: 110px 0;
}
@media screen and (max-width: 1200px) {
  .padding-section {
    padding: 50px 0;
  }
}
.padding-section .btn {
  padding: 17px 33px;
  font-size: 20px;
}

.link-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .link-icon {
    font-size: 20px;
  }
}
.link-icon svg {
  width: 24px;
  height: 24px;
}

.slider-wrapper {
  overflow: hidden;
}
.slider-wrapper .swiper-pagination-bullets {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}
.slider-wrapper .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 !important;
  transition: 0.4s;
}
.slider-wrapper .swiper-pagination-bullet-active {
  background: var(--cod--gray);
}

[data-copy] {
  color: var(--blue--ribbon);
  padding: 4px 8px;
  background: #EAEEFF;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transform: translateY(3px);
}
[data-copy]::before {
  content: "";
  width: 18px;
  min-width: 18px;
  height: 18px;
  background-image: url("../img/sprite/copy-2.svg");
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
[data-copy].copied::before {
  background-image: url("../img/sprite/check.svg");
}

.btn-copy {
  background: #E9E9E9;
  border-color: #E9E9E9;
  color: var(--cod--gray);
}
.btn-copy::before {
  width: 20px;
  height: 20px;
  background-image: url("../img/sprite/copy.svg");
}
.btn-copy.copied::before {
  background-image: url("../img/sprite/check-2.svg");
}

.header {
  padding: 8px 40px;
  border-bottom: 1px solid var(--mercury);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header .container {
  max-width: none;
  padding: 0;
}
.header-row {
  display: flex;
  align-items: center;
}
.header-row nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header-row nav ul {
  display: flex;
  gap: 0;
}
@media screen and (max-width: 991px) {
  .header-row nav ul {
    display: none;
  }
}
.header-row nav ul a {
  padding: 16px 20px;
}
@media screen and (max-width: 991px) {
  .header .btns-row {
    display: none;
  }
}
.header .logo img {
  height: 26px;
}

.lang-switcher {
  margin-right: 8px;
}
.lang-switcher__current {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  transition: 0.4s;
  cursor: pointer;
}
.lang-switcher__current:hover {
  background: #E9E9E9;
}
.lang-switcher__current svg {
  width: 24px;
  height: 24px;
}
.lang-switcher__current svg:last-child {
  width: 15px;
  height: 15px;
}
.lang-switcher__list {
  position: absolute;
  padding: 10px;
  display: flex;
  flex-flow: column;
  min-width: 150px;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 4px 16px #0000001f;
  border-radius: 12px;
  display: none;
}
.lang-switcher__list a {
  padding: 10px 20px;
}
.lang-switcher.open .lang-switcher__current svg {
  transform: rotate(180deg);
}
.lang-switcher.open .lang-switcher__list {
  display: flex;
}

.btn-burger {
  display: flex;
  flex-flow: column;
  gap: 3px;
  position: relative;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
}
@media screen and (min-width: 992px) {
  .btn-burger {
    display: none;
  }
}
.btn-burger span {
  width: 18px;
  height: 2px;
  background: var(--cod--gray);
  transition: 0.4s;
  position: relative;
}

.menu-wrapper {
  width: 100%;
  background: var(--white);
  position: fixed;
  top: 65px;
  height: calc(var(--app-height) - 65px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.4s;
}
.menu-wrapper__inner {
  padding: 20px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}
.menu-wrapper ul {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.menu-wrapper ul a {
  font-size: 24px;
  font-weight: 600;
  display: block;
  padding: 12px 0;
}
.menu-wrapper .btns-row {
  flex-flow: column;
}
.menu-wrapper .btns-row .btn {
  width: 100%;
}

.active-menu .menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.active-menu .btn-burger span {
  position: absolute;
  transform: rotate(45deg);
}
.active-menu .btn-burger span:nthy-child(2) {
  opacity: 0;
}
.active-menu .btn-burger span:nth-child(3) {
  transform: rotate(-45deg);
}

.footer {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--mercury);
}
@media screen and (max-width: 575px) {
  .footer {
    padding: 40px 24px;
  }
}
.footer .container {
  padding: 0;
  max-width: none;
}
.footer-row {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.footer-row-logo {
  width: calc(16.6666666667% - 10px);
  display: flex;
  flex-flow: column;
  gap: 16px;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .footer-row-logo {
    width: calc(33.3333333333% - 10px);
  }
}
@media screen and (max-width: 991px) {
  .footer-row-logo {
    width: 100%;
  }
}
.footer-row-nav {
  width: calc(83.3333333333% - 10px);
  display: flex;
  flex-flow: wrap;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .footer-row-nav {
    width: calc(66.6666666667% - 10px);
  }
}
@media screen and (max-width: 991px) {
  .footer-row-nav {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .footer .btns-row {
    width: 100%;
  }
  .footer .btns-row .btn {
    width: 100%;
  }
}

.footer-links {
  min-width: 145px;
}
@media screen and (max-width: 575px) {
  .footer-links {
    width: 100%;
  }
}
.footer-links__title {
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li:last-child {
  margin-bottom: 0;
}

.copyright {
  line-height: 1.4;
}
.copyright p {
  margin-top: 20px;
}
.copyright p:last-child {
  margin-top: 40px;
}

.post-list {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .post-list {
    margin-top: 35px;
  }
}
.post-list .post-item {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media screen and (max-width: 991px) {
  .post-list .post-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .post-list .post-item {
    width: 100%;
  }
}

.posts-slider .swiper-slide {
  width: calc(33.3333333333% - 13.3333333333px);
  margin-right: 20px;
}
.posts-slider .swiper-slide:last-child {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .posts-slider .swiper-slide {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .posts-slider .swiper-slide {
    width: 100%;
  }
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  row-gap: 10px;
}
.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.post-meta svg {
  width: 24px;
  height: 24px;
}

.post-item {
  border: 1px solid var(--mercury);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  .post-item {
    font-size: 16px;
  }
  .post-item .post-title {
    font-size: 18px;
  }
}
.post-item__content {
  padding: 20px;
  display: flex;
  gap: 16px;
  flex-flow: column;
  font-weight: 300;
}
.post-item .post-meta {
  margin: 10px 0;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .post-item .post-meta {
    margin: 5px 0;
  }
}
.post-item .btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.post-item__image {
  position: relative;
  height: 200px;
}
@media screen and (max-width: 1200px) {
  .post-item__image {
    height: 200px;
  }
}
.post-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.post-item .post-title {
  font-weight: 600;
  font-size: 18px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--mercury);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.pagination a:hover {
  background: var(--mercury);
}
.pagination span {
  background: var(--cod--gray);
  color: var(--white);
  border-color: var(--cod--gray);
}

.article-row {
  display: flex;
  flex-flow: wrap;
  gap: 40px;
}
.article-row__sidebar {
  width: calc(28% - 40px);
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 991px) {
  .article-row__sidebar {
    width: 100%;
    display: none;
  }
}
.article-row__content {
  width: 72%;
}
@media screen and (max-width: 991px) {
  .article-row__content {
    width: 100%;
  }
}

.post-image {
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}
@media screen and (max-width: 1200px) {
  .post-image {
    margin: 20px 0;
  }
}
.post-image img {
  width: 100%;
}

.sidebar-links {
  border-right: 1px solid #C7C7D1;
}
@media screen and (max-width: 991px) {
  .sidebar-links {
    border: 1px solid #C7C7D1;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
  }
}

.post-single-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .post-single-meta {
    margin-bottom: 30px;
    flex-flow: wrap;
    row-gap: 15px;
  }
}

.social-links {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 991px) {
  .social-links {
    flex-flow: wrap;
    width: 100%;
  }
}
.social-links .btn {
  padding: 7px 20px;
}
@media screen and (max-width: 991px) {
  .social-links .btn {
    width: 100%;
    min-height: 46px;
  }
}
.social-links ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links a {
  width: 40px;
  height: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 12px;
}
@media screen and (max-width: 991px) {
  .social-links a {
    flex-grow: 1;
    width: auto;
  }
}
.social-links a:hover {
  opacity: 0.8;
}
.social-links a svg {
  max-width: 100%;
  max-height: 100%;
}
.social-links a.facebook {
  background: #0B84EE;
}
.social-links a.whatsapp {
  background: #48C95F;
}
.social-links a.tg {
  background: #27A6E5;
}
.social-links a.linkin {
  background: #2878B7;
}

.post-content {
  line-height: 1.4;
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  .post-content {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.post-content h1 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .post-content h1 {
    font-size: 24px;
  }
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5 {
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5 {
    margin-bottom: 15px;
  }
}
.post-content strong {
  font-weight: 600;
}
.post-content p, .post-content ul, .post-content blockquote {
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .post-content p, .post-content ul, .post-content blockquote {
    margin-bottom: 15px;
  }
}
.post-content p:last-child, .post-content ul:last-child, .post-content blockquote:last-child {
  margin-bottom: 0;
}
.post-content ul {
  list-style-type: disc;
  padding-left: 30px;
}
.post-content hr {
  margin: 30px 0;
  height: 1px;
  background: #C7C7D1;
  border: none;
}
@media screen and (max-width: 1200px) {
  .post-content hr {
    margin: 30px 0;
  }
}
.post-content blockquote {
  padding: 30px;
  border-radius: 12px;
  border: 2px dashed var(--blue--ribbon);
  position: relative;
  margin: 40px 0;
}
@media screen and (max-width: 1200px) {
  .post-content blockquote {
    padding: 20px;
  }
}
.post-content blockquote::before, .post-content blockquote::after {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  top: -25px;
  left: 45px;
  background-image: url("../img/sprite/quote.svg");
}
.post-content blockquote::after {
  left: auto;
  right: 45px;
  bottom: -25px;
  top: auto;
  transform: rotate(180deg);
}

.sidebar-links {
  padding-right: 20px;
}
.sidebar-links .link-h1 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
  padding: 0;
}
.sidebar-links .link-h1:hover {
  background: none;
}
@media screen and (max-width: 1200px) {
  .sidebar-links .link-h1 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
  }
}
.sidebar-links a {
	padding: 7px;
	font-weight: 300;
	display: block;
	border-radius: 7px;
	background: var(--white);
	font-size: 15px;
}
@media screen and (max-width: 1200px) {
  .sidebar-links a {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .sidebar-links a {
    padding: 12px 16px;
  }
}
.sidebar-links a:hover {
  background: #E9E9E9;
}

.ads {
	padding: 20px;
	border-radius: 12px;
	background: #F7F8FD;
	margin-top: 20px;
	background-image: url("../img/ads.svg");
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: 80px;
}
.ads img {
  max-height: 30px;
}
@media screen and (max-width: 1200px) {
  .ads {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .ads {
    background-size: 100px;
    margin-top: 30px;
  }
}
.ads__content {
  margin: 25px 0;
  display: flex;
  flex-flow: column;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .ads__content {
    margin: 20px 0;
  }
}
@media screen and (max-width: 575px) {
  .ads__content {
    margin: 30px 0;
  }
}
@media screen and (max-width: 1200px) {
  .ads .h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .ads .h2 {
    font-size: 24px;
  }
}

.tg-channel {
  display: flex;
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .tg-channel {
    font-size: 16px;
    flex-flow: column;
    align-items: flex-start;
    padding: 20px;
    font-weight: 500;
  }
}
.tg-channel svg {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}
.tg-channel p {
  flex-grow: 1;
}

.breadcrumbs > span {
  color: #979797;
  font-size: 14px;
  font-weight: 300;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-flow: wrap;
}
@media screen and (max-width: 991px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs a {
  color: #979797;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}
.breadcrumbs a:hover {
  color: var(--cod--gray);
}
.breadcrumbs a::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/sprite/chevron-right.svg");
  display: inline-block;
}

.to-top {
  padding: 14px;
  margin-left: auto;
  margin-top: auto;
  display: inline-flex;
}
.to-top svg {
  width: 24px;
  height: 24px;
}

.posts-slider {
  overflow: hidden;
}
/*# sourceMappingURL=main.css.map */

.post-item {
	display: flex;
	flex-flow: column;
}

.post-item .post-meta {
	margin-top: auto;
}

.post-item__content {
	flex-grow: 1;
}

.post-image {
	max-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-row {
	align-items: flex-start;
}

.article-row__sidebar {
	position: sticky;
	top: 80px;
}

.to-top {
	margin-top: 40px;
}

.single-page .article-section .container {
	max-width: 1080px;
}

.post-content h2 {
  font-size: 30px;
}
.post-content h3 {
  font-size: 27px;
}
.post-content h4 {
  font-size: 24px;
}
.post-content h5 {
  font-size: 20px;
}

.post-content a:not(.btn) {
	color: var(--blue--ribbon);
	text-decoration: underline;
}

.sidebar-links .link-h1 {
	margin: 10px 0;
}

.sidebar-links li:first-child .link-h1 {
	margin-top: 0;
}

.post-content ol {
	list-style: num;
	padding-left: 20px;
}

.post-content table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
}
.post-content thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #f7f8fd;
	font-size: 14px;
}
.post-content thead tr th:first-child {
	border-radius: 8px 0 0 8px;
}
.post-content thead tr th:last-child {
	border-radius: 0 8px 8px 0;
}
.post-content tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}

.post-content tbody tr:nth-child(even){
	background: #f7f8fd;
}
.post-content tbody tr td:first-child {
	border-radius: 8px 0 0 8px;
}
.post-content tbody tr td:last-child {
	border-radius: 0 8px 8px 0;
}

@media screen and (max-width: 991px) {
	.post-content h2 {
	  font-size: 20px;
	}
	.post-content h3 {
	  font-size: 17px;
	}
	.post-content h4 {
	  font-size: 16px;
	}
	.post-content h5 {
	  font-size: 14px;
	}
}


.sidebar-links a.link-h2 {
	padding-left: 10px;
}
.sidebar-links a.link-h3 {
	padding-left: 15px;
}
.sidebar-links a.link-h4 {
	padding-left: 20px;
}
.sidebar-links a.link-h5 {
	padding-left: 25px;
}

.ads .h2 {
	font-size: 18px;
}

.ads__content {
	margin: 25px 0;
	gap: 10px;
	font-size: 13px;
	font-weight: 300;
}

.ads img {
	max-height: 30px;
}

.sidebar-links .h1, .ads .h2, .sidebar-links .link-h1 {
	font-weight: 500;
}

@media screen and (min-width: 992px) {
	.sidebar-links .h1 {
		font-size: 26px;
	}
}

.scrolled .sidebar-links {
	opacity: .5;
	transition: .4s;
}

.scrolled .sidebar-links:hover {
	opacity: 1;
}