

/* Start:/fonts/fonts.css?1758895468706*/
  @font-face {
      font-family: 'TT Fors';
      src: url('/fonts/TTFors-Italic.woff2') format('woff2'),
          url('/fonts/TTFors-Italic.woff') format('woff');
      font-weight: normal;
      font-style: italic;
      font-display: swap;
  }
  
  @font-face {
      font-family: 'TT Fors';
      src: url('/fonts/TTFors-Regular.woff2') format('woff2'),
          url('/fonts/TTFors-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
  }
  
  @font-face {
      font-family: 'TT Fors';
      src: url('/fonts/TTFors-Bold.woff2') format('woff2'),
          url('/fonts/TTFors-Bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
      font-display: swap;
  }
/* End */


/* Start:/css/style.css?175889546830890*/
/* Base Styles */
:root {
--white: #fff;
--gray: #EFEFEF;
--black: #141412;
--red: #DA352C;
--text-gray: #888;
--graytext: #7B7B7B;
--lightgraytext: #999999;
--border-color: #e0e0e0;
--font-family-base: 'TT Fors', sans-serif;
--transition-duration: 700ms;
--green-light: #F2FBF4;
--green-dark: #3E9D58;
--orange-light: #FFF8F0;
--orange-dark: #FF9900;
}

*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
font-size: 16px; /* Base font size for rem calculation */
}

body {
font-family: var(--font-family-base);
font-weight: 400;
background-color: var(--gray);
color: var(--black);
}

h1 {
font-size: 2.25rem;
line-height: 1.15;
font-weight: 400;
}

h2 {
font-size: 1.88rem;
line-height: 1.15;
font-weight: 400;
}

h3 {
font-size: 1.5rem;
font-weight: 400;
}

h4 {
font-size: 1.33rem;
font-weight: 400;
}

a {
color: var(--black);
text-decoration: none;
transition: color var(--transition-duration);
}

a:hover {
color: var(--red);
}

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

ul {
list-style: none;
}

.wrapper {
max-width: 1440px;
margin: 0 auto;
padding: 0 1.5rem;
}

/* Header */
.header {
background-color: var(--white);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--gray);
}

.header__wrapper {
display: grid;
/* New corrected percentages based on inner width (1440px - 2*24px padding) */
/* Col: 280px / 1392px = 20.11% */
/* Gap: 60px / 1392px = 4.31% */
grid-template-columns: 20.11% 1fr 20.11%;
gap: 4.31%;
align-items: center;
}

.header__logo {
display: flex;
align-items: center;
gap: 1rem;
text-decoration: none;
}

.header__logo-icon {
width: 1.50rem;
height: 3.00rem;
}

.header__logo-text {
display: flex;
flex-direction: column;
}

.header__logo-text span:first-child {
font-size: 0.63rem;
color: var(--red);
font-weight: 700;
text-transform: uppercase;
line-height: 1;
}

.header__logo-text span:last-child {
font-weight: 700;
font-size: clamp(1.13rem, 0.529vw + 1.024rem, 1.33rem);
color: var(--red);
line-height: 1;
}

.header__description {
grid-column: 2 / 3;
font-size: 0.875rem;
color: var(--lightgraytext);
}
.header__description a {
color: var(--red);
text-decoration: underline;
}
.header__description a:hover {
text-decoration: none;
}

.header__description p {
max-width: 550px;
}

.header__controls {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 1rem;
}

.header__control-link svg {
width: 24px;
height: 24px;
fill:var(--black);
}

.header__control-link:hover svg {
fill:var(--red);
}

.header__control-btn {
color: var(--black);
}

.header__burger-btn {
display: none;
background: none;
border: none;
cursor: pointer;
z-index: 1002;
}
.header__burger-btn span {
display: block;
width: 25px;
height: 2px;
background-color: var(--black);
margin: 5px 0;
transition: all 0.3s ease-in-out;
}
.header__burger-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__burger-btn.open span:nth-child(2) { opacity: 0; }
.header__burger-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* Main layout */
.main {
padding-top: 1.9rem; /* Push content down from sticky header */
}

