*::-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.2;
	font-size: 18px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color: #0B1020;
	font-family: "Montserrat Alternates", 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:#fff;}
/*--------------------*/

h1{
	margin-bottom: 20px;
    font-size: 48px;
	color: #fff;
}

h2{
    font-size: 36px;
}

h3{
    font-size: 30px;
}

.container{
	max-width: 1890px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
}

.header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #070911;
}

.main{
    margin-top: 40px;
}

.header__content {
    display: flex;
	justify-content: space-between;
	padding: 10px 0;
}

.header__nav {
	padding: 20px 0;
}

.menu-header{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.menu-header li a{
	font-size: 20px;
}


.menu__btn, .input__burger{
	display: none;
}

.header__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

@media(max-width:992px){
#menu__toggle {
	opacity: 0;
}

.menu__btn {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 22px;
  right: 20px;
  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: #E5B400;
}
.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{
  width: 90%;
  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;
}
}

.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;
}

.content__wrapper_box table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
	border-collapse: collapse;
}
.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 tbody td {
    text-align: left;
    padding: 10px 15px;
    font-size: 14px;
    vertical-align: top;
    border: 1px solid #00B894;
}
.content__wrapper_box table tbody tr:nth-child(odd){
    background: #1B2238;
}

.content__wrapper_box table tbody tr:nth-child(even) {
    background: #272E43;
}


/* RATING START */

.rating__repeater {
    display: grid;
    grid-template: 1fr / 1fr 1fr 1fr 1fr;
    gap: 22px;
    margin: 60px 0;
}

.rating__box{
    background-color: #1B2238;
    padding: 8px 8px 20px 8px;
    border-radius: 10px;
}

.image__container {
    position: relative;
    border-radius: 10px;
}

.rating__position {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    background: #00B894;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.rating__stars_wrapper {
    display: flex;
    gap: 2px;
    position: relative;
}

.rating__stars_blur{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #1b2238c2;
}

.rating__starsbox {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.rating__stars_wrapper img{
    width: 17px;
}

.rating__name{
    font-weight: 600;
    font-size: 30px;
    color: #00B894;
    text-align: center;
    margin: 10px 0;
}

.rating__bonus{
    font-weight: 700;
    text-align: center;
    margin: 15px 0 20px 0;
}

.rating__button {
    display: flex;
    background: #E5B400;
    width: fit-content;
    padding: 14px 50px;
    border-radius: 10px;
    margin: 0 auto;
    color: #000000;
    font-weight: 700;
    font-size: 20px;
}

/* RATING 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 {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    background-color: #1B2238;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: .4s;
    border: 1px solid #00B894;
}

.faq__question_plus{
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    flex: 0 0 16px;
}

.faq__question_plus::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    top: 6px;
    background-color: #fff;
}

.faq__question_plus::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    right: 7px;
    background-color: #fff;
}

.faq_question.activeted {
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #2e3542
}

.faq_question.activeted .faq__question_plus::after{
    content: '';
    position: absolute;
    height: 0;
    width: 2px;
    right: 7px;
    background-color: #fff;
}

.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;
    border: 1px solid #00B894;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.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 */

.footer{
    padding: 40px 0;
    background: #070911;
}

.footer__wrapper {
    display: flex;
    gap: 120px;
    margin-bottom: 50px;
}

.footer__dmca_repeater {
    display: flex;
    gap: 60px;
}

.footer__disclamer{
    margin: 50px 0;
}

.footer__copy{
    margin-top: 50px;
}
.footer__logo{
    max-width: 280px;
}

.footer__menu{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 5px;
}

.footer__menu li a{
    font-weight: 700;
}

/* 404 START */

.errore__section{
    position: relative;
}

.errore__section::before{
    content: '';
    position: absolute;
    z-index: 2;
    width: 440px;
    height: 100%;
    top: 0;
    left: 3%;
    background-image: url('/wp-content/uploads/2025/11/errore.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.errore__content {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 70px;
}

.errore__title {
    background: linear-gradient(180deg, #FFFFFF 0%, #272E43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 350px;
    position: relative;
    z-index: 3;
    line-height: 1;
}

.errore__button {
    display: block;
    padding: 14px 50px;
    background: #E5B400;
    color: #000;
    font-weight: 700;
    width: fit-content;
    margin: 30px auto 100px auto;
    border-radius: 10px;
    position: relative;
    z-index: 3;
}

.text__box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
}

.errore__subtitle{
    font-size: 48px;
    font-weight: 600;
}

/* 404 END */

@media(max-width:1200px){
    html, body {
        font-size: 18px;
    }
    .hero__text_title {
        font-size: 36px;
        line-height: 1.2;
    }
    .rating__repeater{
        grid-template: 1fr / 1fr 1fr 1fr ;
    }
    .footer__wrapper{
        gap: 0;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .footer__dmca_repeater{
        gap: 25px;
    }
    .footer__logo {
    max-width: 260px;
    }
    .footer__disclamer{
        margin: 30px 0;
    }
    .footer__copy{
        margin-top: 30px;
    }
    .errore__content{
        flex-direction: column;
        align-items: center;
    }
    .text__box{
        align-items: center;
    }
    .errore__text, .errore__subtitle{
        text-align: center;
    }
    .errore__section::before{
        width: 65%;
        left: 18%;
        background-size: contain;
    }
    .errore__title{
        font-size: 270px;
    }
}

@media(max-width:992px){
    .content__wrapper_box table {
        overflow-x: scroll;
        scrollbar-color: #FFFFFF #272E43;
        scrollbar-width: thin;
        display: block;
    }
    .content__wrapper_box table tbody {
        display: block;
        width: max-content;
    }
    .rating__repeater{
        grid-template: 1fr / 1fr 1fr ;
    }
    h2{
    font-size: 34px;
    }

    h3{
        font-size: 28px;
    }
}

@media(max-width:768px){
    html, body {
        font-size: 16px;
    }
    .header__logo {
        display: block;
    }
    .footer__wrapper{
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    .footer__logo{
    max-width: 220px;
    }
    .footer__menu{
        padding: 0;
    }
    .footer__dmca_repeater {
        gap: 30px;
    }
    .footer__disclamer{
        margin: 20px 0;
    }
    .footer__copy{
        margin-top: 20px;
    }
    .errore__section{
        padding-top: 120px;
    }
    .errore__content {
        gap: 0;
    }
}
@media(max-width:600px){
    .rating__repeater{
        grid-template: 1fr / 1fr ;
    }
    .errore__title{
        font-size: 180px;
    }
}

@media(max-width:492px){
    h1{
        font-size: 32px;
    }
    h2{
    font-size: 28px;
    }
    h3{
        font-size: 24px;
    }
    .errore__title{
        font-size: 120px;
    }
    .errore__subtitle {
    font-size: 36px;
}
.errore__button{
    padding: 14px 30px;
}
}

@media(max-width:380px){

}