*::-webkit-scrollbar {
    width: 10px;
    background-color: #5B5B5F;
  }
  
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000;
	border: 1px solid #ccc;
  }
  
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
    border-radius: 10px;
    background-color: #f9f9fd;
}

*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	width: 100%;
	font-size: 100%;
	line-height: 1.4;
	font-size: 20px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color: #181D23;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;color: #fff;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;width: 100%;}

h2,h3,h4,h5,h6{font-size:inherit;font-weight: 700;color:#CF2E2E;}
/*--------------------*/

h1 {
    margin-bottom: 20px;
    font-size: 48px;
    color: #CF2E2E;
    border-radius: 6px;
}

h2{
    font-size: 36px;
}

h3{
    font-size: 30px;
}

section{
    margin: 40px 0;
}

section.faq__box {
    margin: 0; 
}
.container{
	max-width: 1890px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
}

.header {
    position: sticky;
    top: 0;
    z-index: 5;
    background-color: #111111;
}

.header__logo img{
    width: 100%;
}

.header__content {
    display: flex;
	justify-content: space-between;
	padding: 10px 0;
    position: relative;
    z-index: 2;
}

.header__logo {
    display: flex;
    align-items: center;
    max-width: 120px;
    width: 100%;
}

.header__button_box{
	display: flex;
	align-items: center;
	gap: 20px;
}

.header__nav {
	padding: 20px 0;
    display: flex;
    gap: 30px;
}

.menu-header{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
    height: 100%;
}

.menu-header li a{
	font-size: 20px;
}

.header__button_link {
    background: #cf2e2e;
    padding: 10px 20px;
    border-radius: 16px;
    transition: ease .3s box-shadow;
    font-weight: 500;
    text-transform: uppercase;
    animation: 1.6s infinite pulse;
}

.login_header_button {
    background: transparent;
    border: 1px solid #3a435a;
}

.header__button_link:hover{
	box-shadow: 0 0 10px 0 #cf2e2e inset, 0 0 10px 4px #cf2e2e;
}

.login_header_button:hover{
	background: #3f4960;
}


.menu__btn, .input__burger{
	display: none;
}

@media(max-width:992px){
    .header__button_box_mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 40px;
    }

#menu__toggle {
	opacity: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 28px;
  right: 40px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 6;
  border: 1px solid #FFFFFF14;
  background-color: #191919;
  border-radius: 8px;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
	display: block;
	position: absolute;
	width: 15px;
	height: 2px;
	background-color: #FFFFFF;
}
.menu__btn > span::before {
	content: '';
	top: -5px;
}
.menu__btn > span::after {
	content: '';
	top: 5px;
}

.menu__box {
    z-index: 5;
    position: fixed;
    visibility: hidden;
    top: -150%;
    left: 0;
    width: calc(100vw);
    padding: 80px 0;
    list-style: none;
    text-align: center;
    background-color: #090909CF;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.menu-header li{
  padding: 10px 0;
  border-radius: 5px;
}

.menu__item {
	display: block;
	padding: 12px 24px;
	color: #333;
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
}
.menu__item:hover {
	background-color: #CFD8DC;
}
#menu__toggle:checked ~ .menu__btn > span {
	transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
	top: 0;
	transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
	visibility: visible;
	top: 0;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
	transition-duration: .25s;
}
.menu__box {
	transition-duration: .25s;
}
.menu__item {
	transition-duration: .25s;
}

.menu-header{
	flex-direction: column;
    gap: 0;
}

.menu-header-menu-container{
    margin-bottom: 20px;
}

.footer__nav_menu .current_page_item {
    background-color: transparent;
}

.header__button_box_mobile a{
    width: fit-content;
}
}

.content__wrapper_box ul li{
	list-style: disc;
}

.content__wrapper_box li{
	margin: 8px 0 8px 20px;
}

.content__wrapper_box ol{
    counter-reset: item;
}

.content__wrapper_box ol li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    counter-increment: item;
}
.content__wrapper_box ol li:before {
    content: counter(item);
    display: flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffb805;
    border: 1px solid;
    border-radius: 50%;
    flex: 0 0 27px;
}

.content__wrapper_box p{
	margin: 8px 0;
}

.content__wrapper_box h2, .content__wrapper_box h3{
	margin: 18px 0 24px 0;
}

.content__wrapper_box img{
	height: 100%;
}

.breadcrumb__box{
    margin: 20px 0;
}

.breadcrumb__box .aioseo-breadcrumbs span a{
    color: #dd9d3b;
}

.main {
    margin-top: 20px;
}

.content__wrapper_box table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
	border-collapse: separate;
}
.content__wrapper_box table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #EDEDED;
	font-size: 14px;
	border-top: 1px solid #ddd;
}
.content__wrapper_box table tr th:first-child, .content__wrapper_box table tr td:first-child {
	border-left: 1px solid #ddd;
}
.content__wrapper_box table tr th:last-child, .content__wrapper_box table tr td:last-child {
	border-right: 1px solid #ddd;
}
.content__wrapper_box table thead tr th:first-child {
	border-radius: 20px 0 0 0;
}
.content__wrapper_box table thead tr th:last-child {
	border-radius: 0 20px 0 0;
}
.content__wrapper_box table tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}

.content__wrapper_box table tbody tr:nth-child(odd) {
    background: rgba(207,46,46,.1);
    color: #fff;
}