.main__wrapper {
display: grid;
grid-template-columns: 20.1% 1fr 24.4%;
gap: 4.3%;
align-items: start;
padding-bottom: 2rem;
}

.main__col_left,
.main__col_right {
position: sticky;
top: 110px; /* header height + some gap */
height: calc(100vh - 120px);
overflow-y: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}

.main__col_left::-webkit-scrollbar {
display: none;
}

/* Left Column - Navigation */
.nav__list_secondary {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--lightgraytext);
}

.nav__item {
margin-bottom: 0.25rem;
}

.nav__item.open {
background: var(--white);
border-radius: 0.5rem;
}

.nav__item.open .nav__link-icon {
fill:var(--red);
}

.nav__item.open .nav__link {
color: var(--red);
}

.nav__link {
display: flex;
align-items: center;
gap: 0.63rem;
padding: 0.65rem;
border-radius: 0.5rem;
font-weight: 500;
position: relative;
color: var(--black);
font-size: 0.75rem; /* 12px */
text-transform: uppercase;
}

.nav__link-icon {
fill:var(--black);
}

.nav__link:hover, .nav__item.active .nav__link {
background-color: var(--white);
}

.nav__item.active .nav__link {
color: var(--red);
}

.nav__link:hover svg path, .nav__link:hover svg rect,
.nav__item.active .nav__link svg, .nav__item.active .nav__link svg {
	fill: var(--red);
}

.nav__link svg {
width: 24px;
height: 24px;
flex-shrink: 0;
}

.nav__counter {
margin-left: auto;
background-color: var(--red);
color: var(--white);
font-size: 0.75rem;
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.nav__link_submenu::after {
content: '';
display: block;
width: 12px;
height: 12px;
margin-left: auto;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0.590088L6 5.17009L10.59 0.590088L12 2.00009L6 8.00009L0 2.00009L1.41 0.590088Z' fill='%237B7B7B'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
transition: transform 0.3s;
}
.nav__item_has-submenu.open > .nav__link_submenu::after {
transform: rotate(180deg);
}

.submenu {
display: none;
padding-left: 2.7rem;
margin-top: 0.5rem;
padding-bottom: 1rem;
padding-right: 1.25rem;
}

.nav__item_has-submenu.open .submenu {
display: block;
}

.submenu__item {
margin-bottom: 0.25rem;
}
.submenu__link {
font-size: 0.875rem; /* 14px */
text-transform: none;
font-weight: 400;
color: var(--black);
padding: 0.3rem 0;
display: inline-block;
position: relative;
}

.submenu__item_a .submenu__link {
color: var(--red);
}

.nav__list_secondary .nav__link {
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 500;
	gap: 0;
}

.nav__footer {
margin-top: 1.3rem;
padding-top: 1.2rem;
border-top: 1px solid var(--lightgraytext);
font-size: 0.75rem;
color: var(--text-gray);
}
.nav__footer-logo {
margin-bottom: 1rem;
}
.nav__footer p {
margin-bottom: 0.7rem;
}
.nav__footer a {
color: var(--black);
text-decoration: underline;
}
.nav__footer a:hover {
text-decoration: none;
}

#blogo {
max-width: 60px;
}


/* Middle Column - Content */
.content-card {
background-color: var(--white);
border-radius: 1.875rem; /* 30px */
padding: 2rem 2rem 1.5rem 2rem;
margin-bottom: 1.25rem;
position: relative;
}

.content-card__meta {
display: flex;
gap: .5rem;
margin-bottom: 1rem;
font-size: 0.75rem;
text-transform: uppercase;
}
.content-card__category {
color: var(--red);
font-weight: 500;
position: relative;
z-index: 1;
}
.content-card__divider {
color: var(--text-gray);
}
.content-card__date {
color: var(--text-gray);
}

.content-card__title {
margin-bottom: 1rem;
}

.content-card__title-link {
	text-decoration: none;
	color: var(--black);
}

.content-card__title-link::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0; /* 2. Stretches the link to cover the entire card, sitting below other interactive elements. */
}

