:root {
	--body-bg: #fff;
	--body-font: SF Pro;
	--title-font: SF Pro;
	--font-size: 18px;
	--body-color: #282828;
	--link-color: #1676F2;
	--transition: all 0.3s ease-in-out;
	--btn-bg-color: #fff;
	--btn-bg-hover: #FE633C;
	--btn-txt-color: #181623;
	--btn-txt-hover-color: #fff;
	--border-color: #D0D0D0;
	--color-1: #FE633C;
	--color-2: #7B7A8C;
	--color-3: #D8BFFF;
	--color-4: #181623;
	--color-5: #F9F4FF;
	--color-6: #2AABEE;
	--color-7: #C4C3D6;
	--color-8: #dfcbff;
	--grey-color: #F7F6F9;
}
body.overflow {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


ol {
	padding-left: 20px;
}
ol li {
	list-style-type: inherit;
	padding-left: 12px;
}
ol li:not(:last-child) {
	margin-bottom: 20px;
}

main {
	padding: 20px 0 80px;
}
.p-60 {
	padding: 60px 0;
}

.open-button,
.bottom-widjet,
.nav__burger.desk__off {
	display: none;
}

/* Breadcrumbs START */

.breadcrumbs {
	margin-bottom: 40px;
}
.breadcrumbs li {
	position: relative;
}
.breadcrumbs li:not(:last-child):after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: "\f105";
	font-family: icon;
	color: var(--color-1);
	font-size: 14px;
}
.breadcrumbs li:not(:last-child) {
	margin-right: 16px;
	padding-right: 20px;
}
.breadcrumbs li > a,
.breadcrumbs li > span {
	display: block;
	font-size: 14px;
	line-height: 130%;
	font-weight: 500;
	color: var(--color-7);
}
.breadcrumbs li > span {
	color: var(--color-4);
	font-weight: 400;
}

/* Breadcrumbs END */

/* Swiper style START */
.swiper {
	position: relative;
}
.swiper-progress-bar {
	position: relative;
  height: 4px;
  width: 100%;
  max-width: 400px;
  background: #B7B7B7;
  z-index: 10;
  overflow: hidden;
}
.swiper-progress-fill {
  height: 100%;
  width: 0%;
  background: #181623;
  transition: width 0.3s ease;
}
.swiper-button-row {
	position: relative;
	margin-top: 20px;
	height: 100%;
}
.slide-button {
	top: inherit !important;
	right: inherit !important;
	margin: 0 !important;
}
.slide-button path {
	fill: #181623;
	transition: all 0.2s ease-in-out;
}

.slide-button:after {
	content: none !important;
}
.swiper-button-row .swiper-button-prev {
	left: 0;
}
.swiper-button-row .swiper-button-next {
	left: 56px;
}
.swiper-button-disabled svg path {
	fill: #b7b7b7;
}


/* END */

.webkit__clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.heading__title h2 {
	font-size: 48px;
	line-height: 110%;
	font-weight: 500;
}
.readmore.circle {
	background: none;
	height: 52px;
	width: 52px;
	padding: 0;
	gap: 0;
}

/* Header START */

#header {
	position: relative;
	z-index: 99;
	width: 100%;
	transition: all 0.5s ease-in-out;
	background: #fff;
}
#header.sticky {
	position: fixed;
	top: 0;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.09);
}

#header .row {
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	height: 88px;
}
#header .logo {
	max-width: 176px;
}
.navigation {
	max-width: 45.7%;
}
.navigation .row {
	gap: 0 !important;
}
.navigation li,
.navigation li > a {
	height: 100%;
	align-content: center;
}
.navigation li.parent {
	position: relative;
	padding-right: 16px;
}
.navigation li.parent:after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 10px;
	height: 6px;
	transition: var(--transition);
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M0.859375 1L4.15227 4.29289C4.54279 4.68342 5.17596 4.68342 5.56648 4.29289L8.85938 1" stroke="%23181623" stroke-width="1.5"/></svg>');
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}
.navigation li.parent:hover:after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M0.859375 1L4.15227 4.29289C4.54279 4.68342 5.17596 4.68342 5.56648 4.29289L8.85938 1" stroke="%23FE633C" stroke-width="1.5"/></svg>');
}
.navigation li:not(:last-child) {
	margin-right: 40px;
}
.navigation li > ul > li {
	margin: 0;
}
.navigation li.active a {
	color: var(--color-1);
}
.navigation a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: var(--color-4);
}
.navigation a:hover {
	color: var(--color-1);
}

/* Submenu START */
.navigation li > ul.submenu {
  position: absolute;
  top: 65px;
  left: -40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  grid-auto-flow: dense;
  align-items: start;
  align-content: flex-start;
  gap: 20px;
  width: max-content;
  max-width: 977px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  border: 1px solid #D0D0D0;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  transform: translateY(-10px);
  transition: transform 0.3s, opacity 0.2s, visibility 0.2s;
}
.navigation li.full-wrapper > ul.submenu {
	left: -665%;
}

.navigation li.parent.full-wrapper ul.submenu li {
	margin: 0 !important;
	height: auto;
}

