@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-text-color: #11100e;
  --secondary-text-color: #fff;

  --primary-button-color: #d80307;
  --secondary-button-color: #d80307;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* classes */
.button {
  padding: 10px 50px;
  font-size: 16px;
  border-radius: 100px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}
.button.button_primary {
  background-color: var(--primary-button-color);
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid var(--primary-button-color);
}

.wpcf7-submit, .wp-block-button__link {
  padding: 10px 40px;
  font-size: 16px;
  border-radius: 100px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
  background-color: var(--primary-button-color);
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid var(--primary-button-color);
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.button.button_primary:hover,
.wpcf7-submit:hover {
  background-color: #fff;
  color: var(--primary-button-color);
  box-shadow: 2px 6px 24px rgba(216, 3, 7, 0.6);
  border: 1px solid #fff;
}
.button.button_secondary {
  color: var(--secondary-button-color);
  font-size: 18px;
  padding: 0;
  position: relative;
}

.button.button_secondary::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-button-color);
}

.button.button_secondary:hover::before {
  animation: dynamicUnderline 0.5s ease forwards;
}

@keyframes dynamicUnderline {
  0% {
    width: 0;
  }

  100% {
    width: 75%;
  }
}

.button.button_white {
  color: #fff;
  border: 1px solid #fff;
}

.button.button_white:hover {
  background-color: #fff;
  color: var(--primary-button-color);
}

.button.button_white2 {
  color: #d80307;
  border: 1px solid #fff;
  background-color: #fff;
}

.button.button_white2:hover {
  background-color: transparent;
  color: #fff;
}

.button.button_white3 {
  background-color: transparent;
  color: #d80307;
  border: 1px solid #d80307;
  font-weight: bold;
  text-transform: uppercase;
}

.button.button_white3:hover {
  background-color: #d80307;
  color: #fff;
}

.button.sm {
  font-size: 12px;
  padding: 10px 25px;
  text-transform: capitalize;
}

.bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.title {
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
}
.top-features-title {
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  margin-top: 40px;
  margin-bottom: 100px;
}
.section-subtitle {
  font-size: 27px;
  font-weight: bold;
  margin: 45px 0;
}
.section-subtitle-imperssum {
  font-size: 27px;
  font-weight: bold;
  margin: 45px 0 10px 0;
}
.txt {
  font-size: 18px;
  font-weight: 300;
}

body {
  font-size: 18px;
  font-family: "Montserrat", serif !important;
  color: var(--primary-text-color);
}

::selection {
  background-color: var(--primary-button-color);
  color: #fff;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 300;
}

.menu a {
  background-color: var(--primary-button-color);
  padding: 10px;
}

header nav ul li:not(:last-child) {
  margin-right: 15px;
}

.firstline {
  padding: 10px 0;
}

.firstline .firstline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.firstline .button {
  font-size: 14px;
  padding: 10px 30px;
}

header.header-2 {
  background-color: #fff;
}

header.header-2 nav {
  background-color: #11100e;
  padding: 15px 0;
}