.content-card__description {
margin-bottom: 1.5rem;
line-height: 1.5;
max-width: 90%;
color: var(--graytext);
}

.content-card__image-wrapper {
border-radius: 2rem;
overflow: hidden;
margin-bottom: 1.5rem;
}

.content-card__image-wrapper img {
width: 100%;
}

.content-card__info {
display: flex;
gap: 1.5rem;
font-size: 0.875rem;
color: var(--lightgraytext);
text-transform: uppercase;
}

.content-card__info span {
display: flex;
align-items: center;
align-content: center;
gap:0.3rem;
}

.content-card__info-icon {
width: 1.25rem;
height: 1.25rem;
}

/* Right Column - Banner */
.banner {
background-color: var(--red);
color: var(--white);
border-radius: 1.875rem; /* 30px */
padding: 2rem;
display: block;
}

.banner:hover {
color: initial;
}

.banner__title {
margin-bottom: 1rem;
}

.banner__text {
line-height: 1.4;
margin-bottom: 2rem;
}

.banner__visual {
display: flex;
justify-content: center;
align-items: center;
}
.banner__visual-circle {
width: 150px;
height: 150px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
	.banner {
	width: 100%;
	}
	.banner__visual-circle {
	display: none;
	}
	
	.banner__text {
	margin-bottom: 0;
	}
}

.main__col_content { min-width: 0; }
.main__col_content-title {margin-bottom: 2rem;}

/* Responsive */
@media (max-width: 1200px) {
.header__wrapper {
display: flex;
justify-content: space-between;
gap: 1.5rem;
}
.main__wrapper {
grid-template-columns: 280px 1fr;
gap: 2.5rem;
grid-template-areas:
"left right"
"left content";
}
.main__col_right {
position: static;
height: auto;
grid-area: right;
}
.main__col_content { grid-area: content; }
.main__col_left {
	grid-area: left;
	height: calc(100vh - 120px);
}
}

@media (max-width: 992px) {
.header__description {
display: none;
}
.header__controls {
display: none;
}
.header__burger-btn {
display: block;
z-index: 1002;
}

.main__wrapper {
display: flex;
flex-direction: column;
padding: 0;
max-width: 100vw;
}
.main__col_left {
position: fixed;
left: -100%;
top: 0;
width: 300px;
height: 100%;
z-index: 999;
background-color: var(--white);
transition: left 0.3s;
overflow-y: auto;
padding: 1.5rem;
padding-top: 6rem; /* space for header */
}
.main__col_left.open {
left: 0;
}
.main__col_content {
order: 2;
}
.main__col_right {
//margin-bottom: 1.5rem;
order: 1;
width: 100%;
}
}

/* Article Constructor Styles */
.article-constructor {
--article-block-gap: 2rem;
display: flex;
flex-direction: column;
overflow: hidden; /* Prevents children from breaking the layout */
background: var(--white);
border-radius: 1.875rem;
padding: 2rem;
}

@media (max-width:992px) {
	.article-constructor, .content-card {
	padding-left: 1rem;
	padding-right: 1rem;
	}
}

.article-block {
margin-bottom: var(--article-block-gap);
}
.article-block:last-child {

}

/* Specific Block Styles */

/* 1. Breadcrumbs */
.article-breadcrumbs {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--lightgraytext);
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.article-breadcrumbs a {
color: var(--red);
}

/* 2. H1 */
.article-h1 {
font-size: 2.25rem; /* Larger for articles */
line-height: 1.2;
word-break: break-word; /* Fix for long words on mobile */
}

/* 4. Meta info */
.article-meta {
display: flex;
gap: 1.5rem;
font-size: 0.875rem;
color: var(--lightgraytext);
text-transform: uppercase;
}

.article-meta span {
display: flex;
align-items: center;
align-content: center;
gap: 0.3rem;
}

/* 5. Author */
.article-author {
display: flex;
align-items: center;
gap: 1.5rem;
border-top: 1px solid var(--red);
border-bottom: 1px solid var(--red);
padding: 1.5rem 0;
}
.article-author img {
width: 80px;
height: 80px;
border-radius: 50%;
}
.article-author__name {
font-size: 1.25rem;
color: var(--red);
margin-bottom: 0.5rem;
}
.article-author__role {
font-size: 0.75rem;
color: var(--lightgraytext);
text-transform: uppercase;
}

