/* common css ******************************************************************************/
:root {
    --white: #fff;
    --black: #000;
    --navy-blue:#002855;
    --green:#00FF00;
    --french-blue:#0466C8;
    --mid-blue:#0E65BF;
    --french-blue-transparent:rgba(4, 102, 200, 0.18);
    --french-blue-transparent-1:rgba(4, 102, 200, 0.6);
    --bright-gold:#FFD500;
    --bright-gold-transparent:rgba(255, 213, 0, 0.59);
    --yellow:#FFAA00;
    --dark-blue:#023E7D;
    --red:#FF0000;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Neato Serif';
    src: url('../fonts/NeatoSerif/eatoSerif-Regular.eot');
    src: local('Neato Serif Regular'), local('NeatoSerif-Regular'),
        url('../fonts/NeatoSerif/NeatoSerif-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeatoSerif/NeatoSerif-Regular.woff2') format('woff2'),
        url('../fonts/NeatoSerif/NeatoSerif-Regular.woff') format('woff'),
        url('../fonts/NeatoSerif/NeatoSerif-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gazzetta';
    src: url('../fonts/Gazzetta/Gazzetta-Regular.eot');
    src: url('../fonts/Gazzetta/Gazzetta-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gazzetta/Gazzetta-Regular.woff2') format('woff2'),
        url('../fonts/Gazzetta/Gazzetta-Regular.woff') format('woff'),
        url('../fonts/Gazzetta/Gazzetta-Regular.ttf') format('truetype'),
        url('../fonts/Gazzetta/Gazzetta-Regular.svg#Gazzetta-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
.bright-gold{
    color: var(--bright-gold);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--black);
}
body {
    background: var(--navy-blue);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}
body.show {
    position: fixed;
    top: 0;
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 700;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 60px;
    font-family: 'Neato Serif';
    line-height: 70px;
    text-transform: uppercase;
    color: var(--bright-gold);
}
h2 {
    font-size: 33px;
    font-weight: 400;
    line-height: 45px;
}
h3 {
    font-size: 28px;
    line-height: 35px;
    font-weight: bold;
}
h4 {
    font-size: 24px;
    font-weight: 400;
}
h5 {
    font-size: 22px;
}
h6 {
    font-size: 18px;
}
p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--white);
}
.section-heading h3{
    text-transform: uppercase;
}
p:last-child {
    margin-bottom: 0;
}
.small {
    font-size: 16px;
}
ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}
.section-heading {
	text-align: center;
	margin-bottom: 40px;
}
.btn-common {
    font-size: 16px;
    padding: 8px 25px;
    background-color: transparent;
    color: var(--green);
    border-radius: 10px;
    border: 1px solid var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pulse-button {
    position: relative;
    top: 20%;
    left: 0;
    margin-left: 0;
    margin-top: -50px;
    background-color: var(--bright-gold);
    color: var(--navy-blue);
    padding: 20px 90px;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 0 0 var(--bright-gold);
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
  }
  
  .pulse-button:hover {
    -webkit-animation: none;
    animation:none;
  }
  
  @-webkit-keyframes pulse {
    0% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    70% {
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 0 20px rgba(90, 153, 212, 0);
    }
    100% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
  }

  @keyframes pulse {
    0% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    70% {
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 0 20px rgba(90, 153, 212, 0);
    }
    100% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
  }

.section {
	padding: 70px 0;
	overflow: hidden;
}
.bg {
    padding: 50px 0;
}
.mobile {
    display: none !important;
}
.desktop {
    display: block !important;
}
img,
video {
    max-width: 100%;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}
.owl-nav {
    margin-top: 0;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-nav button.owl-prev {
    left: 0;
}
.owl-nav button.owl-next {
    right: 0;
}
.form-control-common {
	background: var(--white);
	border: 1px solid var(--black);
	font-size: 20px;
	padding: 15px 50px 15px 20px;
	width: 100%;
	appearance: textfield;
	color: var(--black);
	border-radius: 0;
	box-shadow: none;
	resize: none;
    outline: none;
}
.input-group {
	padding-bottom: 30px;
}
.button--aylen{
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    overflow: hidden;
    position: relative;
}
.button--aylen::before {
    background: var(--green);
}
.button--aylen::after {
    background: var(--french-blue);
}
.button--aylen::before, .button--aylen::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 100%;
    left: 0;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--aylen:hover {
    color: var(--white);
    border-color: var(--french-blue);
}
.button--aylen span{
    position: relative;
    z-index: 1;
}
.button--aylen:hover::before, .button--aylen:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    top: -35px;
    z-index: 0;
    transform: translate3d(0, 100%, 0);
}
.button--aylen:hover::after {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    box-shadow: 0 0 10px 2px var(--black);
}
#header {
	background: var(--navy-blue);
	padding: 40px 0;
	transition: .5s all;
	position: relative;
}
#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .logo-box img {
    max-width: 170px;
    width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}