.navigation li.parent:hover ul.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.navigation ul.submenu > li {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.navigation ul.submenu li > a,
.navigation ul.submenu li > span {
	color: var(--body-color);
	font-weight: 600;
	font-size: 18px;
	padding: 0 8px;
}
.navigation ul.submenu-child {
	margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.navigation ul.submenu-child li {
	margin: 0;
}
.navigation ul.submenu-child li:not(:last-child) {
	margin-bottom: 4px;
}
.navigation ul.submenu-child li > a {
	font-size: 14px;
	font-weight: 400;
	color: var(--body-color);
	border-radius: 8px;
	padding: 4px 8px;
}
.navigation ul.submenu-child li > a:hover {
	background: var(--grey-color);
}
/* END */

/* Search field START */
.search {
	width: 100%;
	max-width: 395px;
}
.search-field {
	position: relative;
	height: 48px;
}
.search input {
	position: relative;
	z-index: 1;
	background: var(--grey-color);
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	color: #8A899C;
	padding: 0 50px 0 20px;
	width: 100%;
	height: 100%;
}
.search input::placeholder {
	color: var(--color-7);
}
.search button {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 24px;
	height: 24px;
}
/* Search field END */

/* Header END */

/* Categories menu START */

#category__menu {
	padding: 0 0 40px;
}
#category__menu .row {
	gap: 12px;
}
#category__menu li > a {
	display: flex;
	align-items: center;
	height: 52px;
	width: auto;
	padding: 0 32px;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: -0.5px;
	border-radius: 50px;
	color: var(--color-4);
	border: 1px solid var(--color-4);
}
#category__menu li > a > span {
	display: block;
	margin-left: 8px;
}
#category__menu li > a > img {
	width: 20px;
	height: auto;
}
#category__menu li > a:hover {
	background: var(--grey-color);
	border-color: var(--color-1);
}

/* Categories menu END */

/* BG figures START */

.svg-wrapper {
	position: absolute;
	z-index: 1;
}
.svg-wrapper.bottom-right {
	bottom: 0;
	right: 0;
	height: 118px;
}
.svg-wrapper.bottom-left {
	bottom: 0;
	left: 0;
}
.svg-wrapper.top-right {
	top: 0;
	right: 0;
}
.mirror-horizontal {
  transform: scaleX(-1);
}
.svg-wrapper svg path {
	stroke: #fff;
	fill: #fff;
}

/* BG figures END */

/* Top banner START */

#top-banner .swiper-progress-bar {
	display: none;
}

#top-banner .row {
	position: relative;
	gap: 20px;
}
#top-banner .center-description {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 476px;
	text-align: center;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	z-index: 5;

}
#top-banner .box {
	width: 100%;
	max-width: 590px;
}
#top-banner .box.image {
	position: relative;
	border-radius: 44px;
	overflow: hidden;
}
#top-banner .box.image figure {
	height: 100%;
}
#top-banner .box.image figure img {
	min-height: 616px;
}
#top-banner .box.image .svg-wrapper {
	height: 118px;
}

#top-banner .content {
	position: relative;
	background: var(--color-8);
	padding: 80px 40px;
	border-radius: 44px;
	height: 100%;
	min-height: 616px;
}
#top-banner .content p {
	font-size: 16px;
	max-width: 400px;
}


#top-banner .content h2 {
	font-size: 48px;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 40px;
}
#top-banner .content h2 img {
	display: inline-block;
	height: 44px;
	width: auto;
}
#top-banner .content .readmore {
	margin: 40px 0 0;
}
#top-banner {
	padding: 0 0 60px;
}

/* Top banner END */

/* Need module START */

#need-module {
	padding: 60px 0;
}
#need-module .heading__title {
	margin: 0 0 28px;
}
#need-module .row {
	gap: 20px;
}
#need-module .box {
	position: relative;
	width: 100%;
	max-width: 23.7%;
	min-height: 258px;
	color: #fff;
	border-radius: 44px;
	padding: 28px;
}
#need-module .box .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
}
#need-module .box .title {
	font-size: 28px;
	font-weight: 500;
	line-height: 110%;
}
#need-module .box:nth-child(5),
#need-module .box:nth-child(6),
#need-module .box:nth-child(7) {
	min-height: 172px;
}
#need-module .box:nth-child(5),
#need-module .box:nth-child(7) {
	max-width: 36.4%;
}
#need-module .box .readmore {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 5;
}
#need-module .box .svg-wrapper {
	height: 95px;
}
#need-module .box:nth-child(1),
#need-module .box:nth-child(4) {
	margin-top: -81px;
}
#need-module .box:nth-child(1),
#need-module .box:nth-child(4),
#need-module .box:nth-child(6) {
	background: var(--color-1);
}
#need-module .box:nth-child(3),
#need-module .box:nth-child(5) {
	background: var(--color-3);
	color: var(--body-color);
}
#need-module .box:nth-child(2),
#need-module .box:nth-child(7) {
	background: var(--color-2);
}

/* Need module END */

/* Stories START */

#stories-module {
	padding: 60px 0;
}
#stories-module .stories-row {
	display: flex;
	flex-wrap: none;
	overflow-x: auto;
	scrollbar-width: none;
	gap: 40px;
	max-width: 1080px;
	justify-content: center;
	margin: 0 auto;
}
#stories-module .stories-row::-webkit-scrollbar {
  display: none; 
}

#stories-module .story-field {
	position: relative;
	width: 100%;
	max-width: 140px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}