header nav ul {
  margin-bottom: 0 !important;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

header nav ul li {
  position: relative;
}

header nav ul li:not(:last-child) {
  margin-right: 58px;
}

header nav ul li a {
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

header nav ul li a.active {
  color: var(--primary-button-color);
}

header nav ul li a:hover {
  transition: 0.4s;
  color: var(--primary-button-color);
}

header.header-2 .dropdown {
  position: absolute;
  top: 39px;
  left: -7px;
  display: flex;
  flex-direction: column;
  background-color: #110002;
  z-index: 12;
}

header.header-2 .dropdown li {
  margin: 0;
  padding: 12.5px 10px;
  width: 100%;
}

header.header-2 .dropdown li:not(:last-child) {
  border-bottom: 1px solid #303030;
}

header.header-2 .dropdown li a {
  font-size: 15px;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3000;
  animation: fadeToBottom 0.8s ease;
  background-color: #11100e;
}

@keyframes fadeToBottom {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(216, 3, 7, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

header .navbar .navbar-nav {
  align-items: center;
}

header .navbar-nav li .nav-link {
  font-size: 12px;
  color: var(--secondary-text-color);
}

header .navbar-nav li .nav-link:hover {
  text-decoration: underline;
}

header .navbar-nav li a.active {
  color: #d80307 !important;
}

header .navbar-nav li .nav-link.disabled {
  opacity: 0.5;
  color: black;
}

.hero {
  min-height: 70dvh;
  position: relative;
}
.hero .content-wrapper {
  color: var(--secondary-text-color);
  position: absolute;
  bottom: -5%;
  max-width: inherit;
}
.hero h3 {
  font-size: 20px;
  letter-spacing: 0.025rem;
}
.hero h1 {
  text-transform: uppercase;
  font-size: 90px;
  font-weight: 800;
  margin: 10px 0 20px 0;
}

.hero p {
  max-width: 40%;
  font-weight: 300;
}

.hero a {
  margin-top: 5px;
}
.hero img[alt="application"] {
  position: absolute;
  bottom: 0;
  right: 23px;
}

.hero .content-wrapper div {
  padding-bottom: 125px;
}

.hero img[alt="phones"] {
    position: absolute;
    bottom: 7.5%;
    right: -2.5%;
}

.partners {
  padding-top: 30px;
}

.partners .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partners .content-wrapper h3 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

.partners .content-wrapper .partner-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.partners .content-wrapper .partners-cta p {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
}

.articles {
  padding: 50px 0 100px 0;
}

.articles .article-card img {
  width: 100%;
  transition: 0.4s;
}

.articles .article-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  overflow: hidden;
}
/* .article-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  padding-bottom: 20px;
} */

.article-text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.articles .article-card img:hover,
.category-news a:hover {
  transform: scale(1.05);
}

.articles .article-card h4 {
  font-size: 42px;
  font-weight: 800;
  margin: 30px 0;
}

.articles .article-card p {
  min-height: 190px;
}

.articles .article-card a {
  margin-top: 40px;
}

.tips {
  margin: 80px 0;
}

.tips .wrapper .row {
  margin-bottom: 15px;
}
.tips h4 {
  font-size: 24px;
  font-weight: 300;
  color: #d80307;
  margin: 3rem 0 2rem 0;
}
.tips h4 span {
  font-weight: 900;
}
.tips h5 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tips ul {
  list-style: none;
  padding: 0;
}
.match-row {
  margin-top: 20px !important;
}
.quotes span a {
  text-decoration: none;
  color: white;
}
.tips p {
  margin-bottom: 0;
  text-transform: uppercase;
}

.tips ul li:not(:last-child) {
  margin-bottom: 10px;
}

.tips .quotes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tips .quotes span {
  font-size: 18px;
  padding: 5px 0;
  min-width: 80px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background-color: #d80307;
  border-radius: 10px;
}

.tips .row {
  align-items: center;
}

.tips .pl {
  font-size: 14px;
  font-weight: 300;
  margin-top: 30px;
  text-transform: none;
}

.bonus {
  position: relative;
  padding: 3rem 0;
  color: #fff;
}

.bonus h4 {
  font-size: 20px;
}
.bonus h2 {
  font-size: 85px;
  font-weight: 800;
}

.bonus .btns-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.sport-blog {
  padding: 100px 0;
}

.sport-blog p.txt {
  margin-top: 30px;
}
.sport-blog .row {
  row-gap: 20px;
  margin-top: 50px;
}
.sport-blog .wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sport-blog .wrapper h5 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
}

.news .row {
  row-gap: 100px;
  margin-top: 40px;
}

.news .article-card {
  border-bottom: 2px solid #afafaf;
  padding-bottom: 30px;
}

.news .article-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-top: 20px;
}

.news .article-card h5 {
  font-size: 16px;
  font-weight: 900;
  margin-top: 40px;
}

.articles .category-news a {
  border: 2px solid #bdbdbc;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #11100e;
  font-size: 18px;
  border-radius: 5px;
}

.articles .category-news a span {
  color: var(--primary-button-color);
  font-weight: 900;
}

.articles .category-news a:hover {
  border: 2px solid var(--primary-button-color);
}

.app {
  padding: 50px 0;
  position: relative;
}

.app h2 {
  line-height: 0.9;
}
.app h4 {
  margin-bottom: 15px;
}

.app p.txt {
  max-width: 50%;
}

.payout {
  padding: 100px 0;
}

.payout .grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  margin-top: 80px;
}

.payout .grid img {
  margin: 0 auto;
}

.promo {
  padding: 100px 0;
  position: relative;
}

.promo a {
  margin-top: 30px;
}

.promo .wrapper {
  position: relative;
  min-height: 100%;
}
.promo .wrapper img {
  position: absolute;
  bottom: -100px;
}
.registration {
  padding: 100px 0;
}
.registration .row {
  justify-content: center;
}
.registration .wrapper {
  text-align: center;
}
.registration .wrapper p.txt {
  margin: 20px 0 30px 0;
}
.best-quotes {
  padding: 385px 0 135px 0;
  /* background-image: url("../images/best-quotes-bg.jpg"); */
}
.best-quotes h2 {
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
}
.security .grid {
  grid-template-columns: repeat(7, 1fr);
}

/* footer {
  padding: 40px 0 75px 0;
  border-top: 1px solid #bdbdbc;
} */

footer .footer-top {
  padding-bottom: 40px;
}

footer .footer-top .row {
  margin-top: 40px;
  justify-content: space-between;
}

footer .footer-top h4 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

footer .footer-top ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

footer .footer-top ul li a {
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  color: #11100e;
}

footer .warning {
  padding: 50px 0;
  border-top: 1px solid #bdbdbc;
  border-bottom: 1px solid #bdbdbc;
}

footer .warning p {
  text-align: justify;
}

footer p strong {
  font-weight: bold;
}

.privacy-policy {
  padding: 30px 0;
  border-bottom: 1px solid #bdbdbc;
}

.privacy-policy ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(8, fit-content(230px));
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.privacy-policy ul li a {
  color: #11100e;
  text-decoration: none;
}

.lastline {
  padding: 20px 0;
  border-bottom: 1px solid #bdbdbc;
}

.lastline .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lastline .wrapper p {
  margin-bottom: 0;
}

.lastline .wrapper ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.hero-banner {
  min-height: 45dvh;
  position: relative;
}

.hero-banner .content-wrapper h1 {
  text-transform: uppercase;
}

.hero-banner.hero-banner-news-page {
  min-height: 60dvh;
}

.hero-banner.hero-banner-2 .content-wrapper h1 {
  font-size: 45px;
  text-transform: uppercase;
}

.hero-banner .content-wrapper {
  position: absolute;
  bottom: 20%;
}

.hero-banner .content-wrapper h1 {
  font-size: 72px;
  font-weight: 800;
  color: #fff;
}