#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}
#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}
#header .button-box {
	margin-left: 20px;
	padding-top: 0;
}
#header .main-nav nav ul li {
	display: inline-block;
	position: relative;
	margin-right: 30px;
}
#header .main-nav nav ul li a {
	color: var(--white);
	padding: 5px;
	font-size: 14px;
}
#header .main-nav nav ul li a::after  {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--french-blue);
    transition: width .3s;
    margin: 5px auto 0;
}
#header .main-nav nav ul li a:hover::after {
    width: 50%;
    margin: 5px auto 0;
}
#header .main-nav nav ul li a.active{
    color: var(--french-blue);
}
#header .main-nav nav ul li a.active::after{
    height: 2px;
    background: var(--french-blue);
    width: 50%;
    margin: 5px auto 0;
}
#header .button-box i {
    margin-left: 10px;
}

/* homeBanner css ******************************************************************************/
.homeBanner-part img {
    width: 100%;
}

/* text-content-section css ******************************************************************************/
.text-content-section{
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
}
.ellipse-img-left {
    left: -23%;
    top: -140px;
    opacity: .7;
}
.ellipse{
    position: absolute;
}
.ellipse-img-righht {
    right: -23%;
    top: -140px;
    opacity: .6;
}
.text-content-section .content-wrap {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}
.text-content-section .content-wrap h2{
    margin-bottom: 30px;
}

