/* USER VARIABLES SECTION */

:root {
	/* --accent: orange; */
	:root {
  --black: #000;
  --white: #fff;
  --blue-main: #0B4DA2;
  --blue-dark: #062E63;
  --blue-light: #007BFF;
  --gray-light: #F8F9FB;
  --gray-text: #222;
  --accent: #7EAC2F;
  --red: #E84C3D;
  --neon: #7EAC2F;
  --pink: var(--blue-light);
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/inter-medium.woff2") format("woff2"); font-family: "inter"; font-weight: 500; font-style: normal; }
@font-face { src: url("../fonts/inter-bold.woff2") format("woff2"); font-family: "inter"; font-weight: 700; font-style: normal; }
@font-face { src: url("../fonts/big-shoulders-display-extrabold.woff2") format("woff2"); font-family: "bsd"; font-weight: 800; font-style: normal; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
/* ::selection { background-color: var(--accent); color: #fff; } */
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--textfont);
	font-size: var(--regular-text);
  font-weight: var(--textfw);
	line-height: var(--lineheight);
	color: var(--black);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}



/* UTILITIES */

.text-center {
  text-align: center!important;
}
.text-start {
  text-align: start!important;
}
.text-end {
  text-align: end!important;
}
.text-left {
  text-align: left!important;
}
.text-right {
  text-align: right!important;
}
.text-red {
  color: var(--red);
}
.bg-red {
  background-color: var(--red);
}
.bg-neon {
  background-color: var(--neon);
}
.bg-pink {
  background-color: var(--pink);
}
.bg-black {
  background-color: var(--black);
}
.text-white {
  color: var(--white);
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.position-relative {
  position: relative;
}
.vw-100 {
  width: 100vw;
}
.vh-100 {
  height: 100vh;
}

/* SPACING */

.pb-16 {
  padding-bottom: 16px;
}
.mb-16 {
  margin-bottom: 16px;
}
.py-24 {
  padding: 24px 0;
}
.me-32 {
  margin-right: 32px;
}

/* CONTENT */

h1,h2,h3,h4,h5,h6,.h2,.h3,.h4,.h5 {
	font-family: var(--headingfont);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}
h1 {
  font-size: 78px;
  line-height: 120%;
}
h2,.h2 {
  font-size: 56px;
  line-height: 130%;
}
h3,.h3 {
  font-size: 40px;
  line-height: 130%;
}
h4,.h4 {
  font-size: 24px;
  line-height: 120%;
}
h5,.h5 {
  font-size: 16px;
  line-height: 130%;
}
/* .large-text {
  font-size: 64px;
  line-height: 130%;
} */
/* .extra-large-text {
  font-size: 200px;
  line-height: 100%;
} */
hr:not([size]) {
  height: 4px;
}
hr {
  opacity: 1;
}
p {
  margin-bottom: 16px;
}
.content>* {
  margin-bottom: 26px;
}
.content h2 {
  margin-bottom: 40px;
}
.content h3 {
  margin-top: 40px;
  margin-bottom: 33px;
}
.content h4 {
  margin-top: 34px;
}
.content>*:last-child {
  margin: 0;
}
blockquote {
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  padding: 24px;
  border-top: 4px solid var(--neon);
  border-bottom: 2px solid var(--black);
}
img {
  max-width: 100%;
}
button {
  background: unset;
  border: unset;
}
table {
  background-color: rgba(255, 255, 255, 0.2);
}
table thead {
  border-top: 4px solid var(--neon);
}
tr {
  border-bottom: 2px solid var(--black);
}
table th {
  font-family: var(--headingfont);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
  line-height: 120%;
  
}
table th,
table td {
  padding: 9px 4px;
  width: calc(100% / 3);
  vertical-align: unset;
  min-width: 110px;
}
ul,
ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
ol li {
  counter-reset: line;
  counter-increment: step-counter;
}
html {
  margin-right: 0!important;
}
blockquote {
  margin-top: 32px!important;
  margin-bottom: 32px!important;
}
.content ul li,
.content ol li {
  position: relative;
  /* display: flex; */
  align-items: center;
  margin-bottom: 8px;
}
.content ul li::before {
  content: '';
  display: inline-block;
  text-align: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 7px solid var(--neon);
  margin-right: 8px;
  flex: 0 0 auto;
  position: relative;
  top: 7px;
}
ol li::before {
  content: counter(step-counter);
  font-family: var(--headingfont);
  font-size: 14px;
}
.content ol li::before {
  background: var(--neon);
  display: inline-block;
  text-align: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-right: 8px;
  flex: 0 0 auto;
}

/* .content a:has(img) {
  transition: all .3s;
}
.content a:has(img):hover {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  cursor: zoom-in;
} */

blockquote p {
  margin: 0;
}

/* LIGHTBOX  */

.content a.zoom-lightbox {
  display: block;
  position: relative;
  text-align: center;
}
.content a.zoom-lightbox img {
  position: relative;
  transition: all .3s;
  filter: brightness(60%);
}
.content a.zoom-lightbox::before  {
  content:'';
  background: url(../images/icons/icon-zoom.svg) center no-repeat;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  z-index: 1;
  pointer-events: none;
}
.content a.zoom-lightbox img:hover {
  filter: brightness(35%);
  cursor: zoom-in;
}
.lb-outerContainer {
  background-color: transparent!important;
}
.lb-dataContainer {
  position: relative;
  z-index: 999;
  padding-top: 0!important;
  padding-bottom: 10px!important;
}

/* LINKS & BUTTONS */

a {
  color: var(--black);
}
a:hover {
  text-decoration: none;
  color: var(--neon);
}
.link-white {
  color: var(--white);
}
.link-white:hover {
  text-decoration: none;
  color: var(--neon);
}
button {
  border: unset;
  background-color: unset;
  padding: 0;
}
.btn {
  font-family: var(--headingfont);
  color: var(--black);
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 800;
  font-size: 24px;
  line-height: 120%;
}
.btn:hover {
  color: var(--white);
  text-decoration: none;
}


/* BREADCRUMB */

.breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}
.breadcrumb__item::before {
  content: none;
}
.breadcrumb__item {
  font-family: var(--headingfont);
  position: relative;
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 0;
  padding-right: 4px;
}
.breadcrumb__item.active {
  opacity: .5;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb__item::after {
  content: '>';
  /* display: inline-block; */
  /* width: 8px; */
  /* height: 8px; */
  /* position: absolute; */
  top: 1px;
  right: -10px;
  margin-left: 5px;
  opacity: 1;
}
.breadcrumb__item.active::after {
  content:none;
}
.breadcrumb__item a {
  text-decoration: none;
}

/* ASIDE */
.aside-list {
  padding: 0;
  margin: 0;
}
.aside-list li {
  /* display: flex; */
  /* align-items: flex-start; */
  display: block;
  border-top: 4px solid var(--black);
  padding-top: 8px;
  margin-bottom: 25px;
}
.aside-list li::before {
  display: inline;
  /* padding-top: 5px; */
  width: unset;
  height: unset;
  margin: 0;
  background: unset;
  padding-right: 3px;
}
.aside-list li a {
  /* display: inline-block; */
  padding: 5px 0 25px;
  text-decoration: none;
}
/* .aside__btn {
  display: block;
  width: 100%;
  text-align: start;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  padding: 12px;
  color: #1F1F1F;
  background-color: var(--green);
} */

/* HEADER */

.logo {
  width: 120px;
}
.header {
  border-bottom: 4px solid var(--black);
  z-index: 1;
}
.header-inner {
  padding: 19px 0 15px;
  /* position: relative; */
}
.header-nav {
  padding: 104px 0 60px;
  position: absolute;
  left: 0;
  background: var(--white);
  width: 100%;
  border-bottom: 4px solid var(--black);
  z-index: 1;
}
.menu {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 0 30px;
}
.menu__item {
  display: block;
  width: calc(100% / 3);
}
.menu__link {
  font-family: var(--headingfont);
  display: block;
  padding-top: 32px;
  padding-bottom: 16px;
  border-top: 4px solid var(--black);
  text-transform: uppercase;
  color: var(--black);
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
}
.menu__link_active {
  border-top: 4px solid var(--neon);
}
.menu__link:hover {
  color: var(--neon);
  text-decoration: none;
}
.menu__item.active a {
  color: var(--neon);
}
.menu-btn {
  padding: 5px;
}
.menu-btn:hover img {
  filter: invert(85%) sepia(47%) saturate(859%) hue-rotate(13deg) brightness(112%) contrast(83%);
}

/* SECTIONS */

.text-shadow {
  color: var(--white);
  text-shadow: 2px 0 var(--black), -2px 0 var(--black), 0 2px var(--black), 0 -2px var(--black), 1px 1px var(--black), -1px -1px var(--black), 1px -1px var(--black), -1px 1px var(--black);
}
.text-shadow-invert {
  color: var(--black);
  text-shadow: 2px 0 var(--white), -2px 0 var(--white), 0 2px var(--white), 0 -2px var(--white), 1px 1px var(--white), -1px -1px var(--white), 1px -1px var(--white), -1px 1px var(--white);
}
.border-top {
  border-top: 4px solid var(--black);
}
.border-bot {
  border-bottom: 4px solid var(--black);
}
.block-link {
  display: block;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
  padding: 28px 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: white;
  z-index: 1;
}
.block-link__span {
  display: block;
  padding: 0 48px;
}
.block-link:hover .block-link__span {
  color: var(--neon);
  text-decoration: none;
}
.block-link__span::after {
  content:'';
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  right: -50px;
  top: 2px;
}
.block-link_scroll span::after {
  background: url(../images/icons/icon-download.svg) center no-repeat;
}
.block-link_goto span::after {
  background: url(../images/icons/icon-launch.svg) center no-repeat;
}

.block-link_scroll:hover span::after,
.block-link_goto:hover span::after {
  filter: invert(85%) sepia(47%) saturate(859%) hue-rotate(13deg) brightness(112%) contrast(83%);
}

.intro-home-header {
  padding: 200px 0;
}
.intro-home-header__title {
  margin-bottom: 35px;
  position: relative;
}
.intro-home-header__title::before {
  content:'';
  position: absolute;
  top: -114px;
  right: -10px;
  display: inline-block;
  width: 125px;
  height: 125px;
  background: url(../images/icons/icon-intro-crown.svg) center no-repeat;
}
.intro-home-header__image {
  /* width: 1045px; */
  /* height: 658px; */
  position: absolute;
  bottom: 0;
  right: 50%;
  z-index: -1;
  /* background: url(../images/intro-image.png) center no-repeat; */
}

.page-intro {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.page-intro__inscription {
  margin-top: 120px;
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--black);
  margin-bottom: 32px;
  position: relative;
}
.page-intro__inscription::before {
  content:'';
  position: absolute;
  top: -122px;
  right: calc(50% - 150px);
  display: inline-block;
  width: 300px;
  height: 120px;
  background: url(../images/decor-rays.svg) center no-repeat;
}
.page-intro__title {
  margin: 0;
}

.about-inner {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 168px;
}
.about__inscription {
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--black);
  margin-bottom: 40px;
}
.about__title {
  margin-bottom: 40px;
  font-size: 64px;
  line-height: 130%;
}
.about__desc {
  text-align: left;
  max-width: 730px;
}
.about__btn {
  position: relative;
}
.about__btn::before {
  content:'';
  position: absolute;
  top: 11px;
  left: -137px;
  display: block;
  width: 100px;
  height: 100px;
  background: url(../images/icons/icon-winding-arrow.svg) center no-repeat;
}

.articles {
  padding-top: 80px;
  padding-bottom: 45px;
}
.article-item {
  margin-bottom: 38px;
}
.article-item__top {
  margin-bottom: 24px;
}
.article-item__image {
  margin-bottom: 24px;
}
.article-item__desc {
  margin-bottom: 16px;
}
.article-item__title-link {
  text-decoration: none;
}
.article-item__title-link:hover,
.article-item__title-link:hover>* {
  color: unset;
}
.articles .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-wrap: wrap;
}
.articles .row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.articles-home {
  padding: 0;
  position: relative;
}
.articles-home::after {
  content: '';
  position: absolute;
  top: 0;
  right: calc(50% - 2px);
  display: inline-block;
  height: 100%;
  width: 4px;
  background: var(--black);
}
.articles-home article {
  position: relative;
  border-top: 4px solid var(--black);
}
.article-item-home {
  margin: 0;
}
.article-item-home__media {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.article-item-home__media_left {
  left: 0;
}
.article-item-home__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article-item-home__image_article-1 {
  background: url(../images/articles-home-01.jpg) center no-repeat;
  background-size: cover;
}
.article-item-home__image_article-2 {
  background: url(../images/articles-home-02.jpg) center no-repeat;
  background-size: cover;
}
.article-item-home__image_article-3 {
  background: url(../images/articles-home-03.jpg) center no-repeat;
  background-size: cover;
}
.article-item-home__text-featured {
  position: absolute;
  top: 77px;
  left: -50px;
  width: 711px;
  height: 200px;
  background: url(../images/word-featured.svg) center no-repeat;
}
.article-item-home__text-featured_left {
  left: unset;
  right: 60px;
}

.article-item-home {
  height: 640px;
  padding-top: 78px;
  padding-bottom: 78px;
}
.article-item__legend {
	font-family: var(--headingfont);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.date,
.article-item__date {
	font-family: var(--headingfont);
  font-weight: 800;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 14px;
}
.article-item-home__title {
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 32px;
}
.article-item-home__desc {
  color: var(--white);
  margin-bottom: 32px;
}
.article-item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 223px;
  height: 56px;
  font-family: var(--headingfont);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  line-height: 130%;
  background: url(../images/icons/icon-btn-bgi.svg) center no-repeat;
}
.article-item__btn:hover {
  color: var(--white);
}

.article-header {
  padding-top: 135px;
  padding-bottom: 122px;
  position: relative;
}
.article-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: calc(50% + 173px);
  display: inline-block;
  height: 100%;
  width: 4px;
  background: var(--black);
}
.article-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  margin-bottom: 33px;
  border-bottom: 4px solid var(--black);
}
.article-header__date {
  margin: 0;
}
.article-header__title {
  color: var(--white);
}
.article-header__media {
  position: absolute;
  top: 0;
  left: -177px;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.article-header__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/articles-home-01.jpg) center no-repeat;
  background-size: cover;
}
.article-header__text-article {
  position: absolute;
  top: 57%;
  right: calc(50% - 370px);
  width: 711px;
  height: 200px;
  background: url(../images/word-article.svg) center no-repeat;
}