#stories-module .story-field figure {
	position: relative;
	align-content: center;
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid var(--color-1);
	margin: 0 auto;
}
#stories-module .story-field figure:after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
	content: "";
	z-index: 3;
}
.stories-row .story-field:nth-child(3n + 1) figure:after {
	background: var(--color-1);
}
.stories-row .story-field:nth-child(3n + 2) figure:after {
	background: var(--color-2);
}
.stories-row .story-field:nth-child(3n + 3) figure:after {
	background: var(--color-3);
}
#stories-module .story-field figure:hover img {
	opacity: 1;
}
#stories-module .story-field figure:hover:after {
	opacity: 0;
}
#stories-module .story-field figure img {
	position: relative;
	z-index: 2;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	opacity: 0;
	margin: 0 auto;
}
#stories-module .story-field .tag-title {
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 110%;
	margin-top: 16px;
}
#stories-module .story-field .window-content {
	display: none;
}

/* Stories END */

/* News module START */
#news-module {
	padding: 60px 0 0;
}
#news-module .latest-news-mobile {
	display: none;
}
#news-module .swiper {
	padding-bottom: 60px;
}
#news-module .news-item {
	transition: all 0.3s ease-in-out;
	border-radius: 44px;
	padding: 28px;
	flex-shrink: 0;
	color: var(--body-color);
	min-height: 560px;
	width: 251px !important;
	align-content: end;
}
/* Убираем отступ между слайдами только у первого */
#news-module .swiper-slide:first-child {
  margin-left: 0 !important;
}


#news-module .news-item .public-date {
	position: absolute;
	top: 14px;
	left: 28px;
	font-size: 16px;
	font-weight: 400;
}
#news-module .news-item.swiper-slide-active .public-date {
	left: 62px;
}
#news-module .news-item .svg-wrapper {
	top: -1px;
	right: -1px;
}
#news-module .news-item .category-title {
	display: none;
}
#news-module .news-item.swiper-slide-active .category-title {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	font-weight: 500;
	font-size: 16px;
	color: var(--body-color);
	text-transform: uppercase;
	border: 1px solid var(--body-color);
	width: 170px;
	height: 52px;
	z-index: 5;

}
#news-module .news-item .svg-wrapper {
	height: 107px;
}
#news-module .swiper-wrapper {
	gap: 20px;
}
#news-module .news-item.swiper-slide-active .svg-wrapper {
	height: 108px;
}
#news-module .news-item .active-svg {
	display: none !important;
}
#news-module .news-item.swiper-slide-active .active-svg {
	display: block !important;
}
#news-module .news-item.swiper-slide-active .svg-passive {
	display: none !important;
}
#news-module .news-item:nth-child(4n + 1) {
	background: url(/images/BG/Star-3.png), var(--color-1);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top 20px right 0;
	color: #fff;
}
#news-module .news-item:nth-child(2n + 2) {
	background: url(/images/BG/Star-4.png), var(--color-2);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom 0 right 0;
	color:#fff;
}
#news-module .news-item:nth-child(4n + 3) {
	background: url(/images/BG/Star-5.png), var(--color-3);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom 50% left -28px;
}
#news-module .news-item.swiper-slide-active {
	width: 387px !important;
}
#news-module .news-item .title {
	font-size: 24px;
	line-height: 110%;
	margin-bottom: 20px;
	font-weight: 500;
	-webkit-line-clamp: 4;
	transition: none;
}
#news-module .news-item .intro__txt {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
}
#news-module .news-item .readmore {
	margin-top: 20px;
	width: 100%;
	max-width: 100%;
	justify-content: space-between;
}
#news-module .row.jc-space {
	height: 44px;
	align-items: center;
}
/* News module END */

/* Truth or Myth START */
#truth-or-myth {
	padding-bottom: 120px;
}
#truth-or-myth .row {
	gap: 16px;
}
#truth-or-myth .row .button-row {
	justify-content: space-between;
}
#truth-or-myth .swiper-progress-bar {
	display: none;
}
.flip-box {
	position: relative;
	width: 100%;
	max-width: 389px;
	min-height: 348px;
	height: auto;
	padding: 28px;
	border-radius: 44px 44px 4px 44px;
	background: var(--color-3);
	perspective: 1000px;
	z-index: 1;
}
.flip-box:after {
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat !important;
	width: 100%;
	height: 100%;
	content: "";
	z-index: 2;
}
.flip-box:nth-child(3n+1):after {
	background: url(/images/BG/flip-arrow-1.png);
	background-position: left bottom;
}
.flip-box:nth-child(3n+2):after {
	background: url(/images/BG/flip-arrow-2.png);
	background-position: left center;
}
.flip-box:nth-child(3n+3):after {
	background: url(/images/BG/flip-arrow-3.png);
	background-position: right bottom;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  z-index: 3;
}
.flip-box.flipped {
	background: var(--color-5);
}
.flip-box.flipped .flip-inner {
  transform: rotateY(180deg);
}
.front-content,
.back-content {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#truth-or-myth .flip-box .title {
	font-size: 24px;
	font-weight: 500;
	line-height: 110%;
}
#truth-or-myth .flip-box .front-content {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	transform: rotateY(0deg);
	z-index: 2;
	height: 100%;
}
#truth-or-myth .flip-box .front-content .custom__btn {
	width: 100%;
	max-width: 158.5px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	height: 52px;
}
#truth-or-myth .flip-box .front-content .custom__btn.myth {
	background: var(--color-1);
	border-color: var(--color-1);
	color: #fff;
}
#truth-or-myth .flip-box .front-content .custom__btn:hover {
	border-color: #000;
	background: #fff;
	color: #181623;
}
#truth-or-myth .flip-box .front-content .custom__btn.myth:hover {
	background: #FF7654;
	border-color: #FF7654;
	color: #fff;
}