/* 6, 11, 14. Headings H2-H4 */
.article-h2, .article-h3, .article-h4 {
line-height: 1.3;
}

/* 7, 9, 15. Paragraph */
.article-p {
margin-bottom: 1rem;
}
.article-p p {
font-size: 1rem;
line-height: 1.7;
margin-bottom: 1rem;
}

.article-intro p, .article-intro {
font-size: 1.25rem;
line-height: 1.5;
}

/* 8. Definition Block */
.article-definition {
border: 1px solid var(--red);
padding: 1.5rem;
}
.article-definition strong {
display: block;
font-size: 1.25rem;
font-weight: 400;
}

.article-definition p {
font-style: normal;
font-size: 1rem;
line-height: 1.6;
color: var(--red);
}

/* 10. Image with caption */
.article-figure {

}
.article-figure img {
border-radius: 20px;
width: 100%;
}
.article-figure__caption {
padding-top: 1rem;
font-size: 0.875rem;
line-height: 1.5;
}

.article-figure__caption strong {
font-size: 1.13rem;
display: block;
font-weight: 400;
}

/* 12. Unordered List */
.article-ul, .article-p ul {
padding-left: 1.5rem;
}
.article-ul li, .article-p li {
list-style-type: disc;
margin-bottom: 0.75rem;
font-size: 1rem;
line-height: 1.7;
}

/* 13. Attention Block */
.article-attention {
background-color: #FFF4F4;
border: 1px solid var(--red);
border-radius: 0;
padding: 1.5rem;
color: var(--red);
}
.article-attention__title {
font-weight: 400;
margin-bottom: 0.5rem;
color: var(--red);
font-size: 1.25rem;
}
.article-attention p {
line-height: 1.6;
color: var(--red);
}

/* 16. Table */
.article-table-wrapper {
/* New robust solution for overflow */
display: grid;
grid-template-columns: minmax(0, 1fr);
overflow-x: auto;
position: relative;
}

.article-table {
width: 100%;
border-collapse: collapse;
min-width: 600px; /* ensure table is wide enough to show scroll */
}
.article-table th, .article-table td {
border: 1px solid #E0E0E0;
padding: 0.75rem 1rem;
text-align: left;
font-size: 0.9rem;
line-height: 1.5;
}
.article-table thead {
background-color: #F9F9F9;
}
.article-table th {
font-weight: 700;
}

/* 16. Table */
.article-table-wrapper {
/* New robust solution for overflow */
display: grid;
grid-template-columns: minmax(0, 1fr);
overflow-x: auto;
position: relative;
}

.article-table-wrapper::after {
	content: '';
	position: sticky; /* <-- Changed from absolute to sticky */
	right: 0; /* <-- Ensures it sticks to the right edge */
	top: 0;
	bottom: 0;
	width: 50px;
	background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
	pointer-events: none; /* Allows clicking through the gradient */
}


/* 17. Quote Block */
.article-quote {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border-top: 1px solid var(--red);
	border-bottom: 1px solid var(--red);
	padding: 2rem 0;
}

.article-quote__text {
	font-size: 1.5rem;
	line-height: 1.4;
	color: var(--red);
}

.article-quote__author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.article-quote__author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.article-quote__author-name {
	font-weight: 500;
	font-size: 1.25rem;
	color: var(--red);
	margin-bottom: 0.25rem;
}

.article-quote__author-role {
	font-size: 0.875rem;
	color: var(--graytext);
	text-transform: uppercase;
}

/* 18. Swiper Gallery */
.article-gallery {
	/* Flexbox Fix: Allows the gallery to shrink correctly inside a flex container. */
	min-width: 0; 
	
	/* Ensures Swiper calculates its size correctly and doesn't overflow. */
	position: relative;
	overflow: hidden; 
	
	width: 100%;
	max-width: 800px; /* Example max-width */
	user-select: none;
}