.article-content {
  padding-top: 100px;
  padding-bottom: 90px;
  position: relative;
  background: linear-gradient(to left, var(--pink) calc(50% - 177px), transparent calc(50% - 177px));
  border-bottom: 4px solid var(--black);
}
.article-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% + 173px);
  display: inline-block;
  height: 100%;
  width: 4px;
  background: var(--black);
}

.advantages {
  padding-top: 160px;
  padding-bottom: 184px;
}
.advantages .container {
  position: relative;
}
.decor {
  position: relative;
}
.decor::before {
  content:'';
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 258px;
  background: url(../images/decor-top.png) top no-repeat;
}
.decor::after {
  content:'';
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 114px;
  background: url(../images/decor-bot.png) bottom no-repeat;
}
.advantages__winding-arrow {
  position: absolute;
  top: -88px;
  right: 65px;
  display: block;
  width: 100px;
  height: 100px;
  transform: rotate(180deg);
  background: url(../images/icons/icon-winding-arrow.svg) center no-repeat;
}

.contacts {
  padding-top: 100px;
}
.contacts-item {
  padding-top: 20px;
}
.contacts-item__link {
  display: block;
  padding: 45px 15px;
  color: var(--black);
  font-weight: 800;
  font-size: 40px;
  line-height: 130%;
  text-transform: uppercase;
  font-family: var(--headingfont);
}
.contacts-item__link_red {
  background: url(../images/contact-decor-red.svg) center top no-repeat;
  background-size: contain;
}
.contacts-item__link_pink {
  background: url(../images/contact-decor-pink.svg) center top no-repeat;
  background-size: contain;
}

