@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
.container {
  max-width: 1188px;
}
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #525768;
}
p {
  margin: 0 0 15px;
}
img {
  max-width: 100%;
}
h1 {
  font-size: 70px;
}
h2 {
  font-size: 60px;
}
h3 {
  font-size: 48px;
}
h4 {
  font-size: 36px;
}
h5 {
  font-size: 28px;
}
h6 {
  font-size: 17px;
}
h1, h2, h3, h4, h5, h6 {
  line-height: normal;
  font-weight: bold;
  margin: 0 0 15px;
}
.btn {
  border-radius: 38px;
  background: #f8bc00;
  font-weight: bold;
  font-size: 26px;
  line-height: normal;
  color: #0253dd;
  -webkit-box-shadow: 0px 3px 0px rgb(2 83 221);
  box-shadow: 0px 3px 0px rgb(2 83 221);
  padding: 22px 15px;
  width: 100%;
  max-width: 297px;
}
.btn:hover {
  background: #0253dd;
  color: #f8bc00;
  -webkit-box-shadow: 0px 3px 0px rgb(248 188 0);
  box-shadow: 0px 3px 0px rgb(248 188 0);
}
.btn-primary {
  border-radius: 40px;
  background: #1156cd;
  font-family: Rubik;
  font-weight: bold;
  font-size: 34px;
  line-height: normal;
  color: #fff;
  width: 100%;
  max-width: 360px;
  text-decoration: none !important;
  display: inline-block;
  text-align: center;
  padding: 20px 15px;
  transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
}
/*default-css-end*/
/*header-css*/
header {
  z-index: 99;
  width: 100%;
  padding: 37px 0 10px;
}
header .container {
  max-width: 1670px;
}
header .header-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0px;
}
header .header-right ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 19px;
}
header .header-right ul li:last-of-type {
  margin-left: 27px;
  margin-right: 0;
}
header .header-right ul li:not(:last-of-type) a {
  border-radius: 4px;
  background: transparent;
  border: 1.5px solid #fff;
  font-size: 18px;
  line-height: normal;
  color: #fff;
  padding: 6px 20px;
}
header .menu-outer {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all ease-in-out 0.40s;
  -webkit-transition: all ease-in-out 0.40s;
  -ms-transition: all ease-in-out 0.40s;
  -moz-transition: all ease-in-out 0.40s;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
}
header .menu-outer.show {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
}
.menu-outer .menu-inner {
  position: absolute;
  right: 0;
  height: 100%;
  background-color: #0253dd;
  top: 0;
  width: 100%;
  max-width: 400px;
}
.menu-outer .menu-inner .login-outer {
  background-color: #fff;
  padding: 23px 33px;
  position: relative;
}
.menu-outer .login-outer a {
  border-radius: 4px;
  background: #0253dd;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #fff;
  display: inline-block;
  padding: 7px 12px;
  width: 100%;
  max-width: 108px;
  text-align: center;
  margin-right: 17px;
  text-decoration: none;
}
.menu-outer .login-outer .close-btn {
  border-radius: 100%;
  width: 38px;
  height: 38px;
  line-height: 29px;
  font-weight: normal;
  font-size: 27px;
  padding: 5px 10px;
  position: absolute;
  top: 50%;
  right: 33px;
  margin-right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.menu-outer .menu-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  height: calc(100% - 212px);
  height: -ms-calc(100% - 212px);
  overflow: auto;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0253dd;
}
::-webkit-scrollbar-thumb {
  background: #4d8aff;
}
::-webkit-scrollbar-thumb:hover {
  background: #043aa1;
}
.menu-outer .menu-inner ul li a {
  font-weight: 500;
  font-size: 22px;
  line-height: normal;
  color: #fff;
  padding: 20px 33px;
  display: block;
  text-decoration: none;
  transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
}
.menu-outer .menu-inner ul li.active a, .menu-outer .menu-inner ul li a:hover {
  background-color: #F8BC00;
  color: #000000;
}
.menu-outer .menu-inner .download-application {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 44px 33px;
  background-color: #043AA1;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}
.menu-outer .download-application a {
  max-width: 45%;
}
/*header-css-end*/
/*hero-home*/
.hero-home {
  background: url("../images/hero-banner.jpg") no-repeat center top;
  background-size: cover;
  padding: 225px 0 12px;
  position: relative;
}
.hero-home .container {
  position: relative;
  z-index: 9;
}
.hero-home:before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 585px;
  height: 492px;
  background: url("../images/banner-shape1.png") no-repeat;
  z-index: 6;
  display: block;
  content: "";
}
.hero-home:after {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 708px;
  height: 385px;
  background: url("../images/banner-shape2.png") no-repeat;
  z-index: 6;
  display: block;
  content: "";
}
.hero-home .slider-inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-home .carousel-inner {
  padding: 0 0 180px;
}
.hero-home .carousel-indicators li {
  width: 20px;
  height: 16px;
  background: #fff;
  opacity: 0.58;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hero-home .carousel-indicators li.active {
  background: #F6BA00;
  opacity: 1;
}
.hero-home .banner-text {
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.hero-home .banner-text h1 {
  color: #F8BC00;
}
.hero-home .banner-text h3 {
  color: #fff;
  max-width: 420px;
}
.hero-home .download-app a {
  display: inline-block;
  margin-right: 33px;
}
.hero-home .download-app a:last-of-type {
  margin-right: 0px;
}
/*hero-home-end*/
/*main-tubs-outer*/
.main-tubs-outer {
  background: url("../images/matches-bg.jpg") no-repeat center top 140px;
  background-size: cover;
  padding: 0px 0 40px;
}
.main-tubs-outer:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 146px;
  background-color: #0253DD;
  display: block;
  content: "";
}
.main-tubs-outer .match-types .match-tab {
  transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  padding: 0;
}
.main-tubs-outer .match-types .match-tab.active a {
  background-color: #f8bc00;
}
.main-tubs-outer .match-types .match-tab a {
  border: none;
  border-radius: 0;
  padding: 29px 15px;
  border-left: 1.5px solid #fff;
  min-height: 147px;
  display: block;
  text-decoration: none;
}
.main-tubs-outer .match-types .match-tab h5 {
  margin: 7px 0 0;
  font-size: 28px;
  line-height: normal;
  color: #fff;
}
.main-tubs-outer .match-types .match-tab.active .nav-link h5 {
  color: #0253dd;
}
.main-tubs-outer .match-types .match-tab.active .nav-link svg path {
  fill: #0253DD;
}
.main-tubs-outer ul.nav-tabs {
  margin: 0px;
  padding: 0px 0px;
  list-style: none;
  border: none;
  width: 100%;
}
.main-tubs-outer .tab-content {
  padding: 44px 0 20px;
  list-style: none;
  margin: 0;
}
.main-tubs-outer .tab-content li {
  color: #fff;
  text-transform: uppercase;
}
.main-tubs-outer ul li .tab-pane-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  background: #fff;
  margin-bottom: 15px;
  padding: 7px 8px;
  transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  border-radius: 4px;
}
.main-tubs-outer ul li.active .tab-pane-inner.active {
  background: #F8BC00;
}
.main-tubs-outer .tab-pane-inner img {
    max-width: 80px;
}
.main-tubs-outer ul li.tab-pane h6 {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  font-size: 24px;
  line-height: normal;
  color: #0253dd;
}
.main-tubs-outer ul li.tab-pane .league-type p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #525768;
}
.main-tubs-outer ul li.tab-pane .league-type p.match-countdown {
  border-radius: 2px;
  background: #f1f2f4;
  font-weight: bold;
  line-height: normal;
  color: #0253dd;
  padding: 6px 24px;
  transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
}
.main-tubs-outer ul li.active .league-type p.match-countdown, .main-tubs-outer ul li:hover .league-type p.match-countdown {
  color: #fff;
  background: #0253DD;
}
/*main-tubs-outer-end*/
/*app-detail*/
.app-detail {
  background: url("../images/app-detail-bg.jpg") no-repeat center bottom;
  background-size: cover;
  padding: 75px 0 90px;
}
.app-detail .detail-inner {
  padding: 0px 15px;
  margin: 0px;
  list-style: none;
}
.app-detail .detail-inner:after {
  display: block;
  content: "";
  clear: both;
}
.app-detail .detail-inner li {
  background: url(../images/detail-inner-bg1.png) no-repeat center bottom;
  background-size: contain !important;
  padding: 39px 12px;
  float: left;
  width: calc(25% - 34px);
  margin: 0 45px 40px 0;
}
.app-detail .detail-inner li:nth-of-type(4n+4) {
  margin-right: 0;
}
.app-detail .detail-inner li:nth-of-type(2) {
  background: url("../images/detail-inner-bg2.png") no-repeat center bottom;
}
.app-detail .detail-inner li:nth-of-type(3) {
  background: url("../images/detail-inner-bg3.png") no-repeat center bottom;
}
.app-detail .detail-inner li:nth-of-type(4) {
  background: url("../images/detail-inner-bg4.png") no-repeat center bottom;
}
.app-detail .detail-inner li:nth-of-type(5) {
  background: url("../images/detail-inner-bg5.png") no-repeat center bottom;
}
.app-detail .detail-inner li:nth-of-type(6) {
  background: url("../images/detail-inner-bg6.png") no-repeat center bottom;
}
.app-detail .detail-inner li:nth-of-type(7) {
  background: url("../images/detail-inner-bg7.png") no-repeat center bottom;
}
.app-detail .detail-inner li:nth-of-type(8) {
  background: url("../images/detail-inner-bg8.png") no-repeat center bottom;
}
.app-detail .detail-inner li h3 {
  font-size: 62px;
  color: #fff;
  line-height: normal;
  margin: 0px;
}
.app-detail .detail-inner li h3 sub {
  font-size: 46px;
  line-height: normal;
  bottom: 0;
}
.app-detail .detail-inner li h6 {
  margin: 0;
  font-family: Rubik;
  font-weight: 500;
  font-size: 25px;
  line-height: normal;
  color: #fff;
}
.app-detail .detail-inner li:nth-of-type(4) h6 {
  margin: 24px 0 0;
}
.app-detail h4 {
  font-weight: 500;
  font-size: 42px;
  color: #fff;
}
.app-detail h3 {
  font-size: 60px;
  color: #f8bc00;
}
.app-detail .app-link {
  margin: 40px auto;
}
.app-detail .app-link input[type="number"] {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  font-size: 22px;
  line-height: normal;
  color: #525768;
  padding: 10px 37px;
  height: 71px;
  border: none;
  outline: none !important;
  -webkit-box-shadow: 0px 6px 0px rgba(49, 52, 62, 1);
  box-shadow: 0px 6px 0px rgba(49, 52, 62, 1);
}
.app-detail .app-link input::-webkit-input-placeholder {
  color: #525768;
}
.app-detail .app-link input::-moz-placeholder {
  color: #525768;
}
.app-detail .app-link input:-ms-input-placeholder {
  color: #525768;
}
.app-detail .app-link input:-moz-placeholder {
  color: #525768;
}
.app-detail .app-link input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0px 8px 8px 0px;
  background: #f8bc00;
  font-size: 28px;
  line-height: normal;
  color: #0253dd;
  font-weight: bold;
  width: 100%;
  max-width: 242px;
  padding: 19px 12px;
  border: none;
  transition: all ease-in-out 0.25s;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  outline: none !important;
}
.app-detail .app-link input[type="submit"]:hover {
  background: #0253dd;
  color: #f8bc00;
}
.app-detail .download-app a {
  display: inline-block;
}
.app-detail .download-app a:first-of-type {
  margin-right: 52px;
}
/*app-detail-end*/
/*how-play*/
.how-play {
  background: url(../images/howplay-bg.jpg) no-repeat center top;
  background-size: cover;
  padding: 90px 0 110px;
}
.how-play h3 {
  font-size: 60px;
  line-height: normal;
  color: #0253dd;
  margin: 0 0 85px;
}
.how-play .play-tips {
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.how-play .play-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.how-play .play-tips ul li {
  position: relative;
  padding-left: 107px;
  margin-bottom: 54px;
}
.how-play .play-tips ul li:last-of-type {
  margin-bottom: 0px;
}
.how-play .play-tips ul li:before {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #0253DD;
  border-radius: 100%;
  display: block;
  content: "1";
  color: #fff;
  text-align: center;
  width: 80px;
  height: 80px;
  font-family: Rubik;
  font-weight: 500;
  font-size: 47px;
  line-height: 79px;
}
.how-play .play-tips ul li:nth-of-type(2):before {
  content: "2"
}
.how-play .play-tips ul li:nth-of-type(3):before {
  content: "3"
}
.how-play .play-tips ul li:last-of-type:before {
  content: "4"
}
.how-play .play-tips li h4 {
  color: #000;
  font-size: 42px;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 2px;
}
.how-play .play-tips .play-btn {
  border-radius: 40px;
  background: #f8bc00 url(../images/play-icon.png) no-repeat center left 10px;
  display: block;
  text-align: center;
  max-width: 312px;
  font-weight: bold;
  font-size: 34px;
  line-height: normal;
  color: #1156cd;
  padding: 20px 15px 20px 45px;
  text-decoration: none;
  margin: 40px 0 0;
}
/*how-play-end*/
/*testimonials*/
.testimonials {
  background-color: #0253DD;
  padding: 80px 0 125px;
}
.testimonials .slider-inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.testimonials h3 {
  font-size: 51px;
  line-height: normal;
  color: #f7f7f7;
  margin: 0 0 87px;
}
.testimonials .player-img, .testimonials .player-info {
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.testimonials .player-info h6 {
  font-size: 28px;
  line-height: normal;
  color: #f7f7f7;
}
.testimonials .player-info p {
  font-weight: 300;
  font-size: 20px;
  line-height: 35px;
  color: #fff;
}
/*testimonials-end*/
/*enjoy-offer*/
.enjoy-offer {
  background-color: #F8BC00;
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.enjoy-offer:before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  display: block;
  content: "";
  width: 318px;
  height: 268px;
  background: url(../images/offers-left-bg.png) no-repeat;
}
.enjoy-offer:after {
  position: absolute;
  right: -1px;
  top: 0px;
  display: block;
  content: "";
  width: 321px;
  height: 209px;
  background: url(../images/offers-right-bg.png) no-repeat;
}
.enjoy-offer .offer-left, .enjoy-offer .offer-slider {
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.enjoy-offer .offer-slider {
  z-index: 9;
}
/*

.enjoy-offer .offer-slider:before {
    background: url(../images/mobile-frame.png) no-repeat center top;
    width: 100%;
    height: 298px;
    display: block;
    content: "";
    top: -19px;
    left: -3px;
    position: absolute;
    background-size: 100% 100%;
}
*/
.enjoy-offer .offer-left h2 {
  font-size: 87px;
  color: #1055CC;
  line-height: 75px;
}
.enjoy-offer .offer-left h3 {
  font-size: 61px;
  color: #fff;
  line-height: 75px;
}
.enjoy-offer .offer-slider .owl-controls .owl-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 42px 0 0;
}
.enjoy-offer .offer-slider .owl-controls .owl-page {
  margin-right: 10px;
}
.enjoy-offer .offer-slider .owl-controls .owl-page span {
  height: 16px;
  width: 16px;
  background-color: #fff;
  display: block;
  border-radius: 100%;
}
.enjoy-offer .offer-slider .owl-controls .owl-page.active span {
  background-color: #1459D0;
}
/*enjoy-offer-end*/
/*footer*/
footer {
  background-color: #3B3F50;
  padding: 50px 0 46px;
}
footer .social-outer ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  font-size: 0px;
}
footer .social-outer ul li {
  display: inline-block;
  margin-right: 12px;
}
footer .social-outer ul li:last-of-type {
  margin-right: 0px;
}
footer .footer-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-menu ul li {
  display: block;
  margin: 0 0 15px;
}
footer .footer-menu ul li a {
  font-weight: normal;
  font-size: 22px;
  color: #f7f7f7;
  display: block;
  line-height: normal;
  text-decoration: none;
  padding: 10px 0;
}
footer .office-address {
  padding-top: 45px;
  border-top: 1px solid #ACACAC;
  margin-top: 25px;
}
footer .office-address p strong {
  font-weight: 500;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
}
footer .office-address p {
  margin: 0 auto;
  font-size: 14px;
  line-height: 26px;
  color: #ACACAC;
}
.footer-bottom {
  background-color: #323543;
  padding: 25px 0;
}
.footer-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0px;
}
.footer-bottom ul li {
  display: inline-block;
}
.footer-bottom ul li:first-of-type {
  border-right: 2px solid #acacac;
  padding-right: 26px;
  margin-right: 26px;
}
.footer-bottom ul li a {
  font-weight: normal;
  font-size: 20px;
  line-height: normal;
  color: #acacac;
  text-decoration: none;
}
/*footer-end*/
/*About-page-css-start*/
/*inner-banner*/
.inner-banner {
  background: url(../images/about-banner.jpg) no-repeat center top;
  background-size: cover;
  padding: 205px 0;
}
.inner-banner h2 {
  font-size: 55px;
  line-height: 75px;
  color: #fff;
}
.inner-banner p {
  font-size: 25px;
  line-height: 42px;
  color: #fff;
  margin: 0 auto;
  max-width: 975px;
  width: 100%;
}
/*inner-banner-end*/
/*about-content*/
.about-content {
  padding: 80px 0 0;
}
.about-content p {
  line-height: 30px;
  margin-bottom: 25px;
}
/*about-content-end*/
/*journey-outer*/
.journey-outer {
  padding: 50px 0;
}
.journey-outer h4, .our-mission h4 {
  font-size: 32px;
  line-height: normal;
}
.journey-outer .journey-content p, .our-mission p {
  line-height: 30px;
  margin-bottom: 65px;
}
.journey-outer .founded-outer {
  -ms-flex: 0 0 31.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 31.333333%;
  max-width: 31.333333%;
  margin-right: 3%;
}
.journey-outer .founded-outer:last-of-type {
  margin-right: 0%;
}
.journey-outer .award-outer {
  margin-right: -52px;
}
.journey-outer .founded-outer .founded-inner {
  background: url(../images/founded-bg.png) no-repeat center top;
  background-size: 100% 100%;
  padding: 75px 33px 50px;
  margin-top: -35px;
}
.journey-outer .founded-inner h6 {
  font-size: 28px;
  line-height: normal;
}
.journey-outer .founded-inner p {
  font-size: 18px;
  line-height: 22px;
}
.journey-outer .since-outer {
  margin-top: -89px;
  position: relative;
}
.journey-outer .founded-outer .since-outer:before {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 155px;
  height: 155px;
  display: block;
  content: "";
  background-color: #fff;
  border: 4px solid #12B09B;
  border-radius: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
.journey-outer .founded-outer:nth-of-type(3) .since-outer:before {
  border-color: #f7bb00;
}
.journey-outer .founded-outer:last-of-type .since-outer:before {
  border-color: #0557e1;
}
/*journey-outer-end*/
/*our-mission*/
.our-mission {
  padding: 0 0 0;
}
/*our-mission-end*/
/*about-tabs-outer*/
.about-tabs-outer {
  padding: 30px 0 130px;
}
.about-tabs-outer .nav-tabs {
  border: none;
}
.about-tabs-outer .nav-tabs li {
  width: 18%;
  margin-right: 3%;
}
.about-tabs-outer .nav-tabs li:last-of-type {
  margin-right: 0%;
}
.about-tabs-outer .nav-tabs li a {
  border: none !important;
  background-color: transparent !important;
  font-weight: normal;
  font-size: 24px;
  line-height: normal;
  color: #525768 !important;
  padding: 0 0 12px;
  position: relative;
}
.about-tabs-outer .nav-tabs li a.active {
  font-weight: bold;
  line-height: normal;
  color: #0152db !important;
}
.about-tabs-outer .nav-tabs li a:before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  content: "";
  width: 60px;
  height: 6px;
  background-color: #0152DB;
  opacity: 0;
}
.about-tabs-outer .nav-tabs li a.active:before {
  opacity: 1;
}
.about-tabs-outer .tab-content {
  margin: 90px 0 0;
}
.about-tabs-outer .tab-content:first-child {
  margin: 40px 0px 0px;
}
.about-tabs-outer .tab-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.about-tabs-outer .tab-content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-bottom: 95px;
}
.about-tabs-outer .tab-content li:nth-of-type(even) {
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.about-tabs-outer .tab-content li:last-of-type {
  margin-bottom: 0;
}
.about-tabs-outer .tab-content li .founder-image {
  width: 30%;
}
.about-tabs-outer .tab-content li .founder-image img {
  border-radius: 20px;
}
.about-tabs-outer .tab-content li .founder-info {
  width: calc(100% - 390px);
  width: -ms-calc(100% - 390px);
}
.about-tabs-outer .tab-content li h5 {
  font-size: 30px;
  line-height: normal;
}
.about-tabs-outer .tab-content li h6 {
  font-weight: normal;
  font-size: 23px;
  line-height: normal;
}
.about-tabs-outer .tab-content li p {
  line-height: 26px;
}
.about-tabs-outer .tab-content li:nth-of-type(even) .founder-image {
  text-align: right;
}
/*about-tabs-outer-end*/
/*About-page-css-end*/
/*how-to-play-page-css*/
/*how-banner*/
.how-play-banner {
  background: url(../images/howplay-banner.jpg) no-repeat center top;
}
/*how-banner-end*/
/*how-play-content*/
.howplay-content {
  padding: 88px 0 120px;
}
.howplay-content .content-outer p {
  line-height: 30px;
}
/*how-play-content-end*/
/*howplay-tabs-outer*/
.howplay-tabs-outer.about-tabs-outer .nav-tabs li a img {
  display: block;
  margin: 0 auto 13px !important;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  min-height: 54px;
}
.howplay-tabs-outer.about-tabs-outer .nav-tabs li a.active img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
}
.howplay-tabs-outer.about-tabs-outer .nav-tabs li a {
  font-size: 24px;
  display: inline-block;
}
.howplay-tabs-outer.about-tabs-outer .nav-tabs li {
  margin-right: 3%;
  width: 18%;
}
.howplay-tabs-outer.about-tabs-outer .nav-tabs li:last-of-type {
  margin-right: 0%;
}
.howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-image {
  width: 34.3%;
}
.howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-info {
  width: calc(100% - 513px);
  width: -ms-calc(100% - 513px);
}
.howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-info span {
  display: block;
  width: 78px;
  height: 78px;
  background-color: #0253DD;
  border-radius: 100%;
  text-align: center;
  line-height: 78px;
  font-weight: 500;
  font-size: 47px;
  color: #fff;
  margin: 0 0 30px;
}
.about-tabs-outer .tab-content li:nth-of-type(even) .cricket-image {
  text-align: right;
}
.howplay-tabs-outer .tab-content .play-btn {
  border-radius: 40px;
  background: #f8bc00 url(../images/play-icon.png) no-repeat center left 10px;
  display: block;
  text-align: center;
  max-width: 456px;
  font-weight: bold;
  font-size: 34px;
  line-height: normal;
  color: #1156cd;
  padding: 20px 15px 20px 45px;
  text-decoration: none;
  margin: 40px auto 0;
}
/*howplay-tabs-outer-end*/
/*winning-outer-start*/
.winning-outer {
  padding: 80px 0;
  background-color: #3b3f50;
}
.winning-outer h5, .winning-outer p {
  color: #fff;
}
/*winning-outer-end*/
/*winning-user-outer-start*/
.winning-user-outer {
  padding: 80px 0;
}
/*winning-user-outer-end*/
/*how-to-play-page-css-end*/
/*invite-friend-page-css*/
/*invite-content-css*/
.invite-content {
  background: #f8bc00;
  padding: 30px 0 0px;
}
.invite-content p {
  font-size: 39px;
  line-height: 50px;
  color: #fff;
}
.invite-content h4 {
  font-size: 86px;
  line-height: 50px;
  color: #fff;
  margin: 33px 0 45px;
}
/*invite-content-css-end*/
/*invite-info-css*/
.invite-info {
  padding: 130px 0 103px;
}
.invite-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.invite-info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-bottom: 100px;
}
.invite-info ul li:last-of-type {
  margin-bottom: 0px;
}
.invite-info ul li:nth-of-type(even) {
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.invite-info ul li .cricket-image {
  width: 34%;
}
.invite-info ul li .cricket-info {
  width: calc(100% - 515px);
  width: -ms-calc(100% - 515px);
}
.invite-info ul li .cricket-info span {
  display: block;
  width: 78px;
  height: 78px;
  background-color: #0253DD;
  border-radius: 100%;
  text-align: center;
  line-height: 78px;
  font-weight: 500;
  font-size: 47px;
  color: #fff;
  margin: 0 0 30px;
}
.invite-info .play-btn {
  border-radius: 40px;
  background: #f8bc00 url(../images/play-icon.png) no-repeat center left 10px;
  display: block;
  text-align: center;
  max-width: 456px;
  font-weight: bold;
  font-size: 34px;
  line-height: normal;
  color: #1156cd;
  padding: 20px 15px 20px 45px;
  text-decoration: none;
  margin: 40px auto 0;
}
/*invite-info-css-end*/
/*invite-friend-page-css-end*/
/*terms-condition-page-css*/
.terms-condition-outer {
  padding: 100px 0;
}
.terms-condition-outer ul {
  padding-left: 40px !important;
}
.terms-condition-outer ul li {
  margin-bottom: 15px;
}
.terms-condition-outer h4 {
  font-size: 30px;
  line-height: 50px;
  margin-top: 20px;
}
.terms-condition-outer h4:first-of-type {
  margin-top: 0px;
}
/*terms-condition-page-css-end*/
/*helpdesk-page-css*/
/*help-form-outer*/
.help-form-outer {
  background: #f8bc00;
  padding: 100px 0 128px;
}
.help-form-outer .help-form-inner {
  max-width: 1095px;
  margin: 0 auto;
}
.help-form-outer h5 {
  color: #0253dd;
}
.help-form-outer form input[type="text"] {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: none;
  padding: 6px 170px 6px 20px;
  font-size: 20px;
  line-height: normal;
  color: #525768;
  height: 55px;
  outline: none;
}
.help-form-outer form .btn-primary {
  height: 55px;
  border-radius: 8px;
  padding: 10px;
  font-family: "Segoe UI";
  font-size: 20px;
  width: 100%;
  display: block;
  border: none;
  max-width: 160px;
  position: absolute;
  top: 0;
  right: 0;
  outline: none;
}
/*help-form-outer-end*/
/*helpdesk-outer*/
.helpdesk-outer {
  padding: 80px 0 122px;
}
.helpdesk-outer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.helpdesk-outer ul:after {
  display: block;
  clear: both;
  content: "";
}
.helpdesk-outer ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 14px 12px;
  float: left;
  width: 49%;
  margin-right: 2%;
  border-radius: 8px;
  background: #efefef;
  margin-bottom: 35px;
}
.helpdesk-outer ul li:nth-of-type(2n+2) {
  margin-right: 0;
}
.helpdesk-outer ul li .topic-image {
  margin-right: 33px;
  width: 18.3%;
}
.helpdesk-outer ul li .topic-content {
  width: calc(100% - 132px);
  width: -ms-calc(100% - 132px);
}
.helpdesk-outer ul li h6 {
  margin: 0;
}
.helpdesk-outer ul li h6 a {
  font-size: 22px;
  line-height: normal;
  margin: 0;
  color: #525768;
  text-decoration: none;
}
.helpdesk-outer ul li p {
  font-size: 18px;
  line-height: normal;
  margin: 0;
}
.helpdesk-outer .topic-articles {
  margin: 66px 0 0;
}
.helpdesk-outer .topic-articles p {
  line-height: 50px;
  margin: 0 0 58px;
}
.helpdesk-outer .topic-articles .btn-primary {
  border-radius: 8px;
  background: #0253dd;
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 15px;
}
/**************Pointfon System***************/
.no-pad {
  padding: 0;
  margin: 0;
}
.point-sec .card h5 {
  font-size: 18px;
  color: #2E2E2E;
  margin-bottom: 30px;
  background-color: #525768;
  border-radius: 3px;
}
.point-sec .nav-tabs {
  border: none;
  margin-bottom: 30px;
}
.point-sec .nav-tabs li:after {
  content: initial;
}
.point-sec .nav-tabs li {
  padding: 0;
  margin: 0 20px 0 0;
}
.point-sec .nav-tabs li a {
  border: 0;
  background-color: #DDD;
  border-radius: 50px;
  color: #2E2E2E !important;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 30px;
  text-decoration: none;
}
.point-sec .nav-tabs li a.active {
  color: #FFF !important;
  text-decoration: none;
  background: #0253DD;
  background: #0253DD;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ab4bc4', endColorstr='#ee4db3', GradientType=1);
}
.point-sec .card {
  border-radius: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.point-sec .card-header {
  border-bottom: none;
  background-color: #DDD;
  padding: 0px;
}
.point-sec .card-header .btn:hover, .point-sec .card-header .btn {
  display: block;
  text-align: left;
  padding: 12px 15px 12px 55px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  background-color: #525768;
  border: none;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
  margin: 0;
  max-width: 100%;
}
.terms-type img {
  width: 30px;
  float: left;
  margin-right: 5px;
}
.terms-type:after {
  display: table;
  clear: both;
  content: "";
}
.terms-type p {
  float: right;
  width: calc(100% - 40px);
  width: -webkit-calc(100% - 40px);
  width: -moz-calc(100% - 40px);
  width: -ms-calc(100% - 40px);
}
.terms-outer p {
  text-transform: none;
}
.point-sec .card-header .btn img {
  margin-right: 5px;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.point-sec .card-header .btn span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
.point-sec .card-header .btn-link.collapsed {
  background-image: url('../images/down-arrow.svg');
  background-size: 25px auto;
  background-position: right 15px center;
  background-repeat: no-repeat;
}
.point-sec .card-header .btn-link {
  background-image: url('../images/up-arrow.svg');
  background-size: 25px auto;
  background-position: right 15px center;
  background-repeat: no-repeat;
}
.point-sec .card li:after {
  content: initial;
}
.point-sec .card .card-body {
  padding: 15px;
}
.point-sec .card .card-body li {
  padding: 15px 0;
  border-bottom: 1px solid #DDD;
}
.point-sec .card .card-body li p {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2E2E2E;
  padding-top: 4px;
}
.point-sec .card .card-body li span {
  display: inline-block;
  text-align: right;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #2E2E2E;
}
.point-sec .card .card-body p small {
  display: block;
}
.point-sec .card .card-body span small {
  display: block;
}
.point-sec .card .card-body .heading-card {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #144CAA;
}
.point-sec .cap-bx {
  margin-bottom: 30px;
}
.point-sec .cap-bx h3 {
  font-size: 16px;
}
.point-sec .cap-bx img {
  width: 100px;
  margin-bottom: 15px;
}
/*sk 19-12-2020*/
.contect-us-pa {
  background-color: #fefefe;
  padding: 80px 0;
}
.contec-list {
  padding: 27px 22px;
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}
.contec-list h3 {
  font-size: 19px;
  margin-bottom: 13px;
}
.contec-list p {
  font-size: 15px;
  line-height: 22px;
}
.contec-list p:last-child {
  margin-bottom: 0;
}
.contec-list:last-child {
  margin-bottom: 0;
}
.contec-list .col-md-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 22%;
}
.contec-list .col-md-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 78%;
  max-width: 85%;
}
.left-contect h2 {
  font-size: 35px;
}
.left-contect p {
  font-size: 16px;
}
.left-contect h3 {
  font-size: 30px;
  margin-top: 21px;
}
.left-contect h5 {
  font-size: 20px;
}
.left-contect a {
  color: #525768;
}
.point-sec {
  padding: 80px 0 60px;
}
/*helpdesk-outer-end*/
/*helpdesk-page-css-end*/
/*faq-page-css-start*/
.faq-outer {
  padding: 0px 0 80px;
}
.faq-accordion .card .card-header {
  cursor: pointer;
  padding: 0;
}
.faq-accordion h5 {
  margin: 50px 0 20px;
  line-height: normal;
}
.faq-accordion h5 img {
  width: 35px;
  margin-right: 10px;
  margin-bottom: 8px;
}
.faq-accordion .card {
  margin-bottom: 20px;
}
.faq-accordion p {
  line-height: 28px;
}
.faq-accordion ol {
  padding-left: 25px;
}
.faq-accordion ol li {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 15px;
}
.faq-accordion ol li:last-of-type {
  margin-bottom: 0px;
}
.faq-accordion .title {
  font-size: 22px;
  line-height: normal;
  padding: 0.75rem 1.25rem;
}
/*faq-page-css-end*/
/*Responsive*/
@media only screen and (max-width: 1270px) {
  /*about-us-page-css*/
  .journey-outer {
    overflow-x: hidden;
  }
  .journey-outer .award-outer img {
    max-width: 70%;
  }
  .journey-outer .award-outer {
    margin-right: -46px;
  }
  /*about-us-page-css-end*/
}
@media only screen and (max-width: 1199px) {
  .hero-home .download-app a {
    margin-right: 10px;
    max-width: 45%;
  }
  .hero-home .download-app a:last-of-type {
    margin-right: 0px;
  }
  .app-detail .detail-inner li h3 {
    font-size: 46px;
  }
  .app-detail .detail-inner li h6 {
    font-size: 18px;
  }
  .app-detail .detail-inner li {
    width: calc(25% - 20px);
    width: -ms-calc(25% - 20px);
    margin: 0 26px 40px 0;
    padding: 30px 12px;
    background-size: 100% 100% !important;
  }
  .app-detail .detail-inner li:nth-of-type(4) h6 {
    margin: 12px 0 0;
  }
  .how-play .play-tips ul li:before {
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 59px;
  }
  .how-play .play-tips ul li {
    padding-left: 75px;
  }
  .testimonials h3 {
    font-size: 36px;
  }
  .enjoy-offer .offer-slider:before {
    height: 94.1%;
  }
  /*about-us-page-css*/
  .journey-outer .founded-outer .founded-inner {
    padding: 75px 15px 50px;
  }
  .inner-banner {
    padding: 170px 0 70px;
  }
  .about-tabs-outer .nav-tabs li {
    width: 28%;
    margin-right: 2%;
  }
  /*about-us-page-css-end*/
  /*how-play-page-css*/
  .how-play-banner {
    background-position: right bottom;
  }
  .howplay-tabs-outer.about-tabs-outer .nav-tabs li a {
    font-size: 22px;
    padding: 0 0 8px;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-info {
    width: calc(100% - 370px);
    width: -ms-calc(100% - 370px);
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li:nth-of-type(odd) .cricket-image {
    margin-right: 100px;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li:nth-of-type(even) .cricket-image {
    margin-left: 100px;
  }
  .about-tabs-outer .nav-tabs li a:before {
    width: 60px;
    height: 4px;
  }
  /*sk 19-12-2020*/
  .contec-list {
    padding: 21px 21px;
  }
  .contec-list p {
    font-size: 14px;
    line-height: 21px;
  }
  .contec-list h3 {
    font-size: 16px;
    margin-bottom: 13px;
  }
  .left-contect h2 {
    font-size: 32px;
  }
  .left-contect h3 {
    font-size: 26px;
  }
  .left-contect h5 {
    font-size: 18px;
  }
  .left-contect {
    margin-bottom: 25px;
  }
  /*how-play-page-css-end*/
}
@media only screen and (max-width: 991px) {
  header {
    padding: 25px 0 10px;
  }
  .hero-home {
    padding: 180px 0 0px;
  }
  h1 {
    font-size: 54px;
  }
  h3 {
    font-size: 38px;
  }
  .btn {
    font-size: 20px;
    padding: 18px 15px;
    max-width: 250px;
  }
  .app-detail .detail-inner li {
    width: calc(50% - 20px);
    width: -ms-calc(50% - 20px);
    margin: 0 40px 40px 0 !important;
  }
  .app-detail .detail-inner li:nth-of-type(2n+2) {
    margin-right: 0 !important;
  }
  .how-play .play-tips ul li:before {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 39px;
  }
  .how-play .play-tips ul li {
    padding-left: 50px;
    margin-bottom: 25px;
  }
  .how-play .play-tips li h4 {
    font-size: 26px;
  }
  body {
    font-size: 16px;
  }
  .testimonials {
    padding: 50px 0;
  }
  .testimonials h3 {
    font-size: 35px;
    margin: 0 0 50px;
  }
  .how-play h3 {
    font-size: 36px;
    margin: 0 0 45px;
  }
  .how-play {
    padding: 50px 0 70px;
  }
  .app-detail {
    padding: 50px 0 60px;
  }
  .app-detail h4 {
    font-size: 28px;
  }
  .app-detail h3 {
    font-size: 36px;
  }
  .app-detail .app-link {
    margin: 25px auto;
  }
  .app-detail .app-link input[type="number"] {
    font-size: 18px;
    padding: 10px 20px;
    height: 57px;
  }
  .app-detail .app-link input[type="submit"] {
    font-size: 20px;
    max-width: 200px;
    padding: 15px 12px;
  }
  .hero-home:before, .hero-home:after {
    opacity: 0.4;
  }
  .how-play .play-tips .play-btn {
    max-width: 200px;
    font-size: 22px;
    padding: 15px 15px 15px 45px;
    background-size: 40px 40px;
  }
  .app-detail .detail-inner {
    margin: 0 auto;
    max-width: 600px;
  }
  .enjoy-offer .offer-left h2 {
    font-size: 52px;
    line-height: 53px;
  }
  .enjoy-offer .offer-left h3 {
    font-size: 34px;
    line-height: 45px;
  }
  footer .social-outer ul li {
    margin-bottom: 10px;
    margin-right: 15px;
  }
  footer .footer-menu ul li {
    margin: 0 0 8px;
  }
  footer .footer-menu ul li a {
    font-size: 18px;
    padding: 8px 0;
  }
  .enjoy-offer .offer-slider:before {
    height: 89%;
  }
  /*about-page-css*/
  .inner-banner {
    padding: 153px 0 53px;
  }
  .about-content {
    padding: 40px 0 0;
  }
  .about-tabs-outer {
    padding: 30px 0 60px;
  }
  .journey-outer {
    padding: 20px 0;
  }
  .journey-outer .founded-inner h6 {
    font-size: 22px;
  }
  .journey-outer .founded-inner p {
    font-size: 15px;
  }
  .journey-outer .founded-outer .founded-inner {
    padding: 65px 15px 50px;
  }
  .journey-outer .award-outer {
    margin-right: -30px;
  }
  .about-tabs-outer .tab-content li h5 {
    font-size: 28px;
  }
  .about-tabs-outer .tab-content li h6 {
    font-size: 22px;
  }
  .about-tabs-outer .tab-content li .founder-info {
    width: calc(100% - 310px);
    width: -ms-calc(100% - 310px);
  }
  .about-tabs-outer .tab-content li p {
    line-height: 28px;
  }
  .journey-outer .founded-outer {
    -ms-flex: 0 0 32.66%;
    -webkit-box-flex: 0;
    flex: 0 0 32.66%;
    max-width: 32.66%;
    margin-right: 1%;
  }
  /*about-page-css-end*/
  /*how-play-page-css*/
  .howplay-content .content-outer p {
    line-height: 30px;
  }
  .howplay-tabs-outer.about-tabs-outer .nav-tabs li a {
    font-size: 20px;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li:nth-of-type(odd) .cricket-image {
    margin-right: 50px;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li:nth-of-type(even) .cricket-image {
    margin-left: 50px;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-info {
    width: calc(100% - 300px);
    width: -ms-calc(100% - 300px);
  }
  .howplay-tabs-outer .tab-content .play-btn {
    max-width: 320px;
    font-size: 25px;
    padding: 15px 15px 15px 45px;
    background-size: 40px 40px;
  }
  /*how-play-page-css-end*/
  /*helpdesk-page-css*/
  .help-form-outer {
    padding: 50px 0 78px;
  }
  .helpdesk-outer {
    padding: 40px 0 70px;
  }
  .helpdesk-outer ul li .topic-image {
    margin-right: 15px;
  }
  .helpdesk-outer ul li .topic-content {
    width: calc(100% - 77px);
    width: -ms-calc(100% - 77px);
  }
  .helpdesk-outer ul li h6 {
    font-size: 18px;
  }
  .helpdesk-outer .topic-articles {
    margin: 30px 0 0;
  }
  .helpdesk-outer .topic-articles p {
    line-height: 40px;
    margin: 0 0 30px;
  }
  .helpdesk-outer ul li {
    margin-bottom: 15px;
  }
  /*helpdesk-page-css-end*/
  /*invite-page-css*/
  .invite-content p {
    font-size: 22px;
    line-height: 32px;
  }
  .invite-content h4 {
    font-size: 70px;
    line-height: normal;
    margin: 0 0 15px;
  }
  .btn-primary {
    font-size: 22px;
    max-width: 200px;
    padding: 10px;
  }
  .invite-info {
    padding: 70px 0;
  }
  .invite-info ul li .cricket-info {
    width: calc(100% - 280px);
    width: -ms-calc(100% - 280px);
  }
  .invite-info ul li .cricket-image {
    margin-right: 25px;
  }
  .invite-info ul li:nth-of-type(even) .cricket-image {
    margin-right: 0px;
    margin-left: 25px;
  }
  .invite-info ul li {
    margin-bottom: 50px;
  }
  /*invite-page-css-end*/
  /*how-to-play-page-css-start*/
  .winning-outer, .winning-user-outer {
    padding: 50px 0;
  }
  /*how-to-play-page-css-end*/
  /*faq-page-css-start*/
  .faq-accordion h5 img {
    width: 30px;
    margin-bottom: 6px;
  }
  /*faq-page-css-end*/
  .about-tabs-outer .tab-content li .founder-image {
    width: 40%;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-home .banner-text, .hero-home .banner-image {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-home .banner-image {
    display: none;
  }
  .hero-home .banner-text h3 {
    max-width: 100%;
  }
  h3 {
    font-size: 36px;
  }
  .main-tubs-outer .match-types .match-tab a {
    padding: 19px 9px;
    min-height: 128px;
  }
  .main-tubs-outer .match-types .match-tab h5 {
    margin: 12px 0 0;
    font-size: 18px;
  }
  .main-tubs-outer:before {
    height: 128px;
  }
  .main-tubs-outer {
    background-position: center top 120px;
  }
  .main-tubs-outer ul li.tab-pane .league-type p.match-countdown {
    padding: 6px 12px;
  }
  .main-tubs-outer ul li.tab-pane .league-type p {
    font-size: 15px;
  }
  .main-tubs-outer ul li.tab-pane h6 {
    font-size: 20px;
  }
  .btn {
    font-size: 16px;
    padding: 12px 10px;
    max-width: 190px;
  }
  .app-detail .download-app a:first-of-type {
    margin-right: 10px;
  }
  .app-detail .download-app a {
    max-width: 48%;
  }
  .how-play .col-sm-4 {
    text-align: center;
  }
  .how-play .col-sm-4, .how-play .play-tips {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .how-play img {
    max-width: 25%;
  }
  .how-play .play-tips {
    margin: 30px 0 0;
  }
  .how-play {
    padding: 30px 0;
  }
  .how-play h3 {
    font-size: 40px;
    margin: 0 0 30px;
  }
  .testimonials h3 {
    font-size: 26px;
    margin: 0 0 30px;
  }
  .testimonials .player-img {
    text-align: center;
  }
  .testimonials .player-info {
    margin: 20px 0px 0px
  }
  .testimonials .player-img, .testimonials .player-info {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .testimonials {
    padding: 35px 0 20px;
  }
  .hero-home:after {
    width: 558px;
    height: 235px;
    background-size: 100% 100%;
  }
  .hero-home:before {
    width: 435px;
    height: 342px;
    background-size: 100% 100%;
  }
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 38px;
  }
  h4 {
    font-size: 30px;
  }
  h5 {
    font-size: 25px;
  }
  h6 {
    font-size: 18px;
  }
  .hero-home .slider-inner-content {
    display: block;
  }
  .hero-home {
    padding: 220px 0 0px;
  }
  .hero-home .carousel-inner {
    padding: 0 0 100px;
  }
  .enjoy-offer .offer-left, .enjoy-offer .offer-slider {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    z-index: 99;
  }
  .enjoy-offer .offer-slider:before {
    left: 0;
    width: 630px;
    height: 88.5%;
    top: 0;
  }
  footer .footer-menu {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .social-outer {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 25px;
  }
  footer .social-outer ul li {
    margin-right: 5px;
  }
  .testimonials .slider-inner-content {
    display: block;
  }
  /*about-page-css*/
  .inner-banner h2 {
    font-size: 42px;
    line-height: 60px;
  }
  .inner-banner p {
    font-size: 20px;
    line-height: 32px;
  }
  .journey-outer .founded-outer {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 70%;
    margin: 0 auto !important;
  }
  .journey-outer .founded-outer .founded-inner {
    padding: 85px 15px 30px;
    background-size: cover;
    margin-top: -70px;
  }
  .journey-outer .since-outer {
    margin-top: -80px;
  }
  .journey-outer .founded-outer .since-outer:before {
    top: 20px;
    width: 165px;
    height: 165px;
  }
  .about-tabs-outer .nav-tabs li a {
    font-size: 22px;
  }
  .journey-outer .journey-content p, .our-mission p {
    line-height: 30px;
    margin-bottom: 20px;
  }
  .about-tabs-outer .tab-content {
    margin: 40px 0 0;
  }
  .about-tabs-outer .tab-content li {
    display: block;
    margin-bottom: 50px;
  }
  .about-tabs-outer .tab-content li .founder-image {
    width: 100%;
    text-align: center !important;
  }
  .about-tabs-outer .tab-content li .founder-info {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  /*about-page-css-end*/
  /*how-play-page-css*/
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-image {
    margin: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-image img {
    max-width: 30%;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-info {
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-info span {
    margin: 0 auto 10px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 40px;
  }
  .howplay-tabs-outer.about-tabs-outer .nav-tabs li {
    margin-right: 1%;
    width: 24%;
  }
  .howplay-tabs-outer.about-tabs-outer .nav-tabs li a {
    font-size: 17px;
  }
  .howplay-tabs-outer.about-tabs-outer .nav-tabs li a img {
    min-height: 0;
    max-height: 48px;
  }
  .howplay-content {
    padding: 35px 0 20px;
  }
  .howplay-content .content-outer p {
    line-height: 25px;
  }
  /*how-play-page-css-end*/
  /*terms-condition-page-css*/
  .terms-condition-outer {
    padding: 50px 0;
  }
  .terms-condition-outer h4 {
    font-size: 30px;
    line-height: 40px;
  }
  /*terms-condition-page-css-end*/
  /*helpdesk-page-css*/
  .help-form-outer {
    padding: 25px 0 40px;
  }
  .help-form-outer form input[type="text"] {
    border-radius: 4px;
    padding: 5px 126px 5px 15px;
    font-size: 15px;
    height: 40px;
  }
  .help-form-outer form .btn-primary {
    height: 40px;
    border-radius: 4px;
    font-size: 15px;
    max-width: 110px;
  }
  .helpdesk-outer ul li {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .helpdesk-outer ul li .topic-image {
    width: 15.7%;
  }
  /*helpdesk-page-css-end*/
  /*invite-page-css*/
  .invite-content p {
    font-size: 18px;
    line-height: 25px;
  }
  .invite-content h4 {
    font-size: 50px;
  }
  .btn-primary {
    font-size: 22px;
  }
  .invite-info ul li .cricket-info {
    width: calc(100% - 210px);
    width: -ms-calc(100% - 210px);
  }
  .invite-info ul li .cricket-info span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 35px;
    margin: 0 0 10px;
  }
  .invite-info .play-btn {
    max-width: 320px;
    font-size: 25px;
    padding: 15px 15px 15px 45px;
    background-size: 40px 40px;
  }
  .invite-info {
    padding: 35px 0;
  }
  /*sk 19-12-2020*/
  .contect-us-pa {
    padding: 50px 0;
    text-align: center;
  }
  .contect-us-pa .contec-list {
    text-align: left;
  }
  .point-sec .mb-5 {
    margin-bottom: 20px !important;
    ;
    /*invite-page-css-end*/
  }
  .point-sec {
    padding: 50px 0 31px;
  }
  /*faq-page-css-start*/
  .faq-outer {
    padding: 0px 0 10px;
  }
  /*faq-page-css-end*/
  /*how-to-play-page-css-start*/
  .winning-outer img, .winning-user-outer img {
    max-width: 35%;
  }
  .winning-outer .winning-right, .winning-user-outer .winning-right {
    text-align: center;
  }
  .winning-user-outer img {
    margin-bottom: 20px;
  }
  .winning-outer, .winning-user-outer {
    padding: 30px 0;
  }
  /*how-to-play-page-css-end*/
  .terms-condition-outer ul {
    padding-left: 25px !important;
  }
  .about-tabs-outer .tab-content li .founder-image img {
    max-height: 500px;
  }
}
@media only screen and (max-width: 575px) {
  .point-sec .nav-tabs li a {
    border: 0;
    background-color: #DDD;
    border-radius: 50px;
    color: #2E2E2E !important;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 15px;
    text-decoration: none;
  }
  .point-sec .nav-tabs li {
    padding: 0;
    margin: 0 6px 0 0;
  }
  .helpdesk-outer ul li .topic-image {
    width: 30.7%;
  }
  .main-header {
    position: static !important;
    background-color: #1269e3;
    padding: 20px 0;
  }
  .main-header .header-right {
    -webkit-align-self: center;
    -ms-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  header .header-right ul li {
    margin-right: 5px;
  }
  header .header-right ul li:not(:last-of-type) a {
    font-size: 15px;
    padding: 4px 10px;
  }
  header .header-right ul li.open-menu a {
    display: block;
    max-width: 82%;
    margin-left: auto;
  }
  header .header-right ul li:last-of-type {
    margin-left: 0;
  }
  .hero-home {
    padding: 50px 0 0;
  }
  .main-tubs-outer .match-types .match-tab a {
    min-height: 0;
  }
  .main-tubs-outer:before {
    height: 120px;
  }
  .main-tubs-outer {
    background-position: center top 0px;
  }
  .app-detail .detail-inner li {
    width: calc(50% - 10px);
    width: -ms-calc(50% - 10px);
    margin: 0 20px 25px 0 !important;
  }
  .app-detail h4 {
    font-size: 28px;
  }
  .app-detail h3 {
    font-size: 35px;
  }
  .app-detail .app-link {
    margin: 15px 0 35px;
  }
  .app-detail .app-link input[type="number"] {
    font-size: 15px;
    padding: 5px 15px;
    height: 52px;
  }
  .app-detail .app-link input[type="submit"] {
    font-size: 18px;
    max-width: 150px;
  }
  .main-tubs-outer ul li.tab-pane h6 {
    font-size: 15px;
  }
  .main-tubs-outer ul li.tab-pane .league-type p {
    font-size: 12px;
  }
  .main-tubs-outer ul li.tab-pane .league-type p.match-countdown {
    width: 100%;
    max-width: 166px;
    margin: 0 auto;
  }
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 55px;
  }
  h3 {
    font-size: 38px;
  }
  h4 {
    font-size: 28px;
  }
  h5 {
    font-size: 22px;
  }
  h6 {
    font-size: 17px;
  }
  footer .social-outer {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  footer .footer-menu {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
  }
  .main-tubs-outer ul li .tab-pane-inner .left-team, .main-tubs-outer ul li .tab-pane-inner .right-team {
    width: 28.23%;
  }
  .main-tubs-outer ul li .tab-pane-inner .left-team {
    text-align: left;
  }
  .main-tubs-outer ul li .tab-pane-inner .right-team {
    text-align: right;
  }
  .main-tubs-outer ul li .tab-pane-inner .league-type {
    width: 31.63%;
  }
  .howplay-tabs-outer.about-tabs-outer .nav-tabs li a {
    font-size: 15px;
  }
  /*about-page-css*/
  .inner-banner {
    padding: 50px 0;
  }
  .about-content p {
    line-height: 30px;
  }
  .journey-outer h4, .our-mission h4 {
    font-size: 34px;
  }
  .journey-outer .founded-outer {
    margin: 25px auto 10px !important;
  }
  .about-tabs-outer {
    padding: 20px 0 30px;
  }
  .about-tabs-outer .nav-tabs li a {
    font-size: 20px;
    padding: 0 0 8px;
  }
  .about-tabs-outer .nav-tabs li a:before {
    width: 50px;
    height: 4px;
  }
  .journey-outer .founded-outer .founded-inner {
    margin-top: -40px;
  }
  /*about-page-css-end*/
  /*how-play-page-css*/
  .howplay-content .howplay-image {
    text-align: center !important;
    margin-top: 20px;
  }
  .howplay-content .howplay-image img {
    max-width: 50%;
  }
  .howplay-content {
    padding: 35px 0 60px;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-info span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 35px;
  }
  /*how-play-page-css-end*/
  /*terms-condition-page-css*/
  .terms-condition-outer h4 {
    font-size: 25px;
    line-height: 30px;
  }
  .btn-primary {
    font-size: 25px;
  }
  .helpdesk-outer .topic-articles .btn-primary {
    padding: 10px;
  }
  /*terms-condition-page-css-end*/
  /*invite-page-css*/
  .invite-info ul li {
    margin-bottom: 50px;
    display: block;
    text-align: center;
  }
  .invite-info ul li .cricket-image {
    margin-right: 0;
    width: 100%;
  }
  .invite-info ul li .cricket-image img {
    max-width: 45%;
  }
  .invite-info ul li .cricket-info {
    width: 100%;
    margin-top: 15px;
  }
  .invite-info ul li .cricket-info span {
    margin: 0 auto 12px;
  }
  .invite-info ul li:nth-of-type(even) .cricket-image {
    margin-left: 0;
  }
  /*invite-page-css-end*/
  /*faq-page-css-start*/
  .faq-accordion h5 {
    margin: 30px 0 10px;
  }
  .faq-accordion .card .card-body {
    padding: 10px 15px;
  }
  .faq-accordion .title {
    font-size: 17px;
    padding: 10px 15px;
  }
  .faq-accordion ol {
    padding-left: 20px;
  }
  .faq-accordion h5 img {
    width: 22px;
    margin-right: 6px;
  }
  /*faq-page-css-end*/
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 45px;
  }
  h3 {
    font-size: 30px;
  }
  .hero-home:before {
    width: 100%;
    height: 190px;
  }
  .hero-home:after {
    width: 100%;
    height: 140px;
  }
  .app-detail .detail-inner li {
    width: 100%;
    margin: 0 0px 25px !important;
  }
  .app-detail h4 {
    font-size: 25px;
  }
  .app-detail h3 {
    font-size: 30px;
  }
  .app-detail .app-link input[type="number"] {
    font-size: 12px;
    padding: 5px 10px;
    height: 34px;
  }
  .app-detail .app-link input[type="submit"] {
    font-size: 15px;
    max-width: 120px;
    padding: 8px 10px;
  }
  .app-detail .download-app a:first-of-type {
    margin-right: 4px;
  }
  .app-detail {
    padding: 35px 0 30px;
  }
  .how-play h3 {
    font-size: 35px;
    margin: 0 0 25px;
  }
  .how-play .play-tips li h4 {
    font-size: 20px;
  }
  body {
    font-size: 15px;
  }
  .how-play .play-tips ul li:before {
    width: 25px;
    height: 25px;
    font-size: 15px;
    line-height: 26px;
  }
  .how-play .play-tips ul li {
    padding-left: 35px;
    margin-bottom: 20px;
  }
  .testimonials .player-info h6 {
    font-size: 18px;
  }
  .testimonials .player-info p {
    font-size: 15px;
    line-height: 25px;
  }
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 25px;
  }
  h5 {
    font-size: 20px;
  }
  .menu-outer .menu-inner .login-outer {
    padding: 10px 15px;
  }
  .menu-outer .login-outer a {
    font-size: 15px;
    padding: 6px;
    max-width: 80px;
    margin-right: 10px;
  }
  .menu-outer .login-outer .close-btn {
    width: 30px;
    height: 30px;
    line-height: 21px;
    font-size: 20px;
    padding: 5px 2px;
    right: 15px;
  }
  .menu-outer .menu-inner ul li a {
    font-size: 15px;
    padding: 10px 15px;
  }
  .menu-outer .menu-inner .download-application {
    padding: 20px 15px;
  }
  .menu-outer .menu-inner ul {
    height: calc(100% - 126px);
    height: -ms-calc(100% - 126px);
  }
  .menu-outer .menu-inner {
    max-width: 260px;
  }
  .app-detail .detail-inner {
    max-width: 320px;
  }
  .enjoy-offer .offer-left h2 {
    font-size: 40px;
    line-height: 28px;
  }
  .enjoy-offer .offer-left h3 {
    font-size: 25px;
    line-height: 30px;
  }
  .enjoy-offer {
    padding: 40px 0;
  }
  footer .office-address p strong {
    font-size: 18px;
    line-height: 26px;
  }
  footer .office-address p {
    font-size: 15px;
    line-height: 25px;
  }
  .footer-bottom ul li:first-of-type {
    padding-right: 15px;
    margin-right: 15px;
  }
  .footer-bottom ul li a {
    font-size: 15px;
  }
  footer .footer-menu ul li a {
    font-size: 15px;
    padding: 5px 0;
  }
  footer .footer-menu ul li {
    margin: 0 0 5px;
  }
  footer .social-outer ul li {
    margin-right: 12px;
  }
  .main-tubs-outer .match-types .match-tab a {
    padding: 9px 5px;
  }
  .main-tubs-outer .match-types .match-tab h5 {
    font-size: 12px;
  }
  .main-tubs-outer .match-types .match-tab svg {
    max-height: 30px;
  }
  .main-tubs-outer:before {
    height: 74px;
  }
  .main-tubs-outer ul li.tab-pane .league-type p.match-countdown {
    padding: 6px 5px;
  }
  .main-tubs-outer ul li.tab-pane .league-type p {
    font-size: 10px;
  }
  .main-tubs-outer ul li .tab-pane-inner .left-team img, .main-tubs-outer ul li .tab-pane-inner .right-team img {
    max-width: 45%;
  }
  .main-tubs-outer ul li.tab-pane h6 {
    font-size: 12px;
  }
  .main-tubs-outer ul li .tab-pane-inner .league-type {
    width: 39%;
  }
  .main-tubs-outer ul li .tab-pane-inner .left-team, .main-tubs-outer ul li .tab-pane-inner .right-team {
    width: 31.5%;
  }
  .btn {
    font-size: 15px;
    padding: 10px 5px;
    max-width: 150px;
  }
  .how-play img {
    max-width: 40%;
  }
  /*about-page-css*/
  .inner-banner h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
  }
  .inner-banner p {
    font-size: 15px;
    line-height: 20px;
  }
  .inner-banner {
    padding: 35px 0;
  }
  .about-content {
    padding: 25px 0 0;
  }
  .about-content p {
    line-height: 25px;
    margin-bottom: 15px;
  }
  .journey-outer h4, .our-mission h4 {
    font-size: 25px;
  }
  .journey-outer .journey-content p, .our-mission p {
    line-height: 25px;
    margin-bottom: 35px;
  }
  .journey-outer .founded-outer {
    max-width: 100%;
  }
  .journey-outer .award-outer {
    margin-right: 0;
  }
  .journey-outer .award-outer img {
    max-width: 100%;
  }
  .journey-outer .founded-outer .founded-inner {
    margin-top: -20px;
  }
  .about-tabs-outer .nav-tabs li a {
    font-size: 15px;
  }
  .about-tabs-outer .nav-tabs li {
    width: 32%;
    margin-right: 1%;
  }
  .about-tabs-outer .tab-content li h5 {
    font-size: 20px;
  }
  .about-tabs-outer .tab-content li h6 {
    font-size: 18px;
  }
  .about-tabs-outer .tab-content li p {
    line-height: 25px;
  }
  /*about-page-css-end*/
  /*how-play-page-css*/
  .howplay-tabs-outer.about-tabs-outer .nav-tabs li a {
    font-size: 10px;
  }
  .howplay-tabs-outer.about-tabs-outer .nav-tabs li a img {
    max-height: 30px;
    margin: 0 auto 7px !important;
  }
  .howplay-tabs-outer .tab-content .play-btn {
    max-width: 230px;
    font-size: 18px;
    padding: 15px 15px 15px 45px;
    background-size: 30px 30px;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-image img {
    max-width: 50%;
  }
  .howplay-tabs-outer.about-tabs-outer .tab-content li .cricket-info span {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 25px;
  }
  /*how-play-page-css-end*/
  /*terms-condition-page-css*/
  .terms-condition-outer {
    padding: 30px 0;
  }
  .terms-condition-outer h4 {
    font-size: 25px;
    line-height: normal;
  }
  /*terms-condition-page-css-end*/
  /*helpdesk-page-css*/
  .help-form-outer form .btn-primary {
    max-width: 90px;
  }
  /*
    .helpdesk-outer ul li .topic-image {
        width: 100%;
    }
*/
  .helpdesk-outer ul li .topic-content {
    width: 100%;
    margin: 8px 0 0;
  }
  /*

    .helpdesk-outer ul li {
        display: block;
        text-align: center;
    }
*/
  .helpdesk-outer ul li h6 {
    font-size: 18px;
  }
  .helpdesk-outer ul li p {
    font-size: 15px;
  }
  .helpdesk-outer .topic-articles p {
    line-height: 25px;
    margin: 0 0 15px;
  }
  .btn-primary {
    font-size: 18px;
  }
  .helpdesk-outer {
    padding: 20px 0;
  }
  /*helpdesk-page-css-end*/
  /*invite-page-css*/
  .invite-content .howplay-image {
    margin-top: 25px;
  }
  .invite-info ul li .cricket-info span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .invite-info .play-btn {
    max-width: 230px;
    font-size: 18px;
    padding: 15px 15px 15px 45px;
    background-size: 30px 30px;
  }
  .invite-info ul li .cricket-image img {
    max-width: 50%;
  }
  /*sk 19-12-2020*/
  .contect-us-pa .contec-list {
    text-align: left;
  }
  .contec-list .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
  .contec-list .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .left-contect h2 {
    font-size: 27px;
    margin-bottom: 12px;
  }
  .left-contect h3 {
    font-size: 23px;
    margin-top: 12px;
  }
  /*invite-page-css-end*/
  /*how-to-play-page-css-start*/
  .winning-outer img, .winning-user-outer img {
    max-width: 60%;
  }
  /*how-to-play-page-css-end*/
}