/* default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    margin: 10px auto 20px;
}

button {
    border: 0;
    outline: none;
    background: transparent;
}

/* end default style */

/************************* main style *************************/
body {
    background: #000000;
    font-family: Arial, Helvetica, sans-serif;
    color: #fafafa;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hidden {
    overflow-y: hidden;
}

main{
    flex: 1;
}

.container {
    max-width: 1090px;
    width: 100%;
    margin: 0 auto;
}

/*::::::::::::::::::::: header ::::::::::::::::::::::::*/


.header-top {
    height: 60px;
}

.header-fixed {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 100px;
    background: #2d1d34;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.header-wrapper {
    display: flex;
    align-items: center;
    gap: 100px;
    flex: 1;
}

.logo {
    display: block;
    width: 129px;
    padding: 5px 0 5px 0;
    background: url(../img/header-logo.svg) no-repeat top left;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
}

.logo span {
    display: block;
}

.nav-burger {
    display: none;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.nav-item {
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.nav-item:hover {
    color: #1ACA3B;
}

.header-links {
    display: flex;
    gap: 16px;
}

.header-links a {
    width: 161px;
    padding: 14px 0;
    text-align: center;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    transition: .2s linear;

}

.header-links a:first-child {
    background: linear-gradient(180deg, #fe7eff 0%, #511b63 100%);
}

.header-links a:last-child {
    background: linear-gradient(180deg, #29e3b1 0%, #00799c 100%);
}

.header-img {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 53px;
}

.header-bottom {
    background: url(../img/background.png) no-repeat center;
    background-size: cover;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.header-sliders {
    border-radius: 16px;
    background: #5f1f38;
    padding: 9px 55px 12px;
}

.header-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 126px;
    margin: 0 auto;
}

.slider-img {
    width: 54px;
    border-radius: 6px;
}

.slider-content {
    display: flex;
    flex-direction: column;
}

.slider-content span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #f2f2f2;
}

.slider-content span:nth-child(2) {
    font-weight: 700;
    color: #1ACA3B;
}


.btn-slick {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.btn-prev {
    left: 16px;
}

.btn-next {
    right: 16px;
}

/* end header */

.article {
    padding: 25px 20px 0;
}

.article p {
    margin-bottom: 20px;
}

/* end nav */

h1 {
    margin: 10px 0 35px;
    font-weight: 700;
    font-size: 46px;
    line-height: 60px;
    color: #FFFFFF;
    text-align: center;
}

.article p a {
    color: #5ABCDA;
}

.article p a:hover {
    color: #4CE2C7;
}

.article p a:visited {
    color: #B4E2F0;
}

.article-content {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    gap: 24px;
}

.content-text {
    display: flex;
    flex-direction: column;
    max-width: 556px;
    width: 100%;
}

.article-img {
    width: 400px;
    padding-bottom: 24px;
}

/* end h1 */

h2 {
    margin: 30px 0 30px;
    font-weight: 600;
    font-size: 36px;
    line-height: 50px;
    color: #FFFFFF;
    text-align: center;
}

.content-text {
    display: flex;
    flex-direction: column;
    max-width: 556px;
    width: 100%;
}

.content-text ul {
    list-style: disc;
    margin-left: 40px;
    line-height: 32px;
    padding-bottom: 20px;
}

/* end h2 */

h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    color: #FFFFFF;
    margin: 25px;
    text-align: center;
}

ol {
    margin-left: 40px;
}

ol li {
    line-height: 32px;
}

.table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    display: grid;
    grid-template-rows: auto;
}

.table tr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #F2F2F2;
}

.table td {
    line-height: 26px;
    letter-spacing: -0.408px;
    color: #ECECEC;
    padding: 12px 10px;
    word-break: break-all;
}

.table:not(:last-child) {
    margin: 70px 0;
}

.table tr:nth-child(odd) {
    background: #202531;
}

.table tr:nth-child(even) {
    background: #161C29;
}

.table tr td:not(:last-child) {
    border-right: 1px solid #000;
}

.table-1 tr:first-child {
    background: #53565E;
}

.table-2 tr {
    grid-template-columns: 220px 1fr 1fr;
}

.table-3 tr {
    grid-template-columns: 284px 1fr;
}

.table-3 td {
    padding: 12px 10px;
    letter-spacing: -0.408px;
    word-break: break-all;
}

.table-3 tr td:first-child {
    font-weight: 700;

}

/* end main */

.footer {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 40px;
}

.footer span {
    font-size: 12px;
    line-height: 18px;
    color: #B5B5B5;
}

.arrow-btn-up{
    width: 34px;
    height: 34px;
    background-image: url(../img/up.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    z-index: -1;
    bottom: 45px;
    right: 10px;
    opacity: 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.arrow-btn-up.btn-visible {
    opacity: 1;
    z-index: 1;
    background-image: url(../img/up-active.svg);
}