.privacy {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(to right, var(--red) calc(50% - 176px), transparent calc(50% - 176px));
}
.privacy::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 177px);
  display: inline-block;
  height: 100%;
  width: 4px;
  background: var(--black);
}

.page404 a:hover {
  color: var(--neon);
}

.page-numbers {
  padding: 5px 12px;
  -webkit-transiton: color .3s;
  transition: color .3s;
  font-family: var(--headingfont);
  color: var(--black);
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 800;
  font-size: 24px;
  line-height: 120%;
}
.page-numbers.current {
  opacity: .5;
  text-decoration: none;
}

/* FOOTER */

.footer {
  height: 500px;
  border-top: 4px solid var(--black);
  text-align: justify;
}
.footer-inner {
  padding-top: 78px;
  padding-bottom: 84px; 
}
.footer-inner .btn:first-child {
  margin-right: 64px;
}
.footer-inner__title {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
}
.footer-inner__title_copyright {
  margin-top: 35px;
}

/* CUSTOM STYLES */
/* === FOOTER REWORK (2025 Update) === */

.footer {
  background-color: #6BA539; /* мягкий зелёный, не ядовитый */
  color: #111;
  border-top: 4px solid var(--black);
  text-align: left;
  font-family: var(--textfont);
  line-height: 1.6;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner__left {
  flex: 1 1 55%;
  min-width: 300px;
}

.footer-inner__right {
  flex: 1 1 40%;
  min-width: 250px;
  text-align: right;
}

.footer h3,
.footer h4 {
  color: #205583; /* фирменный синий 1xBet */
  font-family: var(--headingfont);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 14px;
  border-bottom: 2px solid #205583;
  display: inline-block;
  padding-bottom: 4px;
}

.footer p {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer a {
  color: #fff;
  background-color: #205583;
  padding: 6px 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  background-color: #163d61;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 10px;
}

.footer__logo img {
  max-width: 140px;
  height: auto;
}

.footer__copy {
  margin-top: 15px;
  font-weight: 600;
  font-size: 15px;
}

.footer-bottom {
  background-color: #205583;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 14px;
  padding: 12px 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