.flip-box .back-content {
	display: none;
}
.flip-box .back-content .result-title {
	margin-bottom: 20px;
}
.flip-box .back-content .title {
	font-size: 24px;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 20px;
}
.flip-box.flipped .back-content {
  display: block;
   z-index: 5;
   backface-visibility: visible;
}
.flip-box.flipped .truth-content,
.flip-box.flipped .myth-content {
	transform: scaleX(-1);
}
/* Truth or Myth END */

/* Objects START */

#objects {
	background: linear-gradient(229.88deg, rgb(112, 111, 128) 4.423%,rgb(166, 164, 186) 90.965%);
	border-radius: 44px;
}
#objects .container {
	position: relative;
}
#objects .row {
	padding-top: 72px;
	padding-bottom: 40.8px;
}
#objects .svg-wrapper {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#objects .heading__title {
	position: relative;
	margin-bottom: 0;
	z-index: 10;
}
#objects ul {
	margin: 0 auto;
	width: 100%;
	max-width: 1020px;
	justify-content: space-between;
}
#objects ul > li {
	width: 100%;
	max-width: 44%;
	margin-bottom: 40px;
}
#objects ul > li > a {
	font-size: 44px;
	font-weight: 400;
	line-height: 110%;
	color: #fff;
}

/* Objects END */

/* Footer START */

#footer {
	padding: 40px 0;
	background: var(--color-4);
	color: #fff;
	font-size: 16px;
	max-height: 255px;
}
#footer .logo {
	display: flex;
	align-items: center;
	width: 133px;
	height: 35px;
}
.footer-menu li:not(:last-child) {
	margin-right: 40px;
}
.footer-menu li > a {
	color: #fff;
}
#footer .first-row {
	margin-bottom: 40px;
}
#footer .secend-row {
	margin-bottom: 16px;
}
#footer .secend-row li {
	position: relative;
	line-height: 24px;
}
#footer .secend-row li > a {
	line-height: 24px;
}
#footer .secend-row li:not(:last-child) {
	margin-right: 7px;
	padding-right: 15px;
}
#footer .secend-row li:not(:last-child):after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	content: "/";
	color: #fff;
}
#footer .secend-row li .email {
	color: #fff;
}
#footer .secend-row li > span {
	display: inline-block;
}
#footer .secend-row li.row {
	gap: 4px;
}
.footer-menu-bottom {
	margin-bottom: 16px;
}
.footer-menu-bottom li:not(:last-child) {
	margin-right: 50px;
}
.footer-menu-bottom li > a {
	color: #B7B7B7;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}
.copyright {
	line-height: 24px;
	font-size: 14px;
}

/* Footer END */

/* Article info START */

.article__info {
	margin-bottom: 20px;
	gap: 20px;
	font-size: 14px;
	line-height: 130%;
	color: #8A899C;
}
.article__info .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	margin-right: 4px;
}
.article__info .icon svg {
	width: 100%;
	height: auto;
}
.article__info li {
	display: flex;
	align-items: center;
}
.article__info li:nth-child(3) .icon,
.article__info li:nth-child(4) .icon {
	width: 24px;
}

/* END */

/* Action buttons START */
.action-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 40px 0;
}
.action-buttons .icon {
	display: flex;
	align-items: center;
	width: 19px;
	margin-right: 4px;
}
.action-buttons .icon svg {
	width: 100%;
	height: auto;
}
.action-buttons a {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #8A899C;
	transition: all 0.3s ease-in-out;
}
.action-buttons a:hover {
	color: var(--color-4);
}
.action-buttons a:hover svg path {
	stroke: var(--color-4);
}
.save-to-mail.custom__btn {
	height: 52px;
	color: #181623;
	padding: 0 40px;
	font-size: 16px;
	text-transform: none;
	font-weight: 500;
	margin-left: auto;
}
/* END */

/* Author info START */

.author-info {
	margin-bottom: 40px;
	gap: 20px;
}
.author-info .name {
	font-weight: 500;
	line-height: 130%;
}
.author-info .job {
	font-size: 16px;
	color: #8A899C;
	margin-top: 8px;
}
.author-info figure {
	width: 56px;
	height: 56px;
	background: #f5f5f5;
	border-radius: 50%;
	overflow: hidden;
} 
.ml-auto {
	margin-left: auto;
}

/* END */

/* Content List START */

.content-list {
	padding: 40px;
	background: #F7F6F9;
	border-radius: 40px;
	margin-bottom: 80px;
}
.content-list .title {
	margin-bottom: 40px;
	font-size: 28px;
	font-weight: 500;
}
.content-list li {
	line-height: 166.4%;
}
.content-list li:not(:last-child) {
	margin-bottom: 20px;
}
.content-list a {
	text-decoration: underline;
	text-underline-position: under;
}
.content-list a:hover {
	color: var(--color-4);
}