/* Main images slider */
.article-gallery__main {
	width: 100%;
	height: auto;
	border-radius: 30px;
	margin-bottom: 0.75rem;
	aspect-ratio: 16 / 9; 
}


.article-gallery__main .swiper-slide {
	/* Ensures slides don't have a default minimum size that could cause issues. */
	flex-shrink: 0; 
	width: 100%;
}

.article-gallery__main .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Styles for navigation arrows */
.article-gallery__main .swiper-button-next,
.article-gallery__main .swiper-button-prev {
	color: #fff;
	background-color: rgba(0, 0, 0, 0.3);
	width: 44px;
	height: 44px;
	border-radius: 50%;
}
.article-gallery__main .swiper-button-next:after,
.article-gallery__main .swiper-button-prev:after {
	font-size: 1.2rem;
	font-weight: 900;
}

/* Thumbnail navigation slider */
.article-gallery__thumbs {
	height: 100px;
	box-sizing: border-box;
	padding: 10px 0;
}

.article-gallery__thumbs .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.5;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.article-gallery__thumbs .swiper-slide:hover {
	opacity: 0.8;
}

.article-gallery__thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.article-gallery__thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

/* 19, 21. Note Blocks (Green, Orange) */
.article-note {
	padding: 1.5rem;
	border: 1px solid;
	font-size: 1rem;
	line-height: 1.6;
}
.article-note_green {
	background-color: var(--green-light);
	border-color: var(--green-dark);
}

.article-note_green * {
color: var(--green-dark);
}

.article-note_orange {
	background-color: var(--orange-light);
	border-color: var(--orange-dark);
}

.article-note_orange * {
color: var(--orange-dark);
}

.article-note strong {
display: block;
font-size: 1.25rem;
font-weight: 400;
}

/* 20. Video Block */
.article-video iframe {
border-radius: 1.875rem;
overflow: hidden;
aspect-ratio: 16/9 !important;
height: auto !important;
}

.article-video__player {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
	background-color: var(--black);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 1rem;
}
.article-video__player img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-video__title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}
.article-video__meta {
	font-size: 0.875rem;
	color: var(--lightgraytext);
}

/* 22. Button */
.article-button-wrapper {
	text-align: center;
}
.btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	transition: background-color 300ms, color 300ms;
	cursor: pointer;
}
.btn_red {
	background-color: var(--red);
	color: var(--white);
	border: 1px solid transparent;
}
.btn_red:hover {
	background-color: var(--white);
	color: var(--red);
	border-color: var(--red);
}
.btn_small {
	padding: 0.5rem 1.5rem;
	font-size: 0.875rem;
}