.hero-banner .content-wrapper .hero-links {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.hero-banner .content-wrapper .hero-links a,
.hero-banner .content-wrapper .hero-links span {
  color: #fff;
  text-decoration: none;
}

.hero-banner .content-wrapper .hero-links a:hover {
  color: var(--primary-button-color);
}

.tips-info .info-button {
  border: 1px solid #bdbdbc;
  padding: 10px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #11100e;
  font-size: 18px;
  border-radius: 5px;
  max-width: fit-content;
  font-size: 14px;
  margin-bottom: 50px;
}

.tips-info .info-button:hover {
  border: 1px solid var(--primary-button-color);
}

.tips-info .category-news {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.tips-info .article-card {
  border: 1px solid #cecece;
  min-height: 430px;
}

.tips-info .article-card div {
  padding: 15px 20px;
}
.tips-info .article-card p {
  min-height: unset;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.tips-info .article-card h4 {
  font-size: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tips-info .row + .row {
  margin-top: 100px;
  row-gap: 30px;
}

.tips-info .row + .row > .row {
  justify-content: center;
}

.tips-info button {
  background: transparent;
  border: none;
}

.tips-info .btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

.updates {
  text-align: center;
}

.updates p {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 30px;
}

.tips-details-info h2 {
  text-transform: none;
}

.tips-details-info a:not([class]) {
  color: #d80307;
  text-decoration: none;
}

.tips-details-info h2 + p {
  margin-top: 30px;
}

.tips-details-info h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
}

.tips-details-info h5 + p {
  margin-bottom: 0;
}

.tips-details-info .about-article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tips-details-info .about-article div div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.tips-details-info .tips-details-content {
  margin-top: 50px;
}

.tips-details-info .tips-details-content .row:first-of-type {
  margin-top: 50px;
}

.tips-details-info .tips-details-content h3 {
  font-size: 32px;
  font-weight: bold;
}

.tips-details-info .tips-details-content .thumbnail_image {
  width: 100%;
}

.tips-details-info .tips-details-content p.imp {
  font-size: 32px;
  line-height: 1.25;
}

.tips-details-info .tips-details-content p.imp + a {
  margin-top: 20px;
}
.tips-info .tips-details-contenta p {
  text-align: justify;
}
.articles .row + .row a {
  text-decoration: none;
  color: var(--primary-te-color);
}
.intro {
  margin-top: 100px;
}

.intro > div:not(.row) {
  margin-bottom: 20px;
}

.intro > div:not(.row) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intro div .info-button {
  margin-bottom: 0;
}

.intro .row .row {
  margin-top: 100px;
  justify-content: center;
}

.intro .row a {
  text-decoration: none;
  color: var(--primary-te-color);
}
.screen-reader-response p:empty {
  display: none;
}
.screen-reader-response p {
  color: #fff;
  background-color: #28a745; /* Zelena pozadina */
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}

.updates a {
  color: var(--secondary-text-color) !important;
}

.hero-banner-news-page .content-wrapper {
  bottom: unset;
  top: 33%;
}

.news-wrapper .news-wrapper-content {
  padding: 60px 200px 150px 200px;
  position: relative;
  margin-top: -90px;
  background-color: #fff;
}

.news-wrapper .news-wrapper-content > h4 {
  color: var(--primary-button-color);
  font-size: 18px;
}

.news-wrapper .news-wrapper-content .title {
  padding: 20px 0 40px 0;
}

.news-wrapper .news-wrapper-content .news-about,
.news-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.news-cta {
  gap: 20px;
  margin-bottom: 0;
}

.news-wrapper .news-wrapper-content .news-about > div,
.news-cta > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.news-wrapper .news-wrapper-content .news-about h5 {
  margin: 0;
}

.news-cta h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
}

.news-wrapper .news-wrapper-content p a,
.news-cta a {
  color: #d80307;
  text-decoration: none;
}

.news-wrapper .news-wrapper-content div p:not([class]) {
  text-align: justify;
}

.news-wrapper .news-wrapper-content div .article-card p {
  text-align: left;
}

.news-cta i {
  font-size: 14px;
}

.news-wrapper .news-wrapper-content .news-about a {
  color: #11100e;
  text-decoration: none;
}

.news-wrapper .news-wrapper-content .news-about a:not(:last-child) {
  margin-right: 10px;
}

.news-wrapper .news-wrapper-content .more-news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 0 30px 0;
}

.news-wrapper .news-wrapper-content .more-news h3 {
  font-size: 32px;
  font-weight: bold;
}

.news-wrapper .news-wrapper-content .more-news .info-button {
  margin-bottom: 0;
}
.news-wrapper .news-wrapper-content .more-news + .row {
  display: flex;
  justify-content: center;
}

.news-wrapper .news-wrapper-content .row .col-md-6 a {
  text-decoration: none;
  color: #11100e;
}
.news-wrapper .news-wrapper-content .more-news .article-card {
  display: flex;
  justify-content: center;
}

.news-wrapper .news-wrapper-content .article-card {
  min-height: 514px;
}
.news-wrapper .news-wrapper-content .article-card img {
  width: 100%;
}

.news-wrapper .news-wrapper-content .article-card p.txt {
  line-height: 1.1;
}

.news-wrapper .news-wrapper-content .article-card {
  border: 1px solid #cecece;
}

.news-wrapper .news-wrapper-content .article-card h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.news-wrapper .news-wrapper-content .article-card div {
  padding: 25px;
}

.news-wrapper .news-wrapper-content .updates {
  margin-top: 100px;
}

.hero-banner.hero-banner-2 {
  min-height: 55dvh;
}

.hero-banner.hero-banner-2 .content-wrapper {
  bottom: 15%;
  top: unset;
}

.hero-banner.hero-banner-2 .content-wrapper h1 {
  margin-bottom: 30px;
}

.news-2 .news-2-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}