/* END */

/* Heading START */

.page__header {
	margin-bottom: 20px;
}
.page__header h1 {
	font-size: 48px;
	line-height: 110%;
	font-weight: 500;
}

/* END */

/* List of sources START */

.list-sources {
	padding: 40px;
	border-radius: 28px;
	background: #F7F6F9;
	margin: 40px 0 27px;
}
.list-sources h2 {
	margin: 0 0 40px !important;
}

/* END */

/* Advertising block START */

.advertising__block {
	background: #f5f5f5;
	border-radius: 28px;
	padding: 28px;
	text-align: center;
	align-content: center;
	min-height: 216px;
	margin-bottom: 80px;
}

/* Advertising block END */

/* Custom list START */

.custom-list.type-1 {
	padding: 40px;
	border-radius: 40px;
	background: var(--color-5);
	margin: 27px 0;
}
.custom-list.type-1:before {
	top: 12px;
}
.custom-list.type-1 li {
	line-height: 161.1%;
}
.custom-list li {
	position: relative;
	padding-left: 21px;
}
.custom-list li a:hover {
	color: var(--btn-txt-color);
}
.custom-list li:not(:last-child) {
	margin-bottom: 12px;
}
.custom-list li:before {
	position: absolute;
	content: "";
	top: 9px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1676F2;
}
.custom-list.type-2,
.custom-list.type-3 {
	margin-bottom: 27px;
}
.custom-list.type-2 li,
.custom-list.type-3 li {
	padding-left: 0;
}
.custom-list.type-2 li:not(:last-child),
.custom-list.type-3 li:not(:last-child) {
	margin-bottom: 40px;
}
.custom-list.type-2 li p,
.custom-list.type-3 li p {
	margin-top: 20px;
}
.custom-list.type-2 li:before,
.custom-list.type-3 li:before {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: icon;
	content: "\f061";
	width: 28px;
	height: 28px;
	border-radius: 0;
	color: var(--color-1);
	background: none;
	top: 1px;
	margin-right: 12px;
}
.custom-list.type-3 li:before {
	font-family: icon;
	content: "\f068";
	color: var(--color-4);
}
.custom-list.steps {
	background: #F7F7F7;
	padding: 40px;
	border-radius: 44px;
}
.custom-list.steps h2 {
	margin: 0 0 40px;
}
.custom-list.steps li:before {
	content: "\f00c";
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-1);
	color: #fff;
	font-size: 22px;
}

.digit-list {
	margin: 40px 0;
}
.digit-list ol {
	padding: 0;
}
.digit-list ol > li {
	list-style-type: none;
	counter-increment: list-counter;
	padding: 0;
}
.digit-list ol > li::before {
	display: inline-block;
  content: counter(list-counter);
  position: relative;
  top: -2px;
  width: 54px;
  min-width: 54px;
  height: 54px;
  margin-right: 12px;
  background: #F9F4FF;
  border-radius: 50%;
  align-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  z-index: 4;
}

.digit-list ol > li > p {
	margin-top: 20px;
}
.list-sources ol {
	padding: 0;
	margin-bottom: 20px;
}
.list-sources ol > li {
	line-height: 29px;
	list-style-type: none;
	padding: 0;
	counter-increment: list-counter;
}
.list-sources ol > li:before {
	display: inline-block;
  content: counter(list-counter);
  position: relative;
  font-size: 13px;
  top: -5px;
}

/* END */

/* Important START */

.important {
	position: relative;
	padding: 44px 44px 44px 244px;
	background: url(/images/BG/arrow-bottom.png), var(--color-8);
	background-repeat: no-repeat;
	background-size: 160px;
	background-position: bottom 0 left 40px;
	border-radius: 28px;
	margin: 40px 0;
	min-height: 175px;
	align-content: center;
}
.important.type-2 {
	background: url(/images/BG/arrow-bottom-orange.png), #FF7654;
	background-repeat: no-repeat;
	background-size: 160px;
	background-position: bottom 0 left 40px;
}
.important.type-2 .description {
	color: #fff;
}
.important .svg-wrapper {
	top: -1px;
	left: -1px;
}

.important .title {
	position: absolute;
	font-size: 28px;
	font-weight: 500;
	top: 8px;
	left: 40px;
	z-index: 5;
}

/* Important END */

/* Article content START */

#inner-page .container .container {
	padding: 0;
}

.article__content h2 {
	margin: 80px 0 40px;
	font-size: 28px;
}
.article__content h4 {
	margin-bottom: 16px;
}
.article__content p:not(:last-child) {
	margin-bottom: 28px;
}

.article__content p {
	line-height: 160%;
}

.article__content a {
	display: inline-block;
}
.article__content a:hover {
	color: var(--color-4);
}
.article__content #stories-module {
	padding: 0;
}
.article__content #stories-module .stories-row {
	flex-wrap: wrap;
	gap: 20px;
}
.article__content #stories-module .story-field {
	max-width: 180px;
	padding: 40px;
	background: var(--color-5);
	border-radius: 28px;
}
.article__content #stories-module .story-field:hover figure:after {
	opacity: 0;
}
.article__content #stories-module .story-field:hover img {
	opacity: 1;
}