/* 23. Sponsor Block */
.article-sponsor {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-color: var(--white);
	padding: 2rem;
	border-radius: 30px;
	border: 1px solid #E0E0E0;
}
.article-sponsor__info {
	display: flex;
	flex-direction: column;
}
.article-sponsor__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--graytext);
	margin-bottom: 0.5rem;
}
.article-sponsor__title {
	font-size: 1.5rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.article-sponsor__info p {
	color: var(--graytext);
	margin-bottom: 2rem;
	max-width: 300px;
}
.article-sponsor__contacts {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.article-sponsor__contacts a {
	font-size: 1.25rem;
	color: var(--red);
	font-weight: 500;
	text-decoration: none;
}
.article-sponsor__contacts a:hover {
	color: var(--black);
}
.article-sponsor__logo {
	flex-shrink: 0;
}

/* 24, 25. Event/Live Card */
.article-card-event {
	display: flex;
	background-color: var(--gray);
	border-radius: 30px;
	overflow: hidden;
	padding: 2rem;
	gap: 2rem;
	align-items: center;
}
.article-card-event__image {
	flex-shrink: 0;
	width: 40%;
}
.article-card-event__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
}
.article-card-event__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 60%;
}
.article-card-event__meta {
	font-size: 0.875rem;
	color: var(--red);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.article-card-event__title {
	font-size: 1.5rem;
	line-height: 1.3;
	margin-bottom: 1.5rem;
}
.article-card-event__countdown {
	margin-bottom: 1.5rem;
}
.article-card-event__countdown-label {
	font-size: 0.875rem;
	color: var(--graytext);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.article-card-event__countdown-timer {
	font-size: 2rem;
	font-weight: 500;
	color: var(--red);
	line-height: 1;
}
.article-card-event__countdown-timer span {
	font-size: 1rem;
	font-weight: 400;
	color: #D9D9D9;
	text-transform: uppercase;
}
.article-card-event_live .article-card-event__meta,
.article-card-event_live .article-card-event__countdown-timer {
	color: #007BFF;
}

/* 26. Related Article Card */
.article-card-related {
	display: flex;
	gap: 1.5rem;
	border-radius: 30px;
	align-items: center;
}
.article-card-related__image {
	flex: 0 0 150px;
}
.article-card-related__image img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 20px;
}
.article-card-related__info {
	display: flex;
	flex-direction: column;
}
.article-card-related__meta {
	font-size: 0.875rem;
	color: var(--red);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.article-card-related__title {
	font-size: 1.13rem;
	line-height: 1.3;
}

/* 27. Accordion */
.article-accordion__title {
	margin-bottom: 1rem;
}
.article-accordion__item {
	border-bottom: 1px solid #E0E0E0;
}
.article-accordion__item:first-of-type {
	border-top: 1px solid #E0E0E0;
}
.article-accordion__header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	font-size: 1.125rem;
	font-weight: 500;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
}
.article-accordion__icon {
	width: 16px;
	height: 16px;
	position: relative;
	transition: transform 300ms;
}
.article-accordion__icon::before,
.article-accordion__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: var(--black);
	transform: translate(-50%, -50%);
	transition: transform 300ms;
}
.article-accordion__header.active .article-accordion__icon {
	transform: rotate(180deg);
}
.article-accordion__header .article-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.article-accordion__header.active .article-accordion__icon::after {
opacity: 0;
}

.article-accordion__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 300ms ease-out, padding 300ms ease-out;
	padding: 0;
}
.article-accordion__content p {
	padding-bottom: 1.5rem;
	line-height: 1.7;
}

/* 28. File Download */
.article-download {
	border: 1px solid var(--black);
}
.article-download:hover {
	border: 1px solid var(--red);
}
.article-download__link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	text-decoration: none;
}
.article-download__icon {
	color: var(--red);
}
.header__logo-icon-src {
	width: 1.63rem;
	height: 2.06rem;
	fill:var(--black);
}
.article-download:hover .header__logo-icon-src {
	fill:var(--red);
}
.article-download__title {
	font-weight: 500;
}
.article-download__meta {
	font-size: 0.63rem;
}



@media (max-width: 768px) {
	.article-sponsor, .article-card-event, {
		flex-direction: column;
	}
	.article-card-event__image img {
		width: 100%;
		height: 150px;
	}
}