/* big-bash-section css ******************************************************************************/
.big-bash-bg{
    background-image: url(../images/empty-soccer-stadium-with-dreamy-fantasy-view-sky.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 0 70px;
    border-radius: 20px;
    border: 3px solid var(--dark-blue);
}
.big-bash-bg .top-content h1 {
    margin-bottom: 0;
}
.big-bash-bg .top-content h3 {
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.big-bash-bg .top-content {
    margin-bottom: 50px;
}
.big-bash-bg .top-content h3 strong {
    font-weight: bold;
}
.back-lay-block {
    background-color: var(--dark-blue);
    border-radius: 10px;
    padding: 60px 10px;
    margin-bottom: 8px;
}
.back-lay-block h3 {
    font-weight: 300;
}
.big-bash-section .bottom-row {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}
.big-bash-section .bottom-row h6{
    border-bottom: 2px solid var(--bright-gold);
    padding-bottom: 15px;
    font-weight: 400;
}
.big-bash-section{
    padding-bottom: 100px;
}



/* our-partners-section css ******************************************************************************/
.our-partners-section {
    background-color: var(--french-blue-transparent);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}
.our-partners-section .logo-block a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border: 1.5px solid var(--french-blue);
    border-radius: 20px;
    background-color: var(--dark-blue);
    width: 230px;
    margin: 0 auto;
    height: 240px;
}

/* match-winner-section *******************************************************************************/
.match-winner-section {
    margin-top: 120px;
    background-color: var(--navy-blue);
    padding: 95px 119px 103px;
    border-radius: 20px;
    position: relative;
    border: 2px solid var(--mid-blue);
}
.match-winner-wrap {
    border-right: 1px solid var(--french-blue);
}
.match-winner-section .right-col-match-winner {
    padding-left: 150px;
}
.match-winner-section .trophy-img {
    position: absolute;
    right: 10px;
    top: 140px;
}
.match-winner-section .ellipse-img-middle{
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.match-winner-section .ellipse-img-middle img {
    width: 800px;
    max-width: 800px;
}
.right-col-match-winner h6, .right-col-match-winner h5,
.match-winner-wrap h3 {
    text-transform: uppercase;
}

/* live-score-section css ******************************************************************************/
.live-score-section {
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}
.live-score-bg {
    padding: 70px;
    background-image: url(../images/blue-banner.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 20px;
    background-position: center;
}
.live-score-bg .row {
    padding: 70px 0;
}
.score-block h2 {
    font-family: 'Gazzetta';
    font-size: 60px;
    position: relative;
    line-height: 80px;
}
.score-block h2::before {
    content: "";
    background: var(--white);
    height: 1px;
    max-width: 100px;
    margin: 0 auto;
    bottom: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
}
.score-block .red-btn-link {
    background-color: var(--red);
    font-size: 18px;
    border-radius: 60px;
    padding: 5px 40px 5px 30px;
    position: relative;
    max-width: 130px;
    margin: 0 auto;
    width: 100%;
    animation: blink_btn 2s ease-in-out infinite alternate;
}
@keyframes blink_btn {
    0% {
        opacity: 1;  /* Fully visible */
    }
    50% {
        opacity: 0.6;  /* Semi-invisible (for a softer blink) */
    }
    100% {
        opacity: 1;  /* Fully visible again */
    }
}
.score-block .red-btn-link::before {
    content: "";
    background-color: var(--white);
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 50px;
}
.live-score-section .ellipse-img-middle {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.live-score-section .ellipse-img-middle img {
    width: 1000px;
    max-width: 1000px;
}

/* why-choose-hashbook-section *******************************************************************************/
.why-choose-hashbook-section {
    padding: 0 0 120px;
}
.why-choose-hashbook-section .section-heading {
    margin-bottom: 80px;
}
.why-choose-hashbook-block img {
    height: 80px;
    object-fit: contain;
}
.why-choose-hashbook-wrap {
    border-right: 2px solid var(--french-blue-transparent-1);
}
.why-choose-hashbook-block-row {
    margin-bottom: 100px;
}
.why-choose-hashbook-block p {
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
}
.why-choose-hashbook-section .why-choose-hashbook-wrap:last-child {
    border-right: 0;
}


/* beware-of-scammers-section ******************************************************************************/
.beware-of-scammers-section {
    background-image: url(../images/game-banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    padding: 0 40px;
    position: relative;
}
.beware-of-scammers-section .left-content h3{
    color: var(--yellow);
}
.beware-of-scammers-section .left-content p {
    margin-bottom: 0;
}
.beware-of-scammers-section #hash-io-link {
    border-radius: 20px;
    border: 1px solid var(--white);
    padding: 5px 20px;
}
.beware-of-scammers-section .right-img {
    text-align: right;
    margin-top: -130px;
}


/* how-it-works-section ******************************************************************************/
.how-it-works-section {
    padding: 40px 0 170px;
}
.how-it-works-section .number {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--french-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
    animation: blink 1s ease-in-out infinite;
}
.how-it-works-section .number::before {
    content: "";
    width: 60px;
    height: 60px;
    z-index: -1;
    background-color: var(--french-blue-transparent-1);
    border-radius: 50%;
    position: absolute;
}
.how-it-works-section .meter {
    position: absolute;
    width: 100%;
    top: 16%;
    transform: translate(0, -50%);
    left: 40px;
}
.how-it-works-section .meter span{
    width: 100%;
}
.how-it-works-section .meter .progress {
    height: 3px;
    background: var(--french-blue);
}
.row.step-progress-bar {
    max-width: 90%;
    margin: 0 auto;
    width: 100%;
}
.how-it-works-section .section-heading {
    margin-bottom: 50px;
}
.step-progress-block{
    position: relative;
}
@keyframes progressBar {
    0% {
      left: 0;
      width: 0;
    }
    100% {
      left: 0;
      width: 100%;
    }
}
  
.how-it-works-section .number.active {
    background-color: var(--bright-gold);
}
.how-it-works-section .number.active::before{
    background-color: var(--bright-gold-transparent);
}   

.how-it-works-section .meter .progress-1,
.how-it-works-section .meter .progress-2,
.how-it-works-section .meter .progress-3 {
    opacity: 0;  /* Hide progress bars initially */
    width: 0%;   /* Ensure all progress bars are at 0 width initially */
}

.how-it-works-section .meter .progress-1 {
    animation: progressBar1 6s linear forwards;
    animation-delay: 6s;
    background: var(--french-blue);
    opacity: 1;  /* Show progress-1 when animation starts */
}

.how-it-works-section .meter .progress-2 {
    animation: progressBar2 6s linear forwards;
    animation-delay: 12s; /* Starts after progressBar1 finishes */
    background: var(--french-blue);
    opacity: 1; /* Show progress-2 when its animation starts */
}

.how-it-works-section .meter .progress-3 {
    animation: progressBar3 6s linear forwards;
    animation-delay: 18s; /* Starts after progressBar2 finishes */
    background: var(--french-blue);
    opacity: 1; /* Show progress-3 when its animation starts */
}

/* Keyframes for the animations */
@keyframes progressBar1 {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes progressBar2 {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes progressBar3 {
    0% { width: 0%; }
    100% { width: 100%; }
}


@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}



/* payment-methods-section ******************************************************************************/
.payment-methods-section{
    padding-top: 150px;
}
.payment-methods-wrapper{
    border-bottom: 3px solid var(--french-blue);
}
.payment-methods-section .connect-with-us h3{
    color: var(--bright-gold);
    text-transform: uppercase;
}
.connect-with-us{
    padding-top: 80px;
}
.social-icons li a  {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    box-shadow: 0 5px 25px rgba(93, 70, 232, 0.15);
    margin: 15px;
    transition: all .4s ease;
}
.social-icons li a::before {
    position: absolute;
    content: "";
    height: calc(100% + 16px);
    width: calc(100% + 16px);
    top: -8px;
    left: -8px;
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: 1.5s linear 0s normal none infinite focuse;
}

@-webkit-keyframes jello-horizontal {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    30% {
      -webkit-transform: scale3d(1.25, 0.75, 1);
      transform: scale3d(1.25, 0.75, 1);
    }
    40% {
      -webkit-transform: scale3d(0.75, 1.25, 1);
      transform: scale3d(0.75, 1.25, 1);
    }
    50% {
      -webkit-transform: scale3d(1.15, 0.85, 1);
      transform: scale3d(1.15, 0.85, 1);
    }
    65% {
      -webkit-transform: scale3d(0.95, 1.05, 1);
      transform: scale3d(0.95, 1.05, 1);
    }
    75% {
      -webkit-transform: scale3d(1.05, 0.95, 1);
      transform: scale3d(1.05, 0.95, 1);
    }
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
}
  @keyframes jello-horizontal {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    30% {
      -webkit-transform: scale3d(1.25, 0.75, 1);
      transform: scale3d(1.25, 0.75, 1);
    }
    40% {
      -webkit-transform: scale3d(0.75, 1.25, 1);
      transform: scale3d(0.75, 1.25, 1);
    }
    50% {
      -webkit-transform: scale3d(1.15, 0.85, 1);
      transform: scale3d(1.15, 0.85, 1);
    }
    65% {
      -webkit-transform: scale3d(0.95, 1.05, 1);
      transform: scale3d(0.95, 1.05, 1);
    }
    75% {
      -webkit-transform: scale3d(1.05, 0.95, 1);
      transform: scale3d(1.05, 0.95, 1);
    }
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
}

.social-icons a:hover img{
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}


@keyframes focuse {
    0% {
      transform: scale(0.8);
      opacity: 1; 
    }
    75% {
      transform: scale(1.2);
      opacity: 0; 
    }
    100% {
      transform: scale(1.2);
      opacity: 0; 
    } 
}

/* footer css ******************************************************************************/

.footer-bottom-content p {
    max-width: 1030px;
    width: 100%;
}
.footer-bottom-content .disclaimer-text{
    max-width: 637px;
}
.footer-part {
    background-color: var(--navy-blue);
}
.footer-top-content p {
    max-width: 500px;
    width: 100%;
}
.footer-box h4 {
    font-weight: bold;
}