.article__content .full__iamge {
	margin: 40px 0 80px;
}
.article__content .full__iamge figure {
	height: 430px;
	border-radius: 40px;
	overflow: hidden;
}
.article__content .full__iamge .article-image__description {
	display: block;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 120%;
	color: #8A899C;
}

/* END */

/* Video wrapper START */

.video__wrapper {
	border-radius: 40px;
	overflow: hidden;
	height: 100%;
	margin-bottom: 27px;
}
.video__wrapper iframe {
	width: 100%;
	height: 100%;
	min-height: 470px;
}

/* END */

/* Download box START */
.download-row {
	gap: 80px;
	margin: 40px 0 27px;
}
.download {
	display: flex !important;
	gap: 12px;
	max-width: 238px;
}
.download .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
}
.download .title {
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--color-4);
}
.download .download__txt {
	font-size: 16px;
	font-weight: 500;
}
.download:hover .download__txt {
	text-decoration: underline;
	text-underline-position: under;
}

/* END */

/* Popular articles module START */
.popular-articles {
	margin-bottom: 27px;
}
.popular-articles .module__title {
	width: 100%;
	max-width: 100%;
	margin-bottom: 24px;
}
.popular-articles .module__title h2 {
	font-size: 27px;
}
.popular-articles .item .public-date.top {
	font-size: 14px;
	color: #8A899C;
	margin-bottom: 8px;
}
.popular-articles .item {
	position: relative;
	z-index: 1;
	padding: 20px 28px;
	border-radius: 24px;
	border: 1px solid var(--color-1);
	transition: all 0.2s ease-in-out;
}
.popular-articles .item:not(:last-child) {
	margin-bottom: 20px;
}
.popular-articles .item:hover {
	border-color: var(--color-4);
}
.popular-articles .item:hover h3 {
	color: var(--color-2);
}
.popular-articles .item h3 {
	font-size: 18px;
	transition: all 0.2s ease-in-out;
	font-weight: 500;
	line-height: 130%;
	margin-bottom: 28px;
}
.popular-articles .item .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.popular-articles .item .article__info {
	margin: 0;
}

.popular-articles.type-2 {
	gap: 16px;
}
.popular-articles.type-2 .item {
	background: var(--color-5);
	width: 100%;
	max-width: 32%;
	border-color: transparent;
	margin: 0 !important;
}
.popular-articles.type-2 .item h3 {
	-webkit-line-clamp: 4;
}


/* Popular articles module END */

/* Quote START */

.quote {
	padding: 28px;
	text-align: center;
	border-top: 1px solid var(--color-1);
	border-bottom: 1px solid var(--color-1);
	margin: 100px 0;
}
.quote .title {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
	color: var(--color-1);
	margin-bottom: 20px;
}
.quote .title h2 {
	font-size: 48px;
	margin: 0;
}
.quote p {
	font-size: 28px;
	font-weight: 500;
	color: #4F4F4F;
	line-height: 110%;
	max-width: 720px;
	margin: 0 auto;
}
.quote .title .svg-icon {
	width: 28px;
	height: 28px;
}

.quote.type-2 blockquote {
	position: relative;
	font-size: 28px;
	font-weight: 500;
	color: #4F4F4F;
	line-height: 110%;
	padding: 20px 60px;
	margin: 0 auto;
}
.quote.type-2 blockquote span {
	display: block;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 400;
}
.quote.type-2 blockquote .quote-icon {
	position: absolute;
	width: 43px;
	height: 33px;
}
.quote.type-2 blockquote .quote-icon.top {
	top: 0;
	left: 0;
}
.quote.type-2 blockquote .quote-icon.bottom {
	bottom: 0;
	right: 0;
}

/* Quote END */

/* Comment form START */

.comments h2 span {
	padding-left: 8px;
	color: #8A899C;
}
.comments .add-comment textarea {
	border: 1px solid #8A899C;
	border-radius: 28px;
	padding: 28px;
	margin-bottom: 16px;
	height: 154px;
	max-height: 154px;
	font-size: 18px;
}
.comments .add-comment .row {
	gap: 16px;
}
.comments .add-comment .control-field {
	width: 100%;
	max-width: 49%;
}
.comments .add-comment .control-field input {
	border: 1px solid #8A899C;
	border-radius: 20px;
	padding: 20px;
	font-size: 18px;
}
.comments .add-comment .custom__btn {
	background: #B7B7B7;
	border-color: #B7B7B7;
	color: #fff;
	width: 100%;
	max-width: 396px;
	margin: 16px auto 40px;
	border-radius: 40px;
}
.comments .add-comment .custom__btn:hover {
	background: var(--color-1);
	border-color: var(--color-1);
}
.comments .review {
	padding: 28px;
	border-radius: 28px;
	background: #F7F6F9;
	min-height: 234px;
}
.comments .review:not(:last-child) {
	margin-bottom: 20px;
}
.comments .review .avatar {
	width: 56px;
	height: 56px;
	background: var(--color-1);
	border-radius: 50%;
	margin-right: 20px;
}
.comments .review:nth-child(3n+1) .avatar {
	background: var(--color-1);
}
.comments .review:nth-child(3n+2) .avatar {
	background: #E3D1FF;
}
.comments .review:nth-child(3n+3) .avatar {
	background: #8A899C;
}
.comments .review .name {
	font-size: 24px;
	font-weight: 500;
}
.comments .review .public-date {
	font-size: 16px;
	color: #8A899C;
	margin-top: 8px;
}
.comments .review .comment-text {
	margin: 20px 0; 
	line-height: 160%;	
}
.comments .review .bottom {
	justify-content: space-between;
}
.comments .review .bottom button {
	display: inline;
	font-size: 16px;
	color: #8A899C;
	width: 100px;
}
.comments .review .bottom button:hover {
	color: var(--color-4);
}
.comments .review .bottom .article__info {
		margin: 0;	
}