.load-more {
cursor: pointer;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.load-more-mini {
justify-content: flex-end;
}

.load-more-mini span {
text-decoration: underline;
font-size: 0.88rem;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}

.load-more-mini:hover {
color: var(--red);
}

.load-more-mini:hover span {
text-decoration: none;
color: var(--red);
}

.load_more-icon {
width: 1.81rem;
aspect-ratio: 29 / 40;
transition: 300ms;
}

.load-more:hover .load_more-icon {
transform: rotate(35deg);
fill:var(--red);
}

.load_more-text {
font-size: 0.88rem;
width: 100%;
text-align: center;
transition: 300ms;
margin-top: 0.63rem;
text-decoration: underline;
}

.load-more:hover .load_more-text {
text-decoration: none;
}

.load-more:hover .load_more-text {
color: var(--red);
}

.fblc__faq {
border: none;
border-radius: 0;
border-bottom: 1px solid var(--black);
width: 100%;
}

.sp-accordion-title {
font-size: 1.13rem;
//text-transform: uppercase;
padding: 0;
border-left: none;
border-right: none;
color: var(--black);
border-top: 1px solid var(--black);
padding-top: 1.25rem;
padding-bottom: 1.25rem;
}

.fblc__faq-body {
padding: 0;
padding-bottom: 1rem;
}

.fblc__faq-body p {
font-size: 1rem;
padding-bottom: 0;
}

.fblc__faq-body p span {
opacity: .4;
}

.article-ol-custom ol {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: custom-counter;
	display: grid;
	/* Set to 2 columns by default for desktop */
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 2rem;
}

.article-ol-custom li {
	position: relative;
	padding-top: 5rem;
	line-height: 1.5;
	font-size: 1.125rem;
	color: var(--red);
	border-bottom: 1px solid var(--red);
	padding-bottom: 2rem;
}

.article-ol-custom li::before {
	counter-increment: custom-counter;
	content: "0" counter(custom-counter);
	position: absolute;
	top: 0;
	left: 0;
	font-size: 5rem;
	font-weight: 300;
	color: var(--red);
	line-height: 1;
	width: 100%;
	padding-bottom: 1rem;
}

/* Media query for screens smaller than 990px */
@media (max-width: 990px) {
	.article-ol-custom ol {
		/* Switch to 1 column on smaller screens */
		grid-template-columns: 1fr;
	}
}

.article-tags ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.article-tags li {
	position: relative; /* Establishes positioning context for the ::before element */
	background-color: var(--red);
	color: #fff;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 500;
	/* Adjust padding to make space for the icon */
	padding: 0.6rem 1.2rem 0.6rem 2.5rem; 
}

.article-tags li::before {
	content: "";
	position: absolute;
	/* Position the icon inside the left padding */
	left: 0.6rem;
	top: 50%;
	transform: translateY(-50%); /* Center vertically */

	/* White circle styles */
	width: 1.4em;
	height: 1.4em;
	background-color: #fff;
	border-radius: 50%;

	/* SVG checkmark as a background image */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23DA352C'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	background-size: 65%;
	background-repeat: no-repeat;
	background-position: center;
}

/* --- Consultant Card --- */
.consultant-card {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	border-top:1px solid var(--gray);
	padding-top: 1.8rem;
}

.consultant-card__avatar {
	flex-shrink: 0; /* Prevents the avatar from shrinking */
}

.consultant-card__avatar img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.consultant-card__info {
	flex: 1;
}

.consultant-card__name {
	margin: 0 0 0.5rem 0;
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--dark-text);
}

.consultant-card__bio {
	margin: 0 0 1rem 0;
	font-size: 0.875rem;
	color: var(--gray-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.consultant-card__diagnosis {
	margin: 0 0 1.5rem 0;
	font-size: 1rem;
	color: var(--dark-text);
}

.consultant-card__diagnosis a {
	color: var(--dark-text);
	text-decoration: underline;
	text-decoration-color: #e0e0e0;
	transition: text-decoration-color 0.3s;
}

.consultant-card__diagnosis a:hover {
	text-decoration-color: var(--red);
}


.consultant-card__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.btn--secondary {
	background-color: transparent;
	color: var(--red);
}
.btn--secondary:hover {
	background-color: #fcebe9;
}


/* --- Modal Styles --- */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	
	/* Hidden by default */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0s 0.3s;
	z-index: 1000;
}

.modal.active {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease;
}

.modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}

.modal__content {
	position: relative;
	background-color: #fff;
	padding: 2.5rem; /* Increased padding */
	border-radius: 30px; /* Matched to main content blocks */
	max-width: 570px; /* Reduced max-width for consistency */
	width: 90%;
	z-index: 1001;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.modal.active .modal__content {
	transform: scale(1);
}

.modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 2rem;
	color: #aaa;
	cursor: pointer;
	line-height: 1;
}

.modal__title {
	margin-top: 0;
	margin-bottom: 1rem;
	color: var(--dark-text);
}

.modal__content p {
	line-height: 1.6;
	color: var(--gray-text);
}

.article-detail__share {
background: var(--red);
border-radius: 1.88rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 2rem;
margin-top: 3rem;
}

.article-detail__share-body {

display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
}

.article-detail__share-body .ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__badge {
background: transparent !important;
}

