
@font-face {
    font-family: 'Tahome', sans-serif;
    src: url("fonts/Tahoma\ Regular\ font.ttf"),
        url("fonts/TAHOMA_0.TTF"),
        url("fonts/TAHOMAB0.TTF"),
        url("fonts/TAHOMABD.TTF");
}


* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-size: var(--white-color);
    box-sizing: border-box;
    font-family: 'Tahome', sans-serif;
}

:root {
    --header-bg: linear-gradient(180deg, #383838 0%, #010101 100%);
    --primary-solid: #FFC828;
    --secondary-solid: linear-gradient(-180deg, #f72424 0%, #bb1c00 100%);
    --primary-font-family: 'Tahome', sans-serif;
}

.link{
    cursor:pointer;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    background: var(--header-bg);
}


header .container{
    margin: 0 20px;
}

header .wrapper{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.header_left{
    display: flex;
    align-items: center;
    gap: 15px;
}

.heade_logo{
    width: 100px;
}

.search_bar{
    position: relative;
}

.search_bar input {
    height: 25px;
    width: 280px;
    font-size: 14px;
    font-weight: 100;
    padding-left: 30px;
    text-align: left;
    transition: all .2s linear;
    white-space: nowrap;
    outline: none;
    border: none;
    border-radius: 5px;
}


.search_bar img {
    position: absolute;
    left: 2.5%;
    top:  24%;
    width: 15px;
    height: 15px;
}

.header_right{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_right .person{
    width: 25px;
}

.header_right input{
    height: 25px;
    width: 160px;
    white-space: nowrap;
    outline: none;
    border: none;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 12px;
}

.validation{
    position: relative;
}

.validation img {
    height: 20px;
    position: absolute;
    right: 5%;
    top: 10%
}

.btn{
    background-image:var(--secondary-solid);
    padding: 2px 5px;
    line-height: 25px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn img {
    width: 15px;
    transform: translateY(1px);
}

.burger__menu {
    display: none;
}

.header_bottom{
    background-color:var(--primary-solid)
}

.header_bottom .wrapper{
    padding: 0;
}

.header_menu{
    display: flex;
    justify-content: flex-start;
}


.header_menu li {
    list-style-type: none;
    height: 100%;
    border-right: 1px solid rgba(56, 56, 56, 0.2);;
    padding: 5px 10px;
    position: relative;
}

.header_menu li:first-child{
    border-left: 1px solid rgba(56, 56, 56, 0.2);;
}

.header_menu li:hover{
    background: #ffdc7a;
    box-shadow: inset 0 0px 5px 0 rgba(83,33,33,.8);
}

.header_menu li a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

header .live{
    border: 1px solid #bb1c00;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    position: absolute;
    top: -10px;
    left: 20px;
    width: 40px;
}

.live img {
    transform: translateX(6px);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

.live span{
    background-color: #f72424;
    width: 35%;
    display: flex;
    justify-content: center;
    font-size: 12px;
    color:#fff;
}

.setting{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.setting p span{
    font-weight: 600;
}

.setting label{
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--header-bg);
    height: 100%;
    padding: 0 10px;
    color: var(--primary-solid);
    font-weight: 600;
}

label input{
    background: rgba(255,255,255,.2)
}

.setting img{
    width: 15px;
}

.main_section{
    width: 75%;
    margin: 105px auto 20px auto;
}

.main_section img{
    width: 100%;
}

.banner_section{
    display: grid;
    gap: 10px;
}

.banner_item{
    position: relative;
}

.banner_item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 1;
}

.banner_item:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
}

.banner_item:nth-child(3) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 2;
}

.banner_item:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
}

.banner_item:nth-child(5) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 3;
}

.banner_item:nth-child(6) {
    grid-column-start: 3;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 3;
}

.banner_item:nth-child(7) {
    grid-column-start: 4;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 3;
}

/* .banner_footer{
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: linear-gradient(270deg, rgba(69, 94, 104, 0) 4%, #000000 97%);
    border-bottom: 5px solid #ffb80c;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.banner_footer .title{
    flex: 1;
    font-size: 17px;
    text-indent: 10px;
    color: #fff;
    font-weight: bold;
}

.play_now {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    height: 35px;
    padding-right: 10px;
    background-color: #ffb80c;
    overflow: hidden;
}

.play_now  img{
    position: absolute;
    right: 100%;
    z-index: 100;
} */

.entrance-title {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: linear-gradient(270deg, rgba(69, 94, 104, 0) 4%, #000000 97%);
    border-bottom: 5px solid #ffb80c;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.entrance-title dt {
    flex: 1;
    font-size: 17px;
    line-height: 28px;
    text-indent: 10px;
    color: #fff;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-top: 5px;
}

.entrance-title dd {
    width: 100px;
    line-height: 30px;
    height: 100%;
    background-image: url('../img/play_now.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    text-indent: 15px;
    font-size: 15px;
    font-weight: bold;
    color: #000 !important;
    padding-top: 5px;
    padding-left: 5px;
}

.entrance-title dd:after {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background-color: #ffb80c;
    content: "";
}

.live_score{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    width: 120px;
    padding: 6px;
    background-image: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.7) 82%, rgba(0, 0, 0, 0) 100%);
}

.live_score .live{
    border: 1px solid #bb1c00;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    background-color: #fff;
    width: 70px;
}

.live_score .live img {
    width: 16px;
}

.live_score .live span{
    height: 100%;
    width: 60%;
    padding: 5px 8px;
    font-size: 14px;
    font-weight:   600;
}

.live_score ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live_score ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.live_score ul li p {
    color: #fff;
}

.live_score ul li .amount{
    color: #000;
    text-align: center;
    background-color: #fff;
    width: 20px;
    border-radius: 2px;
    padding: 1px 0;
}

.txt__section{
    padding: 10px;
    color: #000;
    font-size: 18px;
    width: 75%;
    margin: 0 auto;
}

.txt__section a{
    color: var(--primary-solid);
}

.txt__section h1 {
    font-size: 4rem;
}

.txt__section h2{
    font-size: 2.5rem;
}

.txt__section h3 {
    font-size: 1.875rem;
}

.txt__section .text__cover{
    padding: 20px;
    padding-top: 0px;
    border-radius: 5px;
    margin: 0px auto;
}

.txt__section h1, .txt__section h2, .txt__section h3{
    color: #000;
    border-radius: 10px;
    margin: 20px 0px;
    text-align: center;
}


.txt__section p {
    line-height: 26px;
}

.text__img{
    display: flex;
}

.txt__section img {
    width: 90%;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 3px solid var(--primary-solid);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

.text__img img {
    width: 250px;
    border: none;
}

.text__img div {
    padding:30px;
}

.txt__section ul, .txt__section ol {
    margin: 20px;
    font-weight: 500;
    line-height: 24px;
}

.txt__section ul p, .txt__section ol p {
    color: #000
}

table {
    border-collapse: collapse;
    margin: 25px auto;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width:  100px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

table th,
table td {
    padding: 12px 10px;
    text-align: center;
}

table tbody tr {
    border-bottom: 1px solid var(--primary-solid);
}

table tbody tr:nth-of-type(even) {
    background-color: var(--primary-solid);
    color: #000
}

footer {
    width: 75%;
    margin: 20px auto;
}


footer .wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 40px 0;
}

footer .sponsor{
    display: flex;
    width: 50%;
    margin: 0 auto;
}

footer .sponsor-logo{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 25px 0 0 25px
}

footer .sponsor img {
    width: 100%;
}

footer .descr{
    width: 80%;
    padding: 10px 20px;
    border: 1px solid #000;
    border-left: none;
    border-radius:  0 25px 25px 0px;
    font-size: 14px;
}

footer .browsers{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

footer .browsers img {
    width: 50px;
}

footer .browsers {
    text-align: center;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0px;
}

footer ul li {
    list-style-type: none;
}

footer ul li a {
    color: #000;
    opacity: .8
}

.mobile_menu{
    display: none;
}

@media(max-width: 1600px){
    footer .sponsor{
        width: 70%;
    }
}

@media(max-width: 1200px){
    header .validation,
    .live_score ul{
        display: none;
    }

    .live_score{
        width: 80px;
    }

    footer .sponsor{
        width: 100%;
    }
}

@media(max-width: 900px){
    .main_section,
    .txt__section,
    footer{
        width: 95%;
    }

    .search_bar,
    .person,
    header input,
    header .btn,
    .header_bottom{
        display: none;
    }

    .burger__menu {
        display: block;
        position: relative;
        width: 65px;
        height: 35px;
        cursor: pointer;
        margin: 0px 10px;
        margin-right: 0px;
        padding-right: 0px;
    }

    .burger__menu span,
    .burger__menu::before,
    .burger__menu::after {
        position: absolute;
        height: 6px;
        width: 65px;
        transition: all 0.3s ease 0s;
        background-color: #fff;
        border-radius: 50px;
    }

    .burger__menu::before,
    .burger__menu::after {
        content: "";
    }

    .burger__menu::before {
        top: 0;
    }

    .burger__menu::after {
        bottom: 0;
    }

    .burger__menu span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
    }

    .burger__menu._active span {
        transform: scale(0) translate(0px, -50%);
    }

    .burger__menu._active::before {
        top: 50%;
        transform: rotate(45deg) translate(0px, -50%);
    }

    .burger__menu._active::after {
        bottom: 50%;
        transform: rotate(-45deg) translate(0px, 50%);
    }

    .mobile_menu{
        display: block;
        position: fixed;
        top: -100%;
        left: 0%;
        width: 100%;
        height: 60%;
        background: var(--header-bg);
        transition: all .5s;
        z-index: 5;
    }

    .mobile_menu._active{
        top: 0;
    }

    .mobile_menu .wrapper{
        padding: 100px 40px;
    }

    .mobile_menu ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile_menu ul li {
        list-style-type: none;
    }

    .mobile_menu ul li a {
        font-size: 24px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
    }

    .mobile_input{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
    }

   .mobile_input input{
        height: 25px;
        width: 48%;
        white-space: nowrap;
        outline: none;
        border: none;
        border-radius: 5px;
        padding-left: 10px;
        font-size: 12px;
    }

    .mobile_input .validation{
        width: 48%;
    }

    .mobile_input .validation input{
        width: 100%;
    }
}

@media(max-width: 600px){
    .main_section{
        margin-top: 80px;
    }

    .txt__section h1 {
        font-size: 3rem;
        text-align: start;
    }
    
    .txt__section h2{
        font-size: 2rem;
        text-align: start;
    }
    
    .txt__section h3 {
        font-size: 1.5rem;
        text-align: start;
    }

    .banner_item:nth-child(1) {
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row-start: 1;
        grid-row-end: 1;
    }
    
    .banner_item:nth-child(2) {
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row-start: 2;
        grid-row-end: 2;
    }
    
    .banner_item:nth-child(3) {
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row-start: 3;
        grid-row-end: 3;
    }
    
    .banner_item:nth-child(4) {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 4;
        grid-row-end: 4;
    }
    
    .banner_item:nth-child(5) {
        grid-column-start: 3;
        grid-column-end: 5;
        grid-row-start: 4;
        grid-row-end: 4;
    }
    
    .banner_item:nth-child(6) {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 5;
        grid-row-end: 5;
    }
    
    .banner_item:nth-child(7) {
        grid-column-start: 3;
        grid-column-end: 5;
        grid-row-start: 5;
        grid-row-end: 5;
    }
    
    .mobile_menu{
        height: 55%;
    }

    .mobile_menu .wrapper{
        padding: 100px 20px 0px 20px;
    }

    .mobile_input input{
        width: 45%;
    }

    footer .sponsor .descr,
    footer .sponsor .sponsor-logo{
        font-size: 10px;
        width: 50%;
    }

    footer ul li a {
        font-size: 12px;
    }
}

@media(max-width: 400px){
    .txt__section{
        width: 100%;
    }
    .mobile_menu{
        height: 50%;
    }
}

@media(max-width: 374px){
    .txt__section h1 {
        font-size: 2.5rem;
    }
    
    .txt__section h2{
        font-size: 2rem;
    }
    
    .txt__section h3 {
        font-size: 1.5rem;
    }

    .mobile_menu{
        height: 40%;
    }
}