/* END */

/* Subscription form START */

.subscription-form {
	position: relative;
	padding: 40px;
	min-height: 244px;
	align-content: center;
	margin: 80px 0;
	overflow: hidden;
}
.subscription-form form {
	position: relative;
	z-index: 10;
	margin-top: 40px;
}
.subscription-form .svg-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.subscription-form .svg-wrapper:after {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 100px;
	z-index: 3;
	background: url(/images/BG/star-8.png) no-repeat;
	background-position: top center;
	content: "";
}
.subscription-form:after {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
	bottom: 1px;
	right: 0;
	content: "";
	background: url(/images/BG/arrow-bottom-2.png) no-repeat;
	background-position: bottom right 20px;
}
.subscription-form:before {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
	bottom: 1px;
	left: 2px;
	content: "";
	border-radius: 28px;
	background: url(/images/BG/star-7.png) no-repeat;
	background-position: bottom left;
	background-size: 35%;
	overflow: hidden;
}
.subscription-form .svg-wrapper svg {
	width: 100%;
	height: 100%;
	min-height: 244px;
}
.subscription-form .svg-wrapper svg path {
	fill: #FF7654;
}
.subscription-form .title {
	position: absolute;
	top: 0;
	left: 0;
	padding: 8px 8px 8px 40px;
	font-size: 26px;
	font-weight: 500;
	z-index: 10;
}
.subscription-form .row {
	gap: 16px;
}
.subscription-form .control-field {
	width: 100%;
	max-width: 312px;
}
.subscription-form .control-field input {
	background: #fff;
	border-radius: 16px;
	padding: 12px 28px;
	height: 52px;
	font-size: 18px;
	color: #8A899C;
}
.subscription-form button {
	max-width: 186px;
}

/* Subscription form END */

/* Table Styles START */

ul.table > li .head {
	display: block;
	position: relative;
	padding: 20px;
	border-radius: 20px;
	background: #F0E7FF;
	border: 1px solid #D8BFFF;
	cursor: pointer;
}
ul.table > li .head:after {
	position: absolute;
	top: 20px;
	right: 20px;
	content: "\f107";
	font-weight: 300;
	font-family: icon;
	transition: all 0.2s ease-in-out;
}
ul.table > li.show .head:after {
	transform: rotate(180deg);
}
ul.table > li:not(:last-child) {
	margin-bottom: 12px;
}

ul.table table {
	display: none;
	width: auto;
	min-width: 488px;
	margin: 12px 0;
	border: 1px solid #B7B7B7;
	border-spacing: 0;
	border-radius: 24px;
	overflow: hidden;
}
table thead tr {
	background: #F7F6F9;
	border-bottom: 1px solid #B7B7B7;
}

table thead tr th:first-child,
table tbody tr td:first-child {
	border-right: 1px solid #B7B7B7;
}
table tbody tr:nth-child(even) {
	background: #F9F4FF;
}
table tbody tr:not(:last-child) td {
	border-bottom: 1px solid #B7B7B7;
}
table th,
table td {
	text-align: center;
	padding: 20px;
	font-weight: 400;
	font-size: 18px;
}
ul.table li.show table {
	display: table;
}

.custom__table {
	display: table;
	width: auto;
  min-width: 488px;
  margin: 12px 0;
  border: 1px solid #B7B7B7;
  border-spacing: 0;
  border-radius: 24px;
  overflow: hidden;
}
.custom__table thead tr {
	background: #F9F4FF;
}
/* Table Styles END */

/* Module box START */

.module-wrapper {
	padding-left: 54px;
	display: flex;
  flex-direction: column;
  gap: 40px;
}
.module-box.sticky {
	position: sticky;  
}
.module-box .content-list {
	margin: 0;
}

.recommend__reading {
	background: #fff;
}

.recommend__reading h3 {
	margin-bottom: 40px;
}
.recommend__reading .item {
	position: relative;
	z-index: 1;
}
.recommend__reading .item:not(:last-child) {
	margin-bottom: 40px;
}
.recommend__reading .item .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.recommend__reading .item .item-title {
	-webkit-line-clamp: 2;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 12px;
	transition: all 0.3s ease-in-out;
}
.recommend__reading .item:hover .item-title {
	color: var(--color-1);
}
/* Module box END */

/* buttons row START */
.buttons-list {
	margin: 40px 0;
	gap: 12px;
}
/* buttons row END */

/* Accordion START */