.content__wrapper_box table tbody tr:nth-child(even) {
    background: #0a192f;
    color: #fff;
}

.content__wrapper_box table tbody tr:nth-child(even) a {
    color: #000;
}

.content__wrapper_box table tbody tr:last-child td{
	border-bottom: 1px solid #ddd;
}
.content__wrapper_box table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 20px;
}
.content__wrapper_box table tbody tr:last-child td:last-child {
	border-radius: 0 0 20px 0;
}

.custom-lang-switcher-button {
    border: 1.18px solid #FFFFFF14;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 10px;
    background-color: #FFFFFF1A;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banner START */

.banner__content {
    position: relative;
    z-index: 1;
    height: 380px;
    margin: 30px 0;
    border-radius: 16px;
}

.banner__bg{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
}

.banner__bg img{
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.banner_blur {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.651);
}

.banner__player_img {
    position: absolute;
    z-index: 3;
    width: fit-content;
    height: 100%;
    top: 0;
    right: 20px;
    display: flex;
    align-items: center;
    animation: 10s linear infinite moveLeftRight;
}

@keyframes moveLeftRight {
    0%,100% {
        transform: translateX(0)
    }
    25%,75% {
        transform: translateX(10px)
    }
    50% {
        transform: translateX(-10px)
    }
}

.banner__player_img img {
    max-width: 290px;
    width: 100%;
}

.banner__text_wrapper {
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    font-weight: 700;
    padding: 30px;
}

.banner__text_title {
    font-size: 32px;
    color: #CF2E2E;
}

.banner__text_content {
    font-size: 56px;
    text-transform: uppercase;
}

.banner__button{
    background: #cf2e2e;
    padding: 10px 20px;
    border-radius: 16px;
    transition: ease .3s box-shadow;
    font-weight: 500;
    text-transform: uppercase;
    animation: 1.6s infinite pulse;
    width: fit-content;
}

.banner__button:hover{
	box-shadow: 0 0 10px 0 #cf2e2e inset, 0 0 10px 4px #cf2e2e;
}

.errore__button_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

/* Banner END */

/* 404 START */

.errore__content h1{
    text-align: center;
}

.subtitle__404{
    text-align: center;
}

.errore__player_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.errore__player_img img{
    width: 100%;
    max-width: 360px;
}

/* 404 END */


/* FAQ */
.faq_section {
    margin: 30px 0
}

.faq_repeater {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq__box {
    position: relative;
    height: auto;
    overflow: hidden
}

.faq_question {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(207,46,46,.1);
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: .4s
}

.faq_question.active {
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #2e3542
}

.faq__icon {
    width: 16px;
    height: 16px;
    fill: #fff
}

.faq__title {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 15px 0
}

.faq_answer {
    padding: 5px
}

.dropbtn_button_left,
.dropbutton_list_right {
    display: none
}

.dropbutton_list_right:checked+.right__sidebar_wrapper {
    right: 35px
}

.dropbtn_button_left:checked+.left__sidebar_wrapper {
    left: 35px
}

/* FAQ-no AMP */
.panel{
    display: none;
}
.faq_question.activeted + .panel{
    display: block;
}
/* FAQ-no AMP */
/* FAQ */


/* Review Start */

.review__repeater{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review__box {
    background: rgba(207,46,46,.1);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review__avatar {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center top;
}

.review__autor_wrapper {
    display: flex;
    gap: 30px;
}

.review__autor_info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* Review END */

.footer{
    padding: 40px 0;
    background: rgba(207,46,46,.1);
}

.footer__button_box{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.footer__button_link{
    background: #cf2e2e;
    padding: 10px 20px;
    border-radius: 16px;
    transition: ease .3s box-shadow;
    font-weight: 500;
    text-transform: uppercase;
    animation: 1.6s infinite pulse;
}
.footer__button_link:hover{
	box-shadow: 0 0 10px 0 #cf2e2e inset, 0 0 10px 4px #cf2e2e;
}

.footer__disclamer, .footer__copy{
    font-size: 16px;
    color: #d1d1d1;
}

.footer__copy{
    text-align: center;
    margin-top: 10px;
}

@media(max-width:1400px){
	
}

@media(max-width:1200px){
    html, body {
        font-size: 18px;
    }
    .hero__text_title {
        font-size: 36px;
        line-height: 1.2;
    }
    .menu-header{
        gap: 15px;
    }
    .header__button_link{
        padding: 10px;
    }
    .menu-header li a {
    font-size: 18px;
}
.header__logo img{
    max-width: 150px;
}
}

@media(max-width:992px){
    .content__wrapper_box table{
        overflow-x: scroll;
        scrollbar-color: #FFB804 #232834;
        scrollbar-width: thin;
        display: block;
    }
    .content__wrapper_box table tbody {
        display: block;
        width: max-content;
    }
}

@media(max-width:768px){
    html, body {
        font-size: 16px;
    }
    .banner__player_img {
    opacity: 0.8;
    }
}

@media(max-width:492px){
    h1{
        font-size: 32px;
    }
    .banner__text_title {
        font-size: 28px;
    }
    .banner__text_content {
        font-size: 44px;
    }
}

@media(max-width:380px){
    h1{
        font-size: 24px;
    }
    .banner__text_title {
    font-size: 24px;
    }
    .banner__text_content {
        font-size: 32px;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}