.news-2 .news-2-header p {
  color: #d80307;
  font-size: 16px;
  margin-bottom: 0;
}

.news-navigator h2 {
  font-size: 44px;
  font-weight: 800;
  margin: 20px 0 30px 0;
}

.news-navigator .accordion {
  border: 1px solid #949494;
}

.news-navigator .accordion .accordion-item:not(:last-child) .accordion-header {
  border-bottom: 1px solid #949494;
}

.news-navigator .accordion-button:focus {
  box-shadow: none !important;
}

.news-navigator .accordion-button:not(.collapsed) {
  background-color: #d80307;
  color: #fff;
  padding: 15px 20px !important;
}

.news-navigator .accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(100);
}

.news-navigator .accordion-item .accordion-header button {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: bold;
  color: #11100e;
  text-decoration: none;
}

.news-navigator .accordion .accordion-button:not(.collapsed) {
  color: #fff;
}
.news-navigator .accordion .accordion-button.collapsed {
  padding: 15px 20px !important;
}

.news-navigator .download {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  margin: 65px 0 45px 0;
}

.news-navigator ul {
  border: 1px solid #949494;
  list-style-type: none;
}

.news-navigator ul li {
  padding: 10px 20px;
}

.news-navigator ul li:not(:last-child) {
  border-bottom: 1px solid #949494;
}

.news-navigator ul li:hover {
  background-color: #d80307;
  transition: all 0.4s;
}

.news-navigator ul li:hover a {
  color: #fff;
}

.news-navigator ul li:hover a img {
  filter: invert(1);
  filter: brightness(100);
}

.news-navigator ul li a {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: bold;
  color: #11100e;
  text-decoration: none;
}

.logo-wrapper {
  margin-top: 100px;
}

.news-content {
  margin-top: 100px;
}

.news-content h2 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
}

.news-content ol {
  padding-left: 1.25rem;
}

.news-content p,
.news-content ol li {
  font-size: 16px;
}

.news-content ol li {
  margin-top: 20px;
}

.news-content h3 {
  font-size: 16px;
  font-weight: bold;
}

.news-content ol li a {
  color: #d80307;
}
.news-wrapper blockquote {
  margin-top: 20px;
}
.news-wrapper blockquote q {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
}
.news-wrapper blockquote cite {
  font-size: 16px;
  font-weight: 500;
  color: #d80307;
  display: block;
  margin-top: 15px;
}

.page-navigator {
  margin: 120px 0 30px 0;
}

.page-navigator .row {
  padding: 0 30px;
  align-items: center;
}

.page-navigator .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.page-navigator .wrapper .pages p {
  font-size: 16px;
  color: var(--primary-button-color);
  margin-bottom: 10px;
}

.page-navigator .col-xl-4:first-of-type .wrapper .pages p {
  text-align: right;
}

.page-navigator .wrapper h3 {
  font-size: 36px;
  font-weight: 800;
  color: #11100e;
  margin-bottom: 0;
}

.page-navigator .col-xl-4:first-of-type .wrapper .pages h3 {
  text-align: right;
}

.page-navigator .col-xl-2 {
  display: flex;
  justify-content: center;
}

.page-navigator .page-navigator-devider {
  min-height: 95px;
  width: 2px;
  background-color: #979797;
  display: inline-block;
}

.news-navigator .accordion-item .accordion-body p {
  margin-bottom: 15px;
}

.news-navigator .accordion-item .accordion-body p a {
  color: var(--primary-button-color);
  text-decoration: none;
}

.news-navigator .news-navigator-single-text {
  margin: 20px 0;
  padding-left: 20px;
}

.news-navigator .news-navigator-single-text h3 {
  font-size: 24px;
  font-weight: 700;
}

.news-navigator .accordion .accordion .accordion-item .accordion-header button {
  font-size: 20px;
}

.top-quotes .row {
  row-gap: 20px;
}

.top-quotes .competition {
  border: 1px solid #c7c7c7;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 15px 20px;
  text-decoration: none;
}
.top-quotes .active {
background-color: #d80307;
}
.top-quotes .active h3{
color: #fff !important;

}
.top-quotes .competition:hover,
.wett-tips-grid .wett-tips-card:hover {
  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;
  transition: 0.3s;
}

.top-quotes .competition h5 {
  color: #11100e;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
}

.top-quotes .competition h3 {
  color: #11100e;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 0;
  margin-left: 20px;
}

.wett-tips-grid .wett-tips-card {
  border: 1px solid #c5c5c5;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wett-tips-grid .wett-tips-card h5 {
  color: #d80307;
  font-size: 16px;
  padding: 20px 20px 0 20px;
}

.wett-tips-grid .wett-tips-card h3 {
  font-size: 30px;
  font-weight: 800;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 80px;
  padding: 0 20px;
}

.wett-tips-grid .wett-tips-card p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  min-height: 240px;
  padding: 20px 20px 0 20px;
}

.wett-tips-grid .wett-tips-card .p-short {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  min-height: 80px;
}

.wett-tips-grid .wett-tips-card a {
  max-width: fit-content;
  padding: 0 0 20px 20px;
}