.article-detail__share-title {
color: var(--white);
font-size: 1.5rem;
width: 100%;
margin-bottom: 0.63rem;
}

.article-detail__share-body-copy {
color: var(--white);
text-decoration: underline;
text-transform: uppercase;
margin-left: 1.88rem;
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
cursor: pointer;
}

.article-detail__share-body-copy:hover {
text-decoration: none;
}

.article-detail__share-pic {
position: relative;
width: 35%;
}

.article-detail__share-pic-src {
position: absolute;
width: 18.75rem;
top:-6rem;
}

.search-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
z-index: 2000;
display: none;
}

.search-popup.is-open {
display: block;
}

.search-popup__overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.search-popup__content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
max-width: 650px;
}

.search-popup__close {
position: absolute;
top: 1.3rem;
right: 2.5rem;
background: none;
border: none;
cursor: pointer;
z-index: 2;
}

.search-popup__close-icon {
width: 0.81rem;
height: 0.81rem;
}

.search-popup__close:hover .search-popup__close-icon {
fill:var(--red);
}

.search-popup__input-wrap {
position: relative;
}

.search-popup__input {
width: calc(100% - 2.5rem);
padding: 0 1.25rem;
display: flex;
height: 3.25rem;
border-radius: 3.13rem;
outline: none;
background: var(--white);
}

.search-popup__input:focus {
border-color: var(--black);
}

.search-popup__input-icon {
position: absolute;
top: 50%;
right: 1rem;
transform: translateY(-50%);
width: 1.06rem;
height: 1.06rem;
}

.search-popup__results {
background: var(--white);
max-height: 80vh;
overflow-y: auto;
border-radius: 1.25rem;
}

.search-popup__result-item {
padding: 0.63rem 1rem;
border-bottom: 1px solid #eee;
}

.search-popup__result-link {
color: #999999;
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
text-decoration: underline;
}

.search-popup__result-link b {
color: var(--black);
font-weight: 400;
}

.search-popup__result-item p {
color: #999999;
}

.search-popup__result-item p b {
color: var(--black);
font-weight: 400;
}

.search-popup__no-results {
padding: 0.5rem 1.25rem;
}

.search-popup__show-more {
display: block;
margin: 1rem auto;
padding: 0.5rem 1rem;
background-color: var(--red);
color: white;
border: none;
border-radius: 2.5rem;
cursor: pointer;
font-size: 1rem;
}

.search-popup__show-more:hover {
background-color: var(--dark-red);
}
/* End */


/* Start:/css/swiper-bundle.min.css?175889546816466*/
/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/css/reset.css?17588954683865*/
/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
html,
body,
p,
div,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}


ul {
  list-style-type: none;
}
    input:not([type=checkbox]):not([type=radio]),
    textarea, 
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }

input,
label,
select,
button,
textarea
{
	margin:0;
	border:0;
	padding:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	line-height:1;
	
	/* Browsers have different default form fonts */
	font-size:14px;
}

/* Remove the stupid outer glow in Webkit */
input:focus
{
	outline:0;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea
{
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select
{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Text Inputs
-----------------------------------------------*/

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week]
{
}

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio]
{
	width:13px;
	height:13px;
}

/* File Uploads
-----------------------------------------------*/

input[type=file]
{

}

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type=search]
{
	-webkit-appearance:textfield;
	-webkit-box-sizing:content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration
{
	display:none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"]
{
	/* Fix IE7 display bug */
	overflow:visible;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button
{	
	padding:0;
	border:0;
	background:none;
}

/* Textarea
-----------------------------------------------*/

textarea 
{
	/* Move the label to the top */
	vertical-align:top;
	
	/* Turn off scroll bars in IE unless needed */
	overflow:auto;
}

/* Selects
-----------------------------------------------*/

select
{

}

select[multiple] 
{
	/* Move the label to the top */
	vertical-align:top;
}
/* End */
/* /fonts/fonts.css?1758895468706 */
/* /css/style.css?175889546830890 */
/* /css/swiper-bundle.min.css?175889546816466 */
/* /css/reset.css?17588954683865 */
