* {
  padding: 0;
  margin: 0;
}
:root {
  --primaryClr: #7918c0;
  --secondaryClr: #21094e;
  --whiteClr: #fff;
  --darkClr: #000;
  --darkBGClr: #373435;
  --grayClr: #70757a;
  --darkgrayClr: #727376;
  --siteGreenClr: #28a745;
  --siteYellowClr: #f9a40b;
}
@font-face {
  font-family: cera-black;
  src: url(../fonts/CeraPro-Black.eot);
  src: url(../fonts/CeraPro-Blackd41d.eot?#iefix) format('embedded-opentype'),
    url(../fonts/CeraPro-Black.html) format('woff2'),
    url(../fonts/CeraPro-Black.woff) format('woff'),
    url(../fonts/CeraPro-Black.ttf) format('truetype'),
    url(../fonts/CeraPro-Black.svg#CeraPro-Black) format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: cera-medium;
  src: url(../fonts/CeraPro-Medium.eot);
  src: url(../fonts/CeraPro-Mediumd41d.eot?#iefix) format('embedded-opentype'),
    url(../fonts/CeraPro-Medium.html) format('woff2'),
    url(../fonts/CeraPro-Medium.woff) format('woff'),
    url(../fonts/CeraPro-Medium.ttf) format('truetype'),
    url(../fonts/CeraPro-Medium.svg#CeraPro-Medium) format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: cera-light;
  src: url(../fonts/CeraPro-Light.eot);
  src: url(../fonts/CeraPro-Lightd41d.eot?#iefix) format('embedded-opentype'),
    url(../fonts/CeraPro-Light.html) format('woff2'),
    url(../fonts/CeraPro-Light.woff) format('woff'),
    url(../fonts/CeraPro-Light.ttf) format('truetype'),
    url(../fonts/CeraPro-Light.svg#CeraPro-Light) format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: cera-bold;
  src: url(../fonts/CeraPro-Bold.eot);
  src: url(../fonts/CeraPro-Boldd41d.eot?#iefix) format('embedded-opentype'),
    url(../fonts/CeraPro-Bold.html) format('woff2'),
    url(../fonts/CeraPro-Bold.woff) format('woff'),
    url(../fonts/CeraPro-Bold.ttf) format('truetype'),
    url(../fonts/CeraPro-Bold.svg#CeraPro-Bold) format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: cera;
  src: url(../fonts/CeraPro-Regular.eot);
  src: url(../fonts/CeraPro-Regulard41d.eot?#iefix) format('embedded-opentype'),
    url(../fonts/CeraPro-Regular.html) format('woff2'),
    url(../fonts/CeraPro-Regular.woff) format('woff'),
    url(../fonts/CeraPro-Regular.ttf) format('truetype'),
    url(../fonts/CeraPro-Regular.svg#CeraPro-Regular) format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body,
html {
  font-size: 14px;
  font-family: cera;
}
:focus {
  outline: 0;
  box-shadow: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button.focus,
button:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}
img {
  image-rendering: -webkit-optimize-contrast;
}
.form-group input::placeholder {
  color: #aaa;
}
.burger {
  padding: 40px 0;
}
.padTop {
  padding-top: 88px;
}
.mobile-copuright {
  display: none;
}
.primaryBtn {
  background: var(--primaryClr);
  color: var(--whiteClr);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 15px;
  border: 0;
  border-radius: 500px;
  transition: all 0.4s ease-in-out;
}
.joinBtn {
  background: var(--whiteClr);
  color: var(--darkClr);
  font-size: 18px;
  font-weight: 600;
  border-radius: 13px;
  padding: 5px 10px;
}
.slick-dots li button:before {
  font-size: 28px;
  color: #4be4b1;
  opacity: 0.3;
}
.slick-dots li.slick-active button:before {
  color: #4be4b1;
}
.header .topHead {
  background: linear-gradient(
    15deg,
    var(--secondaryClr) 20%,
    var(--primaryClr)
  );
}
.topHead .navbar-nav .nav-item {
  margin-right: 1rem;
}
.topHead .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.topHead .navbar-nav .nav-link {
  color: var(--whiteClr);
  font-size: 15px;
  padding: 0.25rem 0;
  position: relative;
  overflow: hidden;
  font-family: cera;
}
.topHead .navbar-nav .nav-item.active .nav-link,
.topHead .navbar-nav .nav-item:hover .nav-link {
  color: #e8970b;
}
.topHead .navbar-nav .nav-item.active .nav-link:after,
.topHead .navbar-nav .nav-item:hover .nav-link:after {
  left: 0;
}
.topHead .navbar-nav .cmnBtn {
  display: flex;
  justify-content: flex-end;
}
.topHead .navbar-nav .cmnBtn .nav-item .nav-link {
  border: 1px solid #bc7c48;
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
}
.topHead .navbar-nav .cmnBtn .nav-item .nav-link:after {
  content: none;
}
.topHead .navbar-nav .cmnBtn .nav-item.active .nav-link,
.topHead .navbar-nav .cmnBtn .nav-item:hover .nav-link {
  background: #bc7c48;
}
.navbar-toggler {
  position: relative;
  padding: 0.25rem 0.5rem;
  top: 2px;
  border: 0;
}
.navbar-toggler span {
  display: block;
  background-color: var(--whiteClr);
  height: 2px;
  width: 20px;
  margin: 4px 0;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  position: relative;
  left: 0;
  opacity: 1;
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -o-transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 8px;
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0.7;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 8px;
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0.7;
}
.textContent h2 {
  color: #7016b4;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #7016b4;
}
.textContent h2 span {
  font-size: 15px;
}
.main {
  margin-top: 133px;
}
.factsSliderSec h2 {
  color: var(--darkClr);
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
.factDetails {
  background: linear-gradient(0deg, #f9f9f9, #e9e9e9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 25px;
  margin: 25px 15px;
  min-height: 300px;
  border: 1px solid #6ef9c1;
  border-radius: 50px;
  box-shadow: 0 15px 20px 0 rgb(0 0 0 / 6%);
}
.factDetails .imgBox {
  background: var(--whiteClr);
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.factDetails img {
  margin: 20px auto 20px;
}
.factDetails p {
  color: var(--darkClr);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0;
  min-height: 110px;
  display: flex;
  align-items: center;
  font-family: cera;
}
.idServiceSec {
  background-image: url(../images/idServiceBG.png);
  width: 100%;
  height: auto;
  min-height: 644px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  image-rendering: -webkit-optimize-contrast;
}
.idServiceSec .details h1 {
  color: var(--siteYellowClr);
  font-size: 38px;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}
.webLinks {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.webLinks .webLinkBox a {
  color: var(--darkClr);
  font-size: 16px;
  text-align: center;
  padding: 10px 15px;
  margin: 9px 15px;
  display: block;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(0 0 0 / 40%);
  font-family: cera;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(1) a {
  background: var(--siteYellowClr);
}
.webLinks .webLinksLeft .webLinkBox:nth-child(2) a {
  background: #f9a40b;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(3) a {
  background: #fc0;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(4) a {
  background: #fff;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(5) a {
  background: #fff;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(6) a {
  background: #f9a40b;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(7) a {
  background: #f9a40b;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(8) a {
  background: #fff;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(9) a {
  background: #fff;
}
.webLinks .webLinksLeft .webLinkBox:nth-child(10) a {
  background: #f9a40b;
}
.webLinksLeft {
  display: grid;
  grid-template-columns: 50% 50%;
}
.cbtfAllIdPaySec .BGImg {
  position: relative;
  background-image: url(../images/cbtfAllIdPayBG.png);
  width: 100%;
  height: auto;
  min-height: 568px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  image-rendering: -webkit-optimize-contrast;
}
.cbtfAllIdPaySec .details {
  display: flex;
  justify-content: center;
  margin-top: -215px;
}
.cbtfAllIdPaySec .contentBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--whiteClr);
  min-width: 180px;
  height: 100%;
  min-height: 230px;
  padding: 15px;
  margin: 0 15px;
  border: 2px solid transparent;
  border-radius: 40px;
  box-shadow: 0 12px 16px rgb(0 0 0 / 18%);
}
.cbtfAllIdPaySec .contentBox:nth-child(odd) {
  border-color: #4be4b1;
}
.cbtfAllIdPaySec .contentBox.mt-cmn {
  margin-top: 60px;
  margin-bottom: 20px;
}
.cbtfAllIdPaySec .contentBox img {
  margin-bottom: 20px;
}
.cbtfAllIdPaySec .contentBox p {
  color: var(--darkClr);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0;
  font-family: cera;
}
.youtubeChannelSec .youtubeHead {
  display: flex;
  justify-content: space-between;
}
.youtubeChannelSec .youtubeHead h1 {
  font-size: 40px;
}
.youtubeChannelSec .youtubeTag {
  background: #cd201f;
  border-radius: 30px 30px 0 0;
  margin-right: 60px;
  padding: 15px;
  display: flex;
  align-items: center;
}
.youtubeChannelSec .imgBox img {
  border-radius: 65px;
  box-shadow: 0 8px 14px rgba(0 0 0 / 22%);
}
.youtubeChannelSec .contentDetails {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: -1;
}
.youtubeChannelSec .contentDetails .detailBox {
  background: #4be4b1;
  padding: 25px 15px;
  margin: 0 10px;
  min-width: 130px;
  height: fit-content;
  border: 2px solid #61fabd;
  border-top: 0;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 14px rgba(0 0 0 / 22%);
}
.youtubeChannelSec .contentDetails p {
  color: var(--darkClr);
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0;
}
.footerSec {
  background: linear-gradient(
    15deg,
    var(--secondaryClr) 20%,
    var(--primaryClr)
  );
}
.footerSec p {
  color: var(--whiteClr);
  margin-bottom: 0;
  font-size: 15px;
  font-family: sans-serif;
}
.footerSec .socialLinks {
  display: flex;
  justify-content: flex-end;
}
.footerSec .socialLinks li {
  margin: 0 5px;
}
.footerSec .socialLinks a {
  background: var(--whiteClr);
  width: 35px;
  height: 35px;
  line-height: 3;
  text-align: center;
  display: block;
  border-radius: 50%;
}
.footerSec .socialLinks a:hover {
  border-radius: 0 10px 0 10px;
  transform: rotate(-360deg);
}
.footerSec .socialLinks i {
  color: #7717bd;
  font-size: 22px;
}
.footerSec .cprtLink {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.footerSec .cprtLink .links a {
  color: var(--whiteClr);
  font-size: 15px;
  font-family: sans-serif;
  margin-left: 25px;
  position: relative;
}
.footerSec .cprtLink .links a:first-child:after,
.footerSec .cprtLink .links a:first-child:before {
  position: absolute;
  content: '';
  top: 0;
  background: var(--whiteClr);
  width: 1px;
  height: 100%;
}
.footerSec .cprtLink .links a:first-child:after {
  left: -12px;
}
.footerSec .cprtLink .links a:first-child:before {
  right: -15px;
}
.coming-soon {
  height: 100vh;
  background-image: url(../images/cmngsoon.jpg);
  background-position: center;
  background-size: cover;
}
.coming-soon span {
  color: #fff;
  position: absolute;
  display: block;
  top: 50%;
  bottom: 50%;
  margin-left: auto;
  width: 100%;
  text-align: center;
  float: left;
  font-size: 80px;
}
.t_social_icon a {
  background: var(--whiteClr);
  width: 35px;
  height: 35px;
  line-height: 3;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}
.t_social_icon a i {
  color: #7717bd;
  font-size: 22px;
}
.topHead .navbar-nav .nav-item {
  margin-right: 2rem;
}
.burger {
  padding: 20px 0 40px;
}
.cbtfAllIdPaySec .contentBox.mt-cmn {
  margin-bottom: 40px;
}
.factsSliderSec {
  margin-bottom: 15px;
}
.factsSliderSec,
.youtubeChannelSec {
  background: #f3f3f3;
}
.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 25%;
  bottom: auto;
  opacity: 1;
}
.carousel-control-next span,
.carousel-control-prev span {
  font-size: 0;
}
.carousel-control-next .carousel-control-next-icon,
.carousel-control-prev .carousel-control-prev-icon {
  height: 62px;
  width: 62px;
}
.carousel-control-prev-icon {
  background: url(../images/icon_prev_rounded.png) no-repeat;
  background-position: center;
}
.carousel-control-next-icon {
  background: url(../images/icon_next_rounded.png) no-repeat;
  background-position: center;
}
.services p {
  font-size: 24px;
  font-family: cera;
}
:is(.cbtf_styling) :is(h1, h2, h3, h4, h5, h6) {
  color: #2a0a5a;
  font-family: cera-bold;
}
/* .cbtf_styling ul li, .cbtf_styling ol li {
    font-size: 20px;
    font-family: cera-bold;
} */
.cbtf_styling ul li,
.cbtf_styling ol li {
  font-size: 18px;
  font-family: cera-bold;
}
/* .cbtf_styling ul {
    list-style: unset;
    padding-left: 22px;
} */
.cbtf_styling ul {
  list-style: unset;
  padding-left: 22px;
  margin-bottom: 15px;
}
/* .cbtf_styling ol {
    list-style: auto;
    padding-left: 22px;
} */
.cbtf_styling ol {
  list-style: auto;
  padding-left: 22px;
  margin-bottom: 15px;
}
.cbtf_styling ol li ul li {
  list-style: disc;
}
.s-ls-none {
  list-style: disc;
  padding-left: 18px;
}
.os-ls-none {
  list-style: revert;
  padding-left: 18px;
}

/* 21 feb */
.tips_main_section {
  padding: 60px 0;
}
.tips_banner_section img {
  max-width: 100%;
}
.tip_title {
  color: #120555;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  border-bottom: 5px solid  #EEEEEE;
  padding-bottom: 12px;
}
.tip_cnt_section {
  text-align: justify;
}
.custom_live_match {
  /* background: #fff; */
  background: #f5f7f9;
  /* box-shadow: 0 0 10px #ccc; */
  border-radius: 5px;
  /* padding: 15px; */
  overflow: hidden;
  /* margin-bottom: 35px; */
  /* margin-top: 45px; */
  position: sticky;
    top: 200px;
}
.custom_live_match h4 {
  /* background: #3612d5; */
  background: #120555;
  padding: 13px;
  color: #fff;
  text-align: center;
}
.live_team_style img {
  max-width: 40px;
  display: table !important;
    margin: auto;
}

.live_team_style {
  text-align: center;
}

.live_team_style h5 {
  margin-top: 10px;
}
.custom_teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  padding-top: 0;
}
.date_location {
  text-align: center;
  border-bottom: 1px solid #d7d6d6;
  padding-bottom: 10px;
  /* margin-bottom: 20px; */
}
.date_location span {
  margin: 0 10px;
}
.live-btn {
  text-align: center;
  padding: 13px;
  padding-bottom: 5px;
}

.live-btn a {
  font-size: 20px;
  color: #e8970b;
}


/* #main_pills {
  margin: 50px 0;
} */

#main_pills #faq .card {
  margin-bottom: 20px;
  border: 0;
}

#main_pills #faq .card .card-header {
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
          box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 0;
}

#main_pills #faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  background: #fff;
  color: #222;
  padding: 8px;
  font-size: 20px;
  padding-left: 80px;
  position: relative;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
#main_pills #faq .card .card-header .btn-header-link:focus {
  box-shadow: none;
}
#main_pills #faq .card .card-header .btn-header-link:focus-visible {
  outline:none;
  border: none;
}

#main_pills #faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
  display: none;
}

#main_pills #faq .card .card-header .btn-header-link.collapsed {
  background: #fff;
  color: #000;
}

#main_pills #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
  display: none;
}

#main_pills #faq .card .collapsing {
  background: #fff;
  line-height: 30px;
}

#main_pills #faq .card .collapse {
  border: 0;
}

#main_pills #faq .card .collapse.show {
  background: #fff;
  line-height: 30px;
  color: #222;
}
.ipl-records-section {
  background: #F5F7F9;
  padding: 60px 0;
}
span.faq_numbring {
  position: absolute;
  /* background: #e8970b; */
  height: 100%;
  top: 0;
  left: 0;
  max-width: 50px;
  width: 100%;
  background: linear-gradient( 0deg, rgba(237, 201, 103, 1) 3%, rgba(210, 172, 71, 1) 41%, rgba(247, 239, 138, 1) 72%, rgba(174, 134, 37, 1) 96% );
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.record_div {
  margin-bottom: 30px;
}
section.tips_blog_section {
  padding: 60px 0;
}
.blog_box_img img {
  max-width: 100%;
}
.blog_box h3 {
  margin-top: 15px;
  /* font-size: 28px; */
  color: #120555;
  font-weight: 700;
}
.blog_box {
  background: #fff;
  box-shadow: 0 0 10px #ccc;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 35px;
}
/* 23 feb */
.right_side_blog .blog_box h3 {
  font-size: 20px;
}
.all_blog_btn{
  text-align: center;
}
.all_blog_btn a {
  /* background: linear-gradient( 0deg, rgba(237, 201, 103, 1) 3%, rgba(210, 172, 71, 1) 41%, rgba(247, 239, 138, 1) 72%, rgba(174, 134, 37, 1) 96% ); */
  background: #3612D5;
  color: #fff;
  border-radius: 35px;
  font-size: 26px;
  font-weight: 400;
  padding: 6px 64px;
  margin: 15px 0 0 0;
  display: inline-block;
  transition: all 0.5s ease;
  text-decoration: none;
}
.all_blog_btn a:hover {
  /* background: linear-gradient( 0deg, rgb(174, 134, 37) 3%, rgb(247, 239, 138) 41%, rgb(210, 172, 71) 72%, rgb(237, 201, 103) 96% ); */
  background: #250C95;
}
.cbtf_faqs.cbtf_faqs_inner.tips_faq {
  background: #F5F7F9;
  padding: 60px 0 125px 0;
}
.live_styling_change .owl-nav button {
  background: #120555;
  display: inline-flex;
  width: 35px;
  height: 35px;
  margin: 0 10px;
  border-radius: 100%;
  border: none;
  color: #000;
  align-items: center;
  justify-content: center;
}

.live_styling_change .owl-nav {
  text-align: center;
  margin-bottom: 30px;
  margin-top: -10px;
}
.live_styling_change .owl-nav button img {
  max-width: 17px;
  filter: brightness(0) invert(1);
}
.match_schedule {
  background: #F5F7F9;
  padding: 60px 0;
}
.match_point_table {
  background: #fff;
  padding: 60px 0;
}
.table.table_styl .thead-dark th {
  background-color: #1e58aa;
  border-color: #1e58aa;
  border: 0;
}
.table.table_styl tbody tr:nth-child(odd) {
  background: #d8dfee;
}
.table.table_styl tbody tr:nth-child(even) {
  background: #eef1f8;
}
.custom_table_scroll {
  overflow-y: auto;
  max-height: 538px;
}
.table_styl thead {
  position: sticky;
  top: 0;
}
.table_bg {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}
td.flags_imgs img {
  width: 24px;
  height: 24px;
}
td.flags_imgs {
  display: flex;
  /* align-items: center; */
  column-gap: 7px;
}
td.flags_imgs .number {
  width: 25px;
}
table.table.table_styl td, table.table.table_styl th {
  border-top: 0px solid #dee2e6;
}
/* 20 march 2023 start*/
.tip_cnt_section ul {
  /* padding-left: 20px; */
  margin-bottom: 15px;
  /* font-style: italic; */
}
.tip_cnt_section ul li {
  list-style: inside;
}
.team_mmbr h4 {
  font-weight: 600;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #e8970b;
}

.team_mmbr p {
    margin-bottom: 5px;
}

.team_mmbr {
    margin: 15px 0 20px 0;
}
.cb_read_btn.tip_btn {
  padding: 7px 25px;
  margin-top: 10px;
}
.cb_read_btn.tip_btn:hover {
  background: #250c95;
  border-color: #250c95;
}
.event_box {
  background-color: #222;
  border-radius: 12px;
  color: #fff;
  /* padding: 10px; */
  margin-bottom: 25px;
}
.event_heading {
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid #ccc;
}

.event_heading h3 {
  margin-bottom: 0;
  font-size: 18px;
}
.event_country {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}
.event_country_map img {
  max-height: 70px;
  border-radius: 100%;
}
.event_country_map {
  text-align: center;
}
.event_country_map span {
  display: inline-block;
}
.event_score {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 50%;
  width: 100%;
}
.ev-score h3 {
  font-size: 16px;
}
.event_cnt {
  padding: 40px 30px;
}
.event_country_map {
  text-align: center;
  max-width: 25%;
}
.ev_score_left {
  text-align: right;
  border-right: 1px solid #595959;
}
.ev-score {
  max-width: 50%;
  width: 100%;
  padding: 18px 12px;
  height: 124px;
}
.event_content p {
  color: #8a8a8a;
  font-size: 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.event_content {
  text-align: center;
}
.event_content h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.event_content h4 {
  color: #ffdd15;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}
.event_button a {
  background-color: #ffdd15;
  border-radius: 12px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 40px;
  text-transform: uppercase;
}
section.event-section {
  padding: 60px 0;
}
.event-section .col-md-12:last-child .event_box {
  margin-bottom: 0;
}
.women_cricket_section {
  background: #F5F7F9;
  padding: 60px 0;
  clear: both;
}
.tips-white-section {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
}
.Probability_section {
  background: #fff;
  padding: 15px 20px 30px 20px;
  border-radius: 4px;
}
.Probability_heading h2 {
  font-size: 24px;
  text-align: center;
}
.Probability_percentage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 23px 0;
}
.Probability_percentage_data h3 span {
  display: block;
}
.Probability_percentage_data h3 {
  font-size: 18px;
}
.prediction-section {
  text-align: center;
  margin-top: 40px;
  border-top: 2px solid #f5f7f9;
  padding-top: 25px;
}
.prediction-section h3 {
  font-weight: 600;
  margin-bottom: 20px;
}
.custom_tooltip {
  position: relative;
}

span.custom_tooltiptext {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 10px #ccc;
  padding: 10px;
  font-size: 14px;
  line-height: normal;
  display: none;
  text-align: left;
}
.custom_tooltip:hover .custom_tooltiptext {
  display: block;
}
.custom_tooltip {
  position: relative;
  top: -5px;
  text-align: right;
}
.custom_tooltip i {
  color: #e8970b;
}
.tips-white-section p {
  position: relative;
  padding-left: 22px;
}

.tips-white-section p:before {
  position: absolute;
  left: 0;
  content: "";
  background: #120555;
  width: 8px;
  height: 8px;
  top: 9px;
  border-radius: 2px;
}
/* 20 march 2023 end*/
@media screen and (max-width: 1300px) {
  .topHead .navbar-nav .nav-item {
    margin-right: 2rem;
  }
  .idServiceSec {
    min-height: 500px;
  }
}
@media screen and (max-width: 1080px) {
  .idServiceSec {
    min-height: 400px;
  }
}
@media screen and (max-width: 991px) {
  .carousel-control-next,
  .carousel-control-prev {
    top: 40%;
  }
  .carousel-control-next .carousel-control-next-icon,
  .carousel-control-prev .carousel-control-prev-icon {
    height: 40px;
    width: 40px;
    background-size: cover;
  }
  .factsSlider .slick-next:before,
  .factsSlider .slick-prev:before {
    font-size: 0;
    width: 60px;
    height: 60px;
    display: inline-block;
  }
  .factsSlider .slick-prev {
    left: -50px;
    width: 60px;
    height: 60px;
    zoom: 0.6;
  }
  .factsSlider .slick-prev:before {
    background: url(../images/icon_prev.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .factsSlider .slick-next {
    right: -50px;
    width: 60px;
    height: 60px;
    zoom: 0.6;
  }
  .factsSlider .slick-next:before {
    background: url(../images/icon_next.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .cbtfAllIdPaySec .details .slick-list {
    width: calc(100% - 140px);
    margin: 0 auto;
  }
  .cbtfAllIdPaySec .slick-next:before,
  .cbtfAllIdPaySec .slick-prev:before {
    font-size: 0;
  }
  .cbtfAllIdPaySec .details .slick-arrow {
    width: 60px;
    height: 60px;
  }
  .cbtfAllIdPaySec .details .slick-prev {
    left: 0;
    background: url(../images/icon_prev.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .cbtfAllIdPaySec .details .slick-next {
    right: 0;
    background: url(../images/icon_next.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .service_logo {
    zoom: 0.6;
  }
  .services p {
    font-size: 20px;
  }
  .blog_box h3 {
    font-size: 20px;
}
}
@media screen and (max-width: 768px) {
  .factsSlider {
    zoom: 0.8;
    width: 85%;
    margin: 0 auto;
  }
  .cbtfAllIdPaySec {
    padding-top: 0 !important;
  }
  .cbtfAllIdPaySec .details .slick-list {
    zoom: 0.8;
  }
  .services p {
    font-size: 18px;
  }
  .service_logo {
    zoom: 0.45;
  }
}
@media screen and (max-width: 576px) {
  .carousel-control-next .carousel-control-next-icon,
  .carousel-control-prev .carousel-control-prev-icon {
    height: 30px;
    width: 30px;
    background-size: cover;
  }
  .cbtfAllIdPaySec .details .slick-list {
    zoom: 0.6;
  }
  .cbtfAllIdPaySec .details .slick-arrow {
    zoom: 0.6;
  }
  .cbtfAllIdPaySec .details {
    margin-top: -200px !important;
  }
  .services p {
    font-size: 10px;
    margin-top: 10px;
  }
  .last-second-bar .col-sm-6 {
    padding: 0;
    margin-bottom: 5px !important;
  }
  .last-second-bar .col-sm-4 {
    padding: 0;
    margin-bottom: 5px !important;
  }
  .cbtfAllIdPaySec.burger {
    margin-top: -50px;
    max-height: 500px;
  }
  .web-links-zoom {
    transform: scale(0.9);
  }
  .mobile-copuright {
    color: #fff;
    font-family: sans-serif;
    font-size: 11px;
    display: inline-block;
  }
  .copyright {
    display: none;
  }
  .footerSec .cprtLink .links a {
    color: var(--whiteClr);
    font-size: 10px;
    font-family: sans-serif;
    margin-left: 11px;
    position: relative;
  }
  .priv:after {
    right: -15px;
  }
  .priv:after {
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    top: 0;
    position: absolute;
    right: -8px;
  }
  .mobile-copuright:after {
    content: '';
    width: 1px;
    height: 15px;
    background: #fff;
    top: 0;
    position: absolute;
    margin-left: 8px;
    top: 28px;
  }
}
@media screen and (max-width: 420px) {
  .webLinks {
    flex-direction: column;
  }
  .cbtfAllIdPaySec .details {
    margin-top: -300px !important;
  }
}
@media screen and (max-width: 320px) {
  .cbtfAllIdPaySec .details {
    margin-top: -350px !important;
  }
}
.allIdPay {
  width: 100% !important;
}
.BGImg {
  padding-left: 100px;
  padding-top: 65px;
  font-size: 20px;
  font-family: cera;
}
.cbtfAllIdPayTitle {
  font-size: 50px;
  max-width: 55%;
  line-height: 50px;
  margin-top: 30px;
}
.allIdPay a img {
  box-shadow: -5px 5px 20px 0 rgb(0 0 0 / 40%);
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .BGImg {
    padding-left: 40px;
    padding-top: 45px;
  }
}
@media screen and (max-width: 991px) {
  .cbtfAllIdPaySec .BGImg a,
  .cbtfAllIdPaySec .BGImg p {
    display: none;
  }
}
.inner {
  background: #ebebeb;
  padding: 75px 0;
}
.inner .add_slider {
  float: left;
  width: 100%;
  background: #def9ee;
  text-align: center;
  padding: 25px 30px;
  border-radius: 60px;
  border: 1px solid #91f4cc;
}
.inner .add_slider .slide {
  margin: 12px 0;
  float: left;
  width: 100%;
}
.inner .add_slider .slide img {
  max-width: 100%;
}
.inner .container {
  width: 100%;
  max-width: 1520px;
}
.tips_direct {
  background: #def9ee;
  padding: 30px;
  border-radius: 75px;
}
.tips_content,
.tips_pic {
  padding: 0 30px;
}
.tips_pic {
  flex: 0 0 45%;
  max-width: 45%;
}
.tips_content {
  flex: 0 0 55%;
  max-width: 55%;
}
.tips_pic img {
  border-radius: 100%;
  max-width: 100%;
}
.tips_content p {
  font-family: cera;
  font-size: 36px;
  line-height: 46px;
}
.tips_content p span {
  font-size: 52px;
  float: left;
  width: 100%;
}
.service_contact {
  margin-top: 50px;
}
.service_contact span {
  max-width: 48%;
}
.service_contact span img {
  max-width: 100%;
}
.inner_slider_ss {
  background: #bcf3dd;
  border-radius: 45px;
  padding: 30px;
  margin-top: 50px;
}
.mobieView_slider {
  background: #def9ee;
  border-radius: 45px;
  padding: 30px;
  margin-top: 50px;
}
.neon-slider .slick-list {
  width: calc(100% - 120px);
  margin: 0 auto;
  zoom: 0.7;
}
.neon-slider .slick-arrow {
  width: 44px;
  height: 44px;
  font-size: 0;
}
.neon-slider .slick-arrow:before {
  content: unset;
}
.neon-slider .slick-prev {
  left: 0;
  background: url(../images/icon_slider_prev.png) no-repeat;
}
.neon-slider .slick-next {
  right: 0;
  background: url(../images/icon_slider_next.png) no-repeat;
}
.slider_accurate {
  background: url(../images/accurate.png) no-repeat center;
  background-size: contain;
  max-width: 340px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 21px;
  padding-bottom: 15px;
}
.slider_content {
  max-width: 340px;
  font-size: 22px;
  text-align: center;
  line-height: 22px;
  font-family: cera;
  padding: 0 40px;
  margin-top: 20px;
}
.slider_content a {
  display: inline-block;
  margin-top: 20px;
}
@media screen and (max-width: 1550px) {
  .inner .container {
    max-width: 1336px;
  }
}
@media screen and (max-width: 1366px) {
  .inner .container {
    max-width: 1100px;
  }
  .tips_content p {
    font-size: 30px;
    line-height: 40px;
  }
  .tips_content p span {
    font-size: 36px;
  }
}
@media screen and (max-width: 1140px) {
  .inner .container {
    max-width: 992px;
  }
  .neon-slider .slick-list {
    zoom: 0.6;
  }
  .inner_slider_ss,
  .service_contact {
    margin-top: 30px;
  }
  .tips_content p {
    font-size: 26px;
    line-height: 30px;
  }
  .tips_content p span {
    font-size: 35px;
  }
}
@media screen and (max-width: 991px) {
  .inner {
    padding: 50px 0;
  }
  .inner .container {
    max-width: 768px;
  }
  .tips_pic {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .tips_direct {
    padding: 30px 20px;
  }
  .tips_content {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .tips_content,
  .tips_pic {
    padding: 0 10px;
  }
  .tips_content p {
    font-size: 20px;
  }
  .tips_content p span {
    font-size: 30px;
  }
  #inner_slider {
    zoom: 0.8;
  }
  .slider_content {
    font-size: 26px;
    line-height: 26px;
  }
  .slider_content img {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .inner .container {
    max-width: 100%;
  }
  .neon-slider {
    zoom: 1;
  }
  .neon-slider .slick-list {
    zoom: 1;
    width: calc(100% - 0px);
    max-width: 80%;
  }
  .inner_slider_ss {
    border-radius: 0;
  }
  .tips_direct {
    flex-direction: column;
    text-align: center;
    width: calc(100% - 60px);
    margin-left: 30px;
    border-radius: 50px;
    padding: 20px 20px 0;
  }
  .tips_content,
  .tips_pic {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px;
  }
  .tips_pic {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px;
  }
  .tips_content p {
    font-size: 30px;
    line-height: 40px;
  }
  .tips_content p span {
    font-size: 40px;
  }
  .service_contact {
    flex-direction: column;
    padding: 0 30px;
  }
  .service_contact span {
    max-width: 100%;
    margin: 15px 0;
  }
  .mobieView_slider {
    border-radius: 0;
  }
  #mobieView_slider .slick-list {
    width: calc(100% - 180px);
    zoom: 0.86;
    margin: 0 auto;
  }
  #mobieView_slider .slick-next:before,
  #mobieView_slider .slick-prev:before {
    font-size: 0;
  }
  #mobieView_slider .slick-arrow {
    height: 40px;
    width: 40px;
  }
  #mobieView_slider .slick-prev {
    left: 0;
    background: url(../images/icon_slider_prev.png) no-repeat center;
    background-size: cover;
  }
  #mobieView_slider .slick-next {
    right: 0;
    background: url(../images/icon_slider_next.png) no-repeat center;
    background-size: cover;
  }
  .order-change-1{
    order:1;
  }
  .order-change-2{
    order:2;
  }
  .custom_live_match {
    margin-bottom: 35px;
    margin-top: 0;
}
.Probability_section {
  margin-top: 25px;
}

}
@media screen and (max-width: 680px) {
  #mobieView_slider .slick-list {
    width: calc(100% - 300px);
    zoom: 0.88;
  }
  .tips_content {
    padding: 30px 0;
  }
}
@media screen and (max-width: 576px) {
  #mobieView_slider .slick-list {
    width: calc(100% - 200px);
    zoom: 0.88;
  }
  .tips_content p {
    font-size: 20px;
    line-height: 30px;
  }
  .tips_content p span {
    font-size: 32px;
  }
}
@media screen and (max-width: 414px) {
  #mobieView_slider .slick-list {
    width: calc(100% - 120px);
    zoom: 0.7;
  }
  .neon-slider .slick-list {
    width: calc(100% - 0px);
    zoom: 0.9;
    max-width: 100%;
  }
  .tips_content p {
    font-size: 16px;
    line-height: 24px;
  }
  .tips_content p span {
    font-size: 24px;
  }
}
@media screen and (max-width: 376px) {
  #mobieView_slider .slick-list {
    width: calc(100% - 120px);
    zoom: 0.63;
  }
  .neon-slider .slick-list {
    zoom: 0.82;
  }
}
@media screen and (max-width: 320px) {
  .mobieView_slider {
    padding: 30px 5px;
  }
  #mobieView_slider .slick-list {
    zoom: 0.61;
  }
  #mobieView_slider .slick-arrow {
    zoom: 0.8;
  }
  .neon-slider {
    zoom: 0.8;
  }
}
.web-menus-mon {
  display: flex;
}
.menu-mob-top {
  display: none;
}
@media (max-width: 520px) {
  .web-menus-mon {
    display: none;
  }
  .menu-mob-top {
    display: block;
  }
  .navbar-top {
    background: #22114f;
    width: 100%;
    float: left;
    padding: 10px;
  }
  .tele-as {
    float: left;
  }
  .top-bar {
    width: 100%;
    float: left;
    border: 0;
    padding-top: 10px;
  }
  .logo-sec {
    width: 50%;
    float: left;
  }
  .logo-sec img {
    width: 120px;
    margin-top: -5px;
  }
  .ham-menu-sider {
    width: 50%;
    float: right;
  }
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 20px;
    text-align: left;
    overflow: hidden;
    box-shadow: #0000003d 0 0 10px 0;
  }
  .sidenav a {
    padding: 20px 35px;
    text-decoration: none;
    font-size: 16px;
    color: #111;
    display: block;
    transition: 0.3s;
  }
  .sidenav a:hover {
    color: #111;
    background: #f7f7f7;
  }
  .sidenav .closebtn {
    text-align: right;
    font-size: 36px;
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .sidenav .closebtn:hover {
    background: #fff;
  }
}
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 22px;
  }
}
.menuadnim {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 25px;
}
.menuadnim span {
  margin: 0 auto;
  position: relative;
  top: 12px;
}
.menuadnim span:after,
.menuadnim span:before {
  position: absolute;
  content: '';
}
.menuadnim span,
.menuadnim span:after,
.menuadnim span:before {
  width: 40px;
  height: 6px;
  background-color: #fff;
  display: block;
  border-radius: 40px;
}
.menuadnim span:before {
  margin-top: -12px;
}
.menuadnim span:after {
  margin-top: 12px;
}
.example7 span {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.example7:hover span {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.example7 span:before {
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.example7:hover span:before {
  margin-top: 0;
  -webkit-transform: rotate(22.5deg) skewX(22.5deg);
  transform: rotate(22.5deg) skewX(22.5deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}
.example7 span:after {
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.example7:hover span:after {
  margin-top: 0;
  -webkit-transform: rotate(-22.5deg) skewX(-22.5deg);
  transform: rotate(-22.5deg) skewX(-22.5deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}
@media (max-width: 520px) {
  .menuadnim {
    margin: 5px;
    padding-top: 11px;
    margin-top: 0;
  }
  .menuadnim span,
  .menuadnim span:after,
  .menuadnim span:before {
    width: 29px;
    height: 4px;
  }
  .banner {
    margin-top: 80px;
  }
}
.cbtfspeed247 {
  background-image: url(../images/cbtfspeed247.png);
  padding: 50px 0;
  margin-top: 50px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cbtfspeed247 a {
  font-size: 32px;
  text-align: center;
  color: #fff;
  display: block;
  font-family: cera;
  font-weight: 400;
  text-transform: uppercase;
}
.cbtfspeed247 .btn-get-id {
  background: #f9a40b;
  border: 1px solid #f9a40b;
  display: block;
  font-family: cera;
  font-size: 18px;
  margin: auto;
  padding: 10px 35px;
  margin-top: 15px;
  color: #fff;
  transition: 0.5s;
  text-transform: uppercase;
  border-radius: 10px;
}
.cbtfspeed247 .btn-get-id:hover {
  border: 1px solid #f9a40b;
  background: 0 0;
}
.neon-slider {
  padding: 50px 0;
}
.accurate {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 40px;
  margin: 0 15px;
  box-shadow: 0 3px 7px rgb(0 0 0 / 16%);
}
.accurate h2 {
  font-size: 25px;
  color: #2a0a5a;
  text-align: center;
  margin-bottom: 10px;
  font-family: cera-bold;
}
.accurate p {
  font-size: 17px;
  color: #726c6c;
  font-family: cera-medium;
  text-align: center;
  text-transform: uppercase;
}
.secondaryClr .social-icon span {
  font-family: cera-light;
}
.accurate .join {
  color: #000;
  margin-top: 15px;
}
.accurate a {
  margin: auto;
  display: block;
}
.accurate a .telegram-btn {
  background: #0087cb;
  border: 1px solid #0087cb;
  color: #fff;
  font-family: cera;
  border-radius: 10px;
  font-size: 23px;
  margin: auto;
  display: inherit;
  transition: 0.5s;
  text-transform: uppercase;
}
.offerns {
  padding-left: 48px;
}
.accurate .telegram-btn:hover {
  opacity: 0.8;
}
.accurate img {
  margin-right: 10px;
}
.neon-slider .slick-arrow {
  width: 44px;
  height: 44px;
  font-size: 0;
}
#inner_slider_two .slick-prev {
  left: 0;
}
#inner_slider_two .slick-next {
  right: 0;
}
.neon-slider .slick-next:before,
.slick-prev:before {
  display: none;
}
.neon-slider .slick-prev {
  background-image: url(../images/left-icon.png) !important;
  z-index: 9;
}
.neon-slider .slick-next {
  background-image: url(../images/right-icon.png) !important;
  z-index: 9;
}
.secondaryClr {
  background: #21094e !important;
}
.social-icon {
  font-family: cera;
  color: #fff;
  font-size: 41px;
  text-align: center;
}
.social-icon img {
  width: 60px;
  height: 60px;
  margin: 0 4px;
}
.padding-section {
  padding: 50px 0;
}
.about-title {
  font-size: 31px;
  color: #2a0a5a;
  font-family: cera-bold;
}
/* .about_content {
    font-size: 18px;
    font-family: cera-light;
} */
.cbtf_styling p {
  font-size: 18px;
  font-family: cera-light;
}
.bg-gray-gradient {
  background: linear-gradient(15deg, #f1f1f1 20%, #797979);
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 3px 7px rgb(0 0 0 / 16%);
}
.phone_service_heading {
  font-size: 25px;
  color: #000;
  font-family: cera-light;
}
.phone_number_service {
  font-size: 27px;
  font-family: cera-medium;
  font-weight: 600;
}
.betting-btn {
  text-transform: uppercase;
  padding: 20px 25px;
  font-size: 25px;
  background: linear-gradient(15deg, #e8970b 20%, #d67616);
  box-shadow: 0 3px 7px rgb(0 0 0 / 16%);
  border-radius: 10px;
  color: #fff;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-family: cera-bold;
}
.betting-btn:hover {
  color: #fff;
  opacity: 0.8;
}
.betting-btn i {
  color: #350c68;
  margin-left: 10px;
}
.video-content {
  border-radius: 39px;
  box-shadow: 0 3px 7px rgb(0 0 0 / 16%);
}
.video-content .video-gallery {
  border-radius: 39px;
}
.video-content .video-discription {
  padding: 10px 20px;
}
.video-content .video-discription h2 {
  color: #000;
  font-size: 19px;
  font-family: cera-bold;
}
.video-content .video-discription span {
  font-family: cera-light;
  font-size: 15px;
  color: #7b7b7b;
  margin-bottom: 10px;
  display: block;
}
.video-content .video-discription p {
  font-family: cera-light;
  font-size: 14px;
  color: #000;
}
.video-content .share-icon span {
  font-size: 19px !important;
  font-family: cera-bold;
  margin-right: 20px;
}
.video-content .share-icon img {
  position: relative;
  top: 5px;
  margin-right: 6px;
}
.eye-img {
  width: 24px;
  height: 14px;
}
.contact-content {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.contact-content h1 {
  font-size: 25px;
  width: 50%;
  color: #e8970b;
  font-family: cera-bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.contact-content h2 {
  font-size: 30px;
  color: #000;
  font-family: cera-bold;
  margin-bottom: 30px;
}
.telegram-btn {
  background: #0087cb;
  border: 1px solid #0087cb;
  color: #fff;
  padding: 10px 30px;
  font-family: cera;
  border-radius: 10px;
  font-size: 17px;
  display: inherit;
  transition: 0.5s;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 20px;
}
.telegram-btn:hover {
  opacity: 0.8;
  color: #fff;
}
.telegram-btn img {
  display: initial;
  margin-right: 10px;
  position: relative;
  top: -2px;
}
.social-contact {
  background: #000;
  border: 1px solid #000;
  width: 50px;
  height: 50px;
  display: inline-block;
  margin: 10px;
  text-align: center;
  line-height: 50px;
  font-size: 23px;
  color: #fff;
  border-radius: 50px;
  position: relative;
  top: 8px;
  transition: 0.5s;
}
.social-contact:hover {
  color: #000;
  background: 0 0;
}
.contact-bg {
  background: #fff;
  border-radius: 39px;
  box-shadow: 0 3px 7px rgb(0 0 0 / 16%);
}
.contact-blue-gradient {
  background: linear-gradient(
    15deg,
    var(--secondaryClr) 20%,
    var(--primaryClr)
  );
  padding: 30px;
  border-radius: 39px;
  padding-bottom: 4px;
  height: 162px;
  display: table;
  width: 100%;
}
.contact-orange-gradient {
  background: linear-gradient(15deg, #e8970b 20%, #744c06);
  padding: 30px;
  border-radius: 39px;
  padding-bottom: 4px;
  height: 162px;
  display: table;
  width: 100%;
}
.middle-contact {
  display: table-cell;
  vertical-align: bottom;
}
.contact-bg .contact-blue-gradient h3,
.contact-bg .contact-orange-gradient h3 {
  color: #ffff;
  text-align: center;
  font-family: cera-medium;
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.gold-text {
  color: #e8970b;
}
.contact-bg .contact-blue-gradient p,
.contact-bg .contact-orange-gradient p {
  text-align: center;
  font-size: 18px;
  font-family: cera-medium;
}
.cbf-text {
  font-family: cera-bold;
  font-size: 20px;
}
.contact-number {
  color: #949393;
  font-family: cera-bold;
  font-size: 20px;
  margin-bottom: 16px;
}
.contact {
  padding: 10px 20px;
  border-radius: 10px;
  background: #0087cb;
  border: 1px solid #0087cb;
  color: #fff;
  transition: 0.5s;
  margin-bottom: 10px;
}
.contact:hover {
  opacity: 0.8;
}
.visitor-heading {
  background: #e8970b;
  padding: 7px 0;
}
.visitor-heading ul {
  padding: 0;
  text-align: right;
  padding-right: 12px;
}
.visitor-heading ul li {
  display: inline-block;
}
.visitor-heading ul li {
  font-size: 22px;
  font-family: cera-medium;
  color: #000;
  padding: 0 6px;
}
.footer-contact.visitor-heading ul li {
  font-size: 30px;
}
.visitor-heading ul li span:first-child {
  background: 0 0;
  color: #000;
}
.visitor-heading ul li:last-child {
  margin-left: 40px;
}
.phone-icon {
  margin-right: 10px;
  position: relative;
  top: -3px;
}
.visitor-heading ul li span {
  background: #000;
  padding: 3px 10px;
  color: #fff;
  border-radius: 6px;
  display: inline-block;
}
.footer-contact ul {
  text-align: center;
}
.number-count {
  font-size: 32px;
  font-family: cera-medium;
  color: #fff;
  margin-top: 10px;
}
.desktop-view {
  display: block;
}
.mobile-view {
  display: none;
}
.counter-img img {
  width: 230px;
}
#inner_slider_two img {
  border-radius: 39px;
  display: block;
  margin: auto;
  padding: 10px;
}

.awesome-card h4 {
  margin-bottom: 0px;
  font-size: 18px;
  margin-top: 0px;
}

.match-tips-sec {
  margin-bottom: 60px;
  margin-top: 40px;
}

.awesome-card h2 {
  margin-top: 10px;
  font-size: 26px;
  font-family: CeraGR-Bold;
}
.advance-l-head {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  font-family: cera;
}

.card-thumb {
  border-radius: 10px;
  box-shadow: #000000a8 0 0 5px;
  width: 280px;
}
.awesome-card p {
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 25px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.socials-card {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 80%;
  margin: auto;
  margin-top: 35px;
}

.socials-card a {
  background: white;
  padding: 10px;
  box-shadow: #00000078 0 0 10px 0px;
  border-radius: 70px;
}

.awesome-card {
  background: linear-gradient(211deg, #e9e9e9, #fff);
  padding: 25px 10px;
  border-radius: 15px;
  box-shadow: #00000030 0 0 8px 7px;
  border: 5px solid #6ef9c1;
}
.add_cnt_bg {
  background: url(../images/cb_footer_bg.jpg) left top no-repeat;
  background-size: cover;
  z-index: 1;
  position: relative;
  padding: 50px 0 100px 0;
  text-align: center;
  background-attachment: fixed;
}
.cb_add_content h1,
.cb_add_content h2,
.cb_add_content h3,
.cb_add_content h4,
.cb_add_content h5,
.cb_add_content h6 {
  color: #e8970b;
  font-weight: 600;
}
.cb_add_content h2 {
  font-size: 36px;
  margin: 10px 0;
}
.cb_add_logo {
  margin-bottom: 25px;
}
.cb_add_content {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}
.cb_read_btn {
  background: #f9a40b;
  border: 1px solid #f9a40b;
  display: inline-block;
  font-size: 18px;
  padding: 10px 35px;
  margin-top: 15px;
  color: #fff;
  transition: 0.5s;
  text-transform: uppercase;
  border-radius: 10px;
}
.cb_read_btn:hover {
  background: transparent;
  border: 1px solid #f9a40b;
  color: #fff;
}
.cb_add_content ul {
  margin-bottom: 20px;
}
.cb_list {
  background: #ffffff17;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  padding: 20px;
  border-radius: 7px;
  font-style: italic;
}
.cb_list li {
  line-height: normal;
  margin-bottom: 10px;
}
@media screen and (max-width: 1600px) {
  .cbtf_styling h1,
  .cb_add_content h1 {
    font-size: 28px;
  }
  .cbtf_styling h2,
  .cb_add_content h2 {
    font-size: 26px;
  }
  .cbtf_styling h3,
  .cb_add_content h3 {
    font-size: 24px;
  }
  .cbtf_styling h4,
  .cb_add_content h4 {
    font-size: 21px;
  }
  .cbtf_styling p,
  .cb_add_content p {
    font-size: 17px;
  }
  .cbtf_styling ul li,
  .cbtf_styling ol li {
    font-size: 17px;
  }
  .cb_read_btn {
    font-size: 17px;
  }
  .tips_main_section, .ipl-records-section, section.tips_blog_section {
    padding: 50px 0;
}
}
@media screen and (max-width: 1399px) {
  .cbtf_styling h1,
  .cb_add_content h1 {
    font-size: 27px;
  }
  .cbtf_styling h2,
  .cb_add_content h2 {
    font-size: 25px;
  }
  .cbtf_styling h3,
  .cb_add_content h3 {
    font-size: 23px;
  }
  .cbtf_styling h4,
  .cb_add_content h4 {
    font-size: 20px;
  }
  .cbtf_styling p,
  .cb_add_content p {
    font-size: 16px;
  }
  .cbtf_styling ul li,
  .cbtf_styling ol li {
    font-size: 16px;
  }
  .cb_read_btn {
    font-size: 16px;
  }
  .tips_main_section, .ipl-records-section, section.tips_blog_section {
    padding: 40px 0;
}
}
@media screen and (max-width: 1199px) {
  .cbtf_styling h1,
  .cb_add_content h1 {
    font-size: 26px;
  }
  .cbtf_styling h2,
  .cb_add_content h2 {
    font-size: 24px;
  }
  .cbtf_styling h3,
  .cb_add_content h3 {
    font-size: 22px;
  }
  .cbtf_styling h4,
  .cb_add_content h4 {
    font-size: 19px;
  }
  .tips_main_section, .ipl-records-section, section.tips_blog_section {
    padding: 35px 0;
}
.event_country {
  align-items: center;
  background: #424242;
  padding: 10px;
  border-radius: 3px;
}
.event_content {
  text-align: center;
  background: #424242;
  padding: 10px;
  border-radius: 3px;
  margin: 15px 0;
}
}
@media screen and (max-width: 991px) {
  .cbtf_styling h1,
  .cb_add_content h1 {
    font-size: 25px;
  }
  .cbtf_styling h2,
  .cb_add_content h2 {
    font-size: 23px;
  }
  .cbtf_styling h3,
  .cb_add_content h3 {
    font-size: 21px;
  }
  .cbtf_styling h4,
  .cb_add_content h4 {
    font-size: 18px;
  }
  .tips_main_section, .ipl-records-section, section.tips_blog_section {
    padding: 32px 0;
}
section.tips_blog_section {
  padding-bottom: 45px !important;
}

.event_time h3 {
  background: #f7f7f7;
  color: #222222;
  padding: 7px;
  text-align: center;
  border-radius: 3px;
}

.event_time {
  margin-bottom: 30px;
}
/* .event_content {
  background: #424242;
  padding: 10px;
  border-radius: 3px;
  margin: 15px 0;
} */
.event_button {
  text-align: center;
  margin-top: 20px;
}
.event_country {
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 3px;
}
}
@media screen and (max-width: 767px) {
  .cbtf_styling h1,
  .cb_add_content h1 {
    font-size: 24px;
  }
  .cbtf_styling h2,
  .cb_add_content h2 {
    font-size: 22px;
  }
  .cbtf_styling h3,
  .cb_add_content h3 {
    font-size: 20px;
  }
  .cbtf_styling h4,
  .cb_add_content h4 {
    font-size: 17px;
  }
  .cb_read_btn {
    font-size: 15px;
  }
  .tips_main_section, .ipl-records-section, section.tips_blog_section {
    padding: 30px 0;
}
.cbtf_faqs.cbtf_faqs_inner.tips_faq:after {
  background: transparent;
}
}
@media screen and (max-width: 576px) {
  .cbtf_styling h1,
  .cb_add_content h1 {
    font-size: 22px;
  }
  .cbtf_styling h2,
  .cb_add_content h2 {
    font-size: 20px;
  }
  .cbtf_styling h3,
  .cb_add_content h3 {
    font-size: 18px;
  }
  .cbtf_styling h4,
  .cb_add_content h4 {
    font-size: 16px;
  }
  .cbtf_styling p,
  .cb_add_content p {
    font-size: 15px;
  }
  .cbtf_styling ul li,
  .cbtf_styling ol li {
    font-size: 15px;
  }
  .tips_main_section, .ipl-records-section, section.tips_blog_section {
    padding: 25px 0;
}
}