.top-features .top-features-card {
  display: flex;
  gap: 20px;
  align-items: start;
  margin-bottom: 45px;
}

.top-features h3 {
  font-size: 60px;
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 15px;
}
.top-features h3 span {
  color: #d80307;
  display: block;
}

.location {
  padding: 150px 0 0 0;
}

.location h2 {
  margin-bottom: 60px;
}

.location h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 45px;
}

.location .col-lg-7 p {
  max-width: 85%;
}

.location .col-lg-5 img {
  display: block;
  margin-left: auto;
}

.location p a {
  color: #d80307;
}

.location .location-grid {
  margin-top: 100px;
}

.location .location-grid .row .col-xl-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.location .location-grid h5 {
  font-size: 13px;
}

.partner-premium h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 45px;
}

.partner-premium .row {
  align-items: center;
}

.location .location-grid img[alt="proverb"] {
  position: absolute;
  z-index: -1;
  top: 0;
}

.singe-img-wrapper {
  position: relative;
  z-index: -1;
  margin-top: -200px;
}

.partner-premium {
  margin: 100px 0;
}

.link-block .mpkj-block {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  border: 1px solid #949494;
  padding: 20px 30px;
  color: #11100e;
  text-decoration: none;
}

.link-block a span {
  text-decoration: underline;
}

.link-block a:hover {
  border: 1px solid #d80307;
}

.collapse .card-body ul li:not(:last-child) {
  margin-right: 15px;
}