.accordion-wrapper {
	margin: 40px 0;
}
.accordion-wrapper .accordion-box:not(:last-child) {
	margin-bottom: 12px;
}
.accordion-wrapper .accordion-box .heading {
	display: block;
  position: relative;
  padding: 20px 50px 20px 20px;
  border-radius: 20px;
  background: #F0E7FF;
  border: 1px solid #D8BFFF;
  cursor: pointer;
}
.accordion-wrapper .accordion-box .heading:after {
	position: absolute;
  top: 20px;
  right: 20px;
  content: "\f107";
  font-weight: 300;
  font-family: icon;
  transition: all 0.2s ease-in-out;
}
.accordion-wrapper .accordion-box.show .heading:after {
	transform: rotate(180deg);
}
.accordion-wrapper .accordion-box .content {
	visibility: hidden;
	opacity: 0;
	height: 0;
	margin: 0;
	transition: all 0.1s ease-in-out;
}
.accordion-wrapper .accordion-box.show .content {
	height: auto;
	visibility: visible;
	opacity: 1;
	padding: 12px 20px 40px;
}
.accordion-wrapper .accordion-box li {
	color: #1676F2;
}
/* Accordion END */

/* Pagination START */

.pagination .row {
	gap: 20px;
	justify-content: center;
}
.pagination li > a,
.pagination li > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	align-content: center;
	color: var(--color-4);
	font-size: 16px;
}
.pagination li.active > span,
.pagination li a:hover {
	color: #fff;
	background: #4F4F4F;
}
.pagination .first {
	padding-right: 20px;
}
.pagination .last {
	padding-left: 20px;
}
.pagination .first a,
.pagination .last a {
	width: 35px;
	align-content: center;
}
.pagination .first svg,
.pagination .last svg {
	width: 100%;
	height: auto;
}
.pagination .first a:hover,
.pagination .last a:hover {
	background: none;
}
.pagination .first:hover svg path,
.pagination .last:hover svg path {
	fill: #4F4F4F;
}

/* Pagination END */

/* Categories list START */

.categories-list {
	position: relative;
	border-radius: 44px;
	border: 2px solid #D8BFFF;
	padding: 100px 40px 40px;
	margin-top: 80px;
	z-index: 1;
}
.categories-list .svg {
	position: absolute;
	top: -2px;
	left: -2px;
	width: 269px;
	height: 113px;
	z-index: 4;
}
.categories-list .svg svg {
	width: 100%;
	height: auto;
}
.categories-list .svg-wrapper svg path {
	stroke: #D8BFFF;
	fill: #fff;
}
.categories-list h2 {
	font-size: 28px;
	font-weight: 500;
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 40px;
	z-index: 5;
}
.categories-list ul > li:nth-child(even) {
	padding-left: 20px;
}
.categories-list ul > li:nth-child(odd) {
	padding-right: 20px;
}
.categories-list ul > li.clear {
	display: block;
	clear: both;
	float: none;
}
.categories-list ul > li {
	margin-bottom: 20px;
	float: left;
	max-width: 50%;
}
.categories-list ul > li > a {
	color: var(--color-4);
	font-weight: 500;
}
.categories-list ul > li > a:hover {
	color: var(--color-1);
}
.categories-list ul > li > a span {
	display: inline-block;
	color: #b7b7b7;
}


/* Categories list END */

/* Personal Page START */

.personal__page .author-info {
	align-items: center;
	margin-bottom: 80px;
}
.personal__page .author-info figure {
	width: 120px;
	height: 120px;
}
.personal__page .author-info .name {
	font-size: 28px;
}
.personal__page .author-info .job {
	font-size: 18px;
}

/* END */

/* Error Page START */
.error-page {
	position: relative;
	align-content: center;
	text-align: center;
	height: 100vh;
	background: url(/images/BG/star-error.png) no-repeat;
	background-position: center center;
	background-size: contain;
	padding-bottom: 100px;
}
.error-page:before,
.error-page:after {
	display: block;
	z-index: 1;
	position: absolute;
	content: "";
	width: 100%;
	max-width: 400px;
	height: 100%;
	max-height: 400px;
}
.error-page:before {
	top: 0;
	right: 0;
	background: url(/images/BG/error-1.png) no-repeat;
	background-size: contain;
	background-position: top right;

}
.error-page:after {
	bottom: 0;
	left: 0;
	background: url(/images/BG/error-2.png) no-repeat;
	background-size: contain;
	background-position: bottom left;

}
.error-page .error {
	position: relative;
	z-index: 4;
	line-height: 100%;
	font-size: 316px;
	font-weight: 700;
	color: var(--color-1);
	margin-bottom: 28px;
}
.error-page .page-notfound {
	font-size: 44px;
	line-height: 140%;
	margin-bottom: 64px;
}
.error-page p {
	font-size: 16px;
	font-weight: 500;
	margin: 0 auto 28px;
	max-width: 360px;
}
.error-page .custom__btn {
	margin: 0 auto;
	max-width: 170px;
}
/* Error Page END */

/* Search Page START */

.search-page h1 {
	font-size: 28px;
	font-weight: 500;
}
.search-page ol > li > a {
	padding-bottom: 8px;
}

.search-form {
	background: #F7F6F9;
	padding: 16px 28px;
	border-radius: 50px;
}
.search-form .row {
	align-items: center;
	justify-content: space-between;
}
.search-form input {
	width: 90%;
	height: 100%;
}
.search-form button {
	width: 22px;
	height: 22px;
}
.search-form button:hover svg path {
	stroke: var(--color-1);
}
.result-search {
	color: #8A899C;
	margin: 20px 0 40px;	
}
/* END */