.collapse .card-body ul li a[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.collapse .card-body ul li a.active {
  font-weight: bold;
}

table tbody tr:not(:last-child) {
  border-bottom: 1px solid #11100e;
}

.impressum {
  margin: 100px 0 10px 0;
}

.impressum h2 {
  font-size: 36px;
  text-transform: capitalize;
  font-weight: bold;
}

.impressum ul {
  list-style: none;
  padding: 0;
}

.impressum p a {
  color: #d80307;
  text-decoration: none;
}

.timeline-graph {
  margin: 375px 0;
}

.timeline-graph .timeline {
  position: relative;
  height: 5px;
  width: 100%;
  background-color: #d80307;
}

.timeline-graph .timeline h4 {
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}

.timeline-graph .timeline.timeline-down h4 {
  position: absolute;
  right: -18px;
  top: -60px;
}

.timeline-graph .timeline img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.timeline-graph .timeline .vertical-line {
  background-color: #11100e;
  width: 1px;
  height: 110px;
}

.timeline-graph .timeline.timeline-down .vertical-line {
  position: absolute;
  right: 12.5px;
  top: 30px;
}

.timeline-graph .timeline .vertical-line p {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  min-width: 160px;
}

.timeline-graph .timeline.timeline-down .vertical-line p {
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 90px;
}

.timeline-graph .col-lg-1 {
  padding: 0;
}

.timeline-graph .timeline.timeline-up h4 {
  position: absolute;
  right: -20px;
  bottom: -60px;
}

.timeline-graph .timeline.timeline-up .vertical-line {
  position: absolute;
  right: 12.5px;
  bottom: 30px;
}

.timeline-graph .timeline.timeline-up .vertical-line p {
  position: absolute;
  bottom: 115px;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-graph .timeline.timeline-up .vertical-line img {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-graph .timeline.timeline-down .vertical-line img {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.top-features-table {
  margin: 80px 0;
}

.top-features-table h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  color: #fff;
  margin-bottom: 0;
}

.top-features-table .col-lg-4 {
  padding: 0;
}

.top-features-table .row {
  background-color: #c70f1d;
  border-radius: 15px;
}

.top-features-table .col-xl-4:not(:last-child) {
  border-right: 1px solid #fff;
}

.top-features-table .col-xl-4 div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.top-features-table .col-xl-4 div img {
  max-width: 75%;
}

.contact {
  margin: 70px 0 40px 0;
}

.contact input:not([type="submit"]),
.contact select,
.contact textarea {
  outline: none;
  border: 1px solid #cacaca;
  min-height: 40px;
  width: 100%;
  padding-left: 10px;
  resize: none;
}

.contact a {
  color:  var(--primary-button-color);
  text-decoration: none;
}

.datenschutz-input {
  width: 23px !important;
}

.contact select option {
  background-color: #7a797c;
  color: #ffff;
  font-weight: 300;
}

.contact .wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.contact .wrapper input {
  width: 15px;
  height: 15px;
  display: inline-block;
}

.contact .wrapper p {
  margin-bottom: 0;
}

.contact .wrapper p a {
  color: #d80307;
}

.contact button {
  border-radius: 15px;
  padding: 10px 25px;
}

.hero-bonus {
  overflow: hidden;
}

.hero-bonus .bonus-wrapper {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.welcome-bonus {
  margin: 75px 0 130px 0;
}

.special-title {
  font-size: 45px;
  font-weight: 800;
  text-transform: uppercase;
}
.special-title span {
  color: #d80307;
  display: block;
}

.welcome-bonus p {
  margin: 20px 0 40px 0;
}

.welcome-bonus .partners-cta {
  max-width: fit-content;
  text-align: center;
}

.welcome-bonus .partners-cta a {
  font-size: 14px;
}

.welcome-bonus .partners-cta p {
  font-size: 12px;
  margin: 0;
  margin-top: 15px;
}

.betting-welcome-bonus {
  margin: 50px 0;
}

.betting-welcome-bonus .partners-cta {
  max-width: fit-content;
  text-align: center;
  margin-top: 30px;
}

.betting-welcome-bonus .partners-cta a {
  font-size: 14px;
}

.betting-welcome-bonus .partners-cta p {
  font-size: 12px;
  margin-top: 15px;
}

.betting-welcome-bonus ul {
  padding: 0;
  list-style-type: none;
}

.betting-welcome-bonus ul li p {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
}

.betting-welcome-bonus .row {
  align-items: end;
  display: flex;
}

.betting-welcome-bonus ul li p span {
  color: #d80307;
}

.app:not(.best-quotes) {
  padding-top: 160px;
}

.info-list h3 {
  font-size: 24px;
  font-weight: bold;
}

.info-list h3 span {
  color: #d80307;
}

.top-three-quotes h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.top-three-quotes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-three-quotes ul li:first-child {
  border-top: 1px solid #11100e;
}

.top-three-quotes ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #11100e;
  padding-right: 15px;
}

.top-three-quotes ul li h5 {
  font-size: 20px;
  font-weight: bold;
}

.top-three-quotes ul li p {
  margin-bottom: 0;
}

.top-three-quotes ul li span {
  font-size: 18px;
  padding: 5px 0;
  min-width: 80px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background-color: #d80307;
  border-radius: 10px;
}

.sport-news h4 {
  font-size: 18px;
  color: #d80307;
  font-weight: 800;
}

.sport-news h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 38px;
}

.social-media-feed {
  margin: 100px 0;
}

.social-media-feed .cardd {
  border: 1px solid #cecece;
  padding: 15px;
  min-height: 682.5px;
}

.social-media-feed .cardd .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-media-feed .cardd .card-header .card-header-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-media-feed .cardd .card-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1d1d1b;
  margin-bottom: 0;
}

.social-media-feed .cardd .card-header p {
  font-size: 11px;
  font-weight: 300;
  margin-bottom: 0;
  color: #1d1d1b;
}

.social-media-feed .cardd .card-body p {
  font-size: 14px;
  font-weight: 300;
  color: #1d1d1b;
  margin: 15px 0;
}

.social-media-feed .cardd .card-body a {
  color: #1d1d1b;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  text-transform: lowercase;
}

.social-media-feed .cardd .card-body img {
  margin: 20px 0 30px 0;
  width: 100%;
}

.social-media-feed .cardd .card-body video {
  width: 100%;
}

.social-media-feed .cardd .card-footer span {
  font-size: 14px;
  color: #d80307;
  font-weight: 500;
}

.tickets img[alt="tipwinner"] {
  margin-bottom: 50px;
}

.tickets .ticket-card {
  position: relative;
}

.tickets .ticket-card img:first-child {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
}

.tickets .ticket-card .ticket-footer {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.tickets .ticket-card .ticket-footer p {
  margin-bottom: 0;
}

.social-media-feed .container .row {
  row-gap: 30px;
}

.social-media-section .social-card {
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.social-media-section .social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

footer .warning a {
  color: var(--primary-button-color);
  text-decoration: none;
}

@media (min-width: 1200px) {
  /* .container {
    max-width: 1170px !important;
  } */
  .hero-banner.hero-banner-2 .bg {
    background-position: 50% 30%;
  }

  .msk-wrapper {
    position: relative;
    top: -100px;
  }

  .social-media-feed .cardd {
  min-height: 849.5px;
  }
}

@media only screen and (min-width: 2000px) and (min-height: 1200px) {
  .hero {
    min-height: 47dvh;
  }

  .hero-bonus .bg {
    background-position: 50% 50% !important;
  }

  .best-quotes {
    padding: 585px 0 430px 0;
  }

  
.hero-banner.hero-banner-2 {
  min-height: 28dvh;
}

.hero-banner.hero-banner-2 .content-wrapper {
  bottom: 20%;
  top: unset;
}

}

@media only screen and (min-width: 2000px) and (min-height: 800px) {
  .app:not(.best-quotes)  {
    padding-top: 350px !important;
  }

  .best-quotes {
    padding: 585px 0 430px 0;
  }

  .best-quotes .row {
    position: relative;
    top: 150px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero img[alt="application"] {
    display: none;
  }
  .page-navigator .row {
    padding: 0;
  }
  .singe-img-wrapper {
    top: 0;
    margin: 0;
  }
  .hero img[alt="phones"] {
    display: none;
  }

  .hero .content-wrapper div {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h3 {
    font-size: 15px;
  }
  .hero img[alt="phones"] {
    display: none;
  }
  .tickets .ticket-card .ticket-footer p,
  .tickets .ticket-card .ticket-footer span {
    font-size: 15px;
  }
    .navbar .offcanvas {
    background-color: #11100e;
  }
  header nav ul li:not(:last-child) {
    margin-right: 0;
  }
  header .navbar .navbar-nav {
    row-gap: 10px;
  }
  
  .list-unstyled{
    flex-direction: column;
  }

  
}
@media only screen and (max-width: 1199px) {
  .special-title {
    font-size: 35px;
  }
  .partners .content-wrapper {
    flex-direction: column;
    row-gap: 30px;
  }

  .page-navigator .wrapper h3 {
    font-size: 20px;
  }

  .articles .article-card div {
    min-height: 300px;
  }

  .tips {
    padding: 0 0 30px 0;
  }

  .articles .article-card p {
    min-height: 300px;
  }

  .tips .wrapper p {
    font-size: 14px;
  }
  .sport-blog {
    padding: 30px 0;
  }
  .news .article-card h4 {
    font-size: 16px;
  }

  .news .row {
    row-gap: 30px;
  }
  .news .article-card div {
    min-height: 0;
  }
  .title,
  .top-features-title {
    font-size: 38px;
  }
  .news .category-news a div {
    font-size: 16px;
  }
  .payout {
    padding: 50px 0;
  }
  .bonus h2 {
    font-size: 38px;
  }
  .payout .grid {
    margin-top: 40px;
  }
  .privacy-policy ul {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
  }

  .navbar .offcanvas .offcanvas-header .btn-close {
    filter: invert(1);
  }
  header nav ul li:not(:last-child) {
    margin-right: 0;
  }
  header .navbar .navbar-nav {
    row-gap: 10px;
  }

  .location .location-grid .row {
    row-gap: 30px;
  }

  .timeline-graph .timeline h4 {
    font-size: 26px;
  }

  .timeline-graph .timeline .vertical-line p {
    font-size: 12px;
  }


  .navbar .offcanvas-body ul li a {
    text-align: center;
  }

  .navbar .navbar-toggler {
    box-shadow: none;
  }
  .top-features-table .col-xl-4:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #fff;
  }

  .top-features-table h3 br {
    display: none;
  }
    .tickets .ticket-card .ticket-footer {
    bottom: 5px;
  }

  .tickets .ticket-card .ticket-footer p,
  .tickets .ticket-card .ticket-footer span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1800px) {
  .hero img[alt="phones"] {
    position: absolute;
    bottom: 6.5%;
    right: 10px;
    max-width: 20% !important;
}
  
}

@media only screen and (max-width: 991px) {
  .welcome-bonus .row {
    row-gap: 30px;
  }

  .betting-welcome-bonus .row {
    row-gap: 30px;
  }

  .welcome-bonus .col-lg-5 {
    order: 2;
  }
  .timeline-graph {
    display: none;
  }
  .articles .article-card p {
    min-height: unset;
  }
  .articles .row {
    row-gap: 30px;
  }
  .hero p {
    max-width: 100%;
  }
  .hero .content-wrapper {
    text-align: center;
    bottom: unset;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .payout .grid {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 20px;
  }
  .tips .quotes {
    gap: 5px;
  }
  .tips .quotes span {
    font-size: 16px;
  }
  .promo .wrapper img {
    display: none;
  }
  .best-quotes {
    padding: 85px 0 50px 0;
  }
  .payout .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  footer .footer-top .row {
    row-gap: 30px;
  }
  .privacy-policy ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .lastline .wrapper {
    flex-direction: column;
    row-gap: 30px;
  }
  .news-wrapper .news-wrapper-content {
    padding: 30px 0;
    margin: 0;
  }

  .news-wrapper .news-wrapper-content .news-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
  }

  .news-navigator ul li a {
    font-size: 18px;
  }

  .page-navigator {
    margin: 50px 0;
  }

  .hero-banner .content-wrapper h1 {
    max-width: 100%;
  }

  .wett-tips-grid .row {
    row-gap: 20px;
  }

  .top-features h3 {
    font-size: 30px;
  }

  .top-features .row {
    row-gap: 20px;
  }

  .location h2 {
    margin-bottom: 20px;
  }

  .location {
    padding: 50px 0;
  }

  .location h3 {
    font-size: 20px;
  }

  .location .location-grid {
    margin-top: 40px;
  }

  .location .row:nth-child(2) {
    flex-direction: column-reverse;
  }

  .location img {
    margin: 30px 0;
  }

  .top-features-table h3 {
    font-size: 24px;
  }
  .tickets .ticket-card .ticket-footer {
    bottom: 5px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    padding: 0 30px;
    gap: 3px;
  }
}

@media only screen and (max-width: 769px) {
  .news-navigator .accordion-item .accordion-header button {
    font-size: 18px;
  }
  .tips .wrapper p {
    font-size: 12px;
  }
  .sport-blog .wrapper h5 {
    font-size: 16px;
  }
  .title,
  .bonus h2,
  .top-features-title {
    font-size: 32px;
  }
  footer .warning {
    border-top: unset;
    border-bottom: unset;
  }

  footer
    .accordion-flush
    > .accordion-item
    > .accordion-header
    .accordion-button,
  .accordion-flush
    > .accordion-item
    > .accordion-header
    .accordion-button.collapsed {
    padding: 15px 5px;
    box-shadow: none;
  }
  footer .accordion-body {
    padding: 15px 0 0 0;
  }
  footer .warning {
    padding: 0;
  }
  footer .accordion-button[aria-expanded="true"] {
    background-color: #fff;
  }

  .hero-banner.hero-banner-2 .content-wrapper h1,
  .news-navigator h2 {
    font-size: 24px;
  }

  .page-navigator .wrapper h3 {
    font-size: 18px;
  }

  .page-navigator .page-navigator-devider {
    min-height: 75px;
  }
}

@media only screen and (max-width: 640px) {
  .hero-banner .content-wrapper h1 {
    font-size: 28px;
  }

  .tickets .ticket-card .ticket-footer p {
    margin-bottom: 10px;
  }

  .hero {
    min-height: 68dvh !important;
  }

  .overlay {
    background-color: #11000250;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .app:not(.best-quotes) {
    padding-top: 80px;
    background: #b6000e;
  }

  .hero, .hero .content-wrapper {
    min-height: 65dvh;
  }

  .app .bg {
    display: none;
  }

  .hero-banner .content-wrapper .hero-links a {
    font-size: 11px;
  }
  .news-navigator ul li a {
    font-size: 15px;
  }
  .news-2 .news-2-header {
    margin-top: 40px;
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }
  .partners .content-wrapper .partner-wrapper {
    flex-direction: column;
  }
  .payout .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .privacy-policy ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .button {
    padding: 10px 20px;
  }
  .navbar .offcanvas-body {
    margin-top: 30px;
  }

  .navbar .offcanvas-body ul li a {
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
  }

  .hero h3 {
    font-size: 16px;
  }
  .navbar {
    background-color: #11100e;
  }
  .partners .content-wrapper h3 {
    font-size: 22px;
  }
  .articles .article-card h4 {
    font-size: 30px;
    margin-bottom: 2px;
  }
  .articles .article-card .artice-text {
    font-size: 16px;
    min-height: 200px;
  }

  .articles .article-card p {
    font-size: 16px;
  }

  .articles {
    padding: 50px 0;
  }
  .tips {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .tips > .container > .row {
    display: none;
  }
  .tips .wrapper .row {
    row-gap: 15px;
  }
  .tips .quotes span {
    font-size: 14px;
  }
  .tips .quotes span {
    min-width: 60px;
  }
  .tips .quotes {
    justify-content: start;
  }
  .payout .grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .title,
  .bonus h2 {
    font-size: 24px;
  }
  .top-features-title {
    font-size: 30px;
    margin: 35px 0;
  }
  .tips h4 {
    font-size: 20px;
  }
  .bonus h4 {
    font-size: 16px;
  }
  .button {
    font-size: 14px;
  }
  .txt {
    font-size: 16px;
  }
  .sport-blog .wrapper h5 {
    font-size: 14px;
  }
  .articles .article-card h4 {
    font-size: 20px;
  }
  .articles .article-card a {
    font-size: 16px;
  }

  .bonus h2 {
    font-size: 36px;
  }

  .bonus .btns-wrapper {
    flex-direction: column;
    row-gap: 15px;
    align-items: start;
  }
  .app,
  .bonus {
    background-position: left;
  }
  .privacy-policy ul li a {
    font-size: 14px;
  }
  .lastline .wrapper p {
    font-size: 11px;
    order: 2;
  }
  footer {
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero .content-wrapper {
    width: 100%;
  }
  .navbar .navbar-brand img {
    max-width: 60%;
  }
  .menu {
    top: unset;
    bottom: 10%;
  }
  .hero-banner .bg {
    background-position: 65%;
  }
  .hero-banner-news-page .content-wrapper {
    top: unset;
    bottom: 10%;
  }
  .hero .bg {
    background-position: 30%;
  }
  .hero,
  .hero .content-wrapper {
    min-height: 80dvh;
  }

  .hero .content-wrapper div {
    padding-bottom: 0;
    position: absolute;
    top: 20%;
  }

  .hero .content-wrapper div p {
    padding: 0 15px;
  }

  .updates p.msk {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  .app .bg {
    background-position: 67%;
  }

  .news-content {
    margin-top: 50px;
  }

  .news-content h2 {
    font-size: 28px;
  }

  .page-navigator .wrapper .pages p {
    font-size: 14px;
  }

  .page-navigator .wrapper h3 {
    font-size: 16px;
  }

  .page-navigator .page-navigator-devider {
    min-height: 60px;
  }

  .page-navigator .wrapper .pages p {
    margin-bottom: 5px;
  }

  .page-navigator .wrapper img {
    display: none;
  }

  .page-navigator .col-xl-4:first-of-type .wrapper {
    justify-content: end;
  }

  .news-navigator .news-navigator-single-text {
    padding-left: 0;
  }

  .news-navigator .news-navigator-single-text h3 {
    font-size: 18px;
  }

  .hero,
  .hero .content-wrapper {
    min-height: 60dvh;
  }

  .top-features-table h3 {
    font-size: 18px;
  }

  .top-features-table .col-xl-4 div {
    justify-content: start;
  }

  .top-features-table .col-xl-4 div img {
    max-width: 70px;
  }

  .special-title {
    font-size: 30px;
  }

  .betting-welcome-bonus ul li p {
    font-size: 15px;
  }

  .betting-welcome-bonus ul {
    padding: 0 15px;
  }

  .mobile-nav .list-unstyled {
    display: flex;
    flex-direction: column;
  }
    .tickets .ticket-card .ticket-footer {
    flex-direction: row;
    align-items: center;
  }

  .tickets .ticket-card .ticket-footer p,
  .tickets .ticket-card .ticket-footer span {
    font-size: 10px;
  }

  .tickets .ticket-card .ticket-footer div {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

@media only screen and (max-width: 390px) {
  .hero,
  .hero .content-wrapper {
    min-height: 80dvh;
  }
  .tickets .ticket-card .ticket-footer p {
    margin-bottom: 10px;
  }
  .special-title {
    font-size: 24px;
  }
}

/* new header code */

.desktop-nav ul li a {
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-weight: 500;
}

.desktop-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-button-color);
  transition: width 0.3s ease;
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

.dropdown-parent .dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-parent:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header.header-2 .dropdown li a[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

/* Mobile Enhancements */
.offcanvas {
  transition: transform 0.3s ease-in-out;
}

.navbar-toggler {
  transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] {
  transform: rotate(90deg);
}

.desktop-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Responsive Handling */
@media (max-width: 1299.98px) {
  .desktop-nav,
  .firstline {
    display: none !important;
  }
}

@media (min-width: 1299px) {
  .mobile-nav {
    display: none !important;
  }
}