/*!
Theme Name: LP theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lp_theme
*/


 body.is-nav-open {

     overflow: hidden;

 }



 section {

     scroll-margin-top: 200px;
     /* adjust based on header height */

 }



 .header {

     background-color: #1c2220;

     padding-block: 15px;

     position: sticky;

     width: 100%;

     z-index: 999;

     transition: background-color 0.4s ease, box-shadow 0.4s ease, all .4s ease-in-out;

 }



 .is-header-sticky .header {

     position: fixed;

     top: 0;

     left: 0;

     right: 0;

     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

     animation: HeaderRise 0.8s linear;

 }



 @keyframes HeaderRise {

     0% {

         transform: translateY(-100px);

     }



     100% {

         transform: translateY(0);

     }

 }



 .header-logo {

     display: block;

     width: clamp(9rem, 7.713rem + 5.319vw, 9rem);

 }



 .nav-wrap {

     display: flex;

     align-items: center;

     gap: clamp(0.625rem, 0.293rem + 1.064vw, 1.25rem);

     justify-content: space-between;

 }



 .nav-wrap nav>ul {

     list-style: none;

     display: flex;

     align-items: center;

     padding: 0;

     margin: 0;
     gap: 10px;

 }



 .nav-wrap ul a {

     display: inline-block;

     text-decoration: none;

     color: #fff;

     padding: 10px 15px;

     transition: .4s all ease-in-out;

 }



 .nav-wrap ul li>a {

     font-size: 18px;

 }



 .nav-wrap ul li.current-menu-item a {

     color: #f06b1f;

 }



 .nav-head {

     display: none;

 }



 /* Sub Menu */

 .header nav li {

     position: relative;

 }



 .header .sub-menu ul {

     position: absolute;

     background-color: #f9f9f9;

     border-top: 2px solid #000;

     padding-block: 10px;

     padding-left: 0;

     left: 15px;

     top: 140%;

     transform: translateY(100px);

     opacity: 0;

     visibility: hidden;

     transition: .4s all ease-in-out;

     min-width: 150px;

     border-radius: 10px;

     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

 }



 .nav-wrap .sub-menu ul li>a {

     font-size: 16px;

 }



 .header .arrow {

     display: block;

     height: 8px;

     width: 8px;

     position: absolute;

     right: 0;

     top: 17px;

 }



 .header .arrow:before {

     content: '';

     display: block;

     border-top: 1px solid #000;

     border-right: 1px solid #000;

     width: 5px;

     height: 5px;

     transform: rotate(135deg);

     transition: .4s all ease-in-out;

 }



 /* Sub of Sub Menu */

 .header .sub-of-sub-menu ul {

     top: 0;

     left: 100%;

     transform: translateY(0) translateX(100px);

 }



 .header .sub-of-sub-menu .arrow {

     right: 10px;

 }



 .header .sub-of-sub-menu .arrow::before {

     transform: rotate(45deg);

 }



 .recent-box-con {

     padding: 10px 0;

 }



 .wt-img,

 .wt-img {

     min-height: 430px;

     max-width: 730px;

     object-fit: cover;

     display: block;

 }



 .hero-bg {

     background-image: url(../img/hero-banner.jpg);

     background-position: center;

     background-size: cover;

     background-repeat: no-repeat;

     position: relative;

 }



 .hero-bg::before {

     position: absolute;

     content: "";

     left: 0;

     top: 0;

     right: 0;

     bottom: 0;

     background-color: #000000b5;

 }



 .hero-bg .container-custom {

     position: relative;

     z-index: 5;

 }



 .bg-background\/85 {

     background-color: hsl(var(--background) / 0.60);

 }

 .nav-overlay {
     display: none;
 }

 .navigation-toggler {
     display: none;
 }


 @media(min-width:1199px) {

     .nav-wrap ul li:hover>a {

         color: #f06b1f;

     }



     /* Sub Menu */

     .nav-wrap ul li:hover>.arrow:before {

         border-color: #f06b1f;

         transform: rotate(-45deg);

     }



     .sub-menu:hover>ul {

         opacity: 1;

         visibility: visible;

         transform: translateY(0);

     }



     /* Sub of Sub Menu */

     .nav-wrap ul .sub-of-sub-menu:hover>.arrow:before {

         transform: rotate(135deg);

     }



     .sub-of-sub-menu:hover>ul {

         opacity: 1;

         visibility: visible;

         transform: translateX(0);

     }

 }



 @media(max-width:1199px) {

     .nav-overlay {

         background-color: rgb(0 0 0 / 50%);

         position: fixed;

         z-index: 8;

         inset: 0;

         transform: translateX(-100%);

         opacity: 0;

         transition: opacity .4s ease-in-out;

     }

     .nav-wrap {
         justify-content: end;
     }

     .nav-overlay,
     .navigation-toggler {
         display: block;
     }


     .nav-wrap nav {

         position: fixed;

         inset: 0;

         z-index: 9;

         max-width: 500px;

         background: #000;

         transform: translateX(-100%);

         transition: .6s all ease-in-out;

     }





     .nav-head {

         display: block;

     }



     .is-nav-open .nav-overlay,

     .is-nav-open .nav-wrap nav {

         transform: translateX(0);

         opacity: 1;

     }



     .nav-wrap nav>ul {

         display: block;

         padding-top: 10px;

         max-height: calc(100vh - var(--header-height));

         overflow: auto;

         padding-bottom: 30px;

     }



     .nav-wrap nav>ul>li+li,

     .nav-wrap nav>ul>li:last-child {

         border-top: 1px solid #cccccc54;

     }



     .nav-head {

         padding: 20px 15px;

         border-bottom: 1px solid #cccccc54;

         display: flex;

         align-items: center;

         justify-content: space-between;

     }



     .navigation-toggler {

         background-color: transparent;

     }



     .header .icon {

         mask-size: 30px;

         mask-repeat: no-repeat;

         width: 30px;

         height: 30px;

         display: block;

     }



     .icon-navigation-burger {

         mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7C4 6.44771 4.44772 6 5 6H24C24.5523 6 25 6.44771 25 7C25 7.55229 24.5523 8 24 8H5C4.44772 8 4 7.55229 4 7Z' fill='%23000000'/%3E%3Cpath d='M4 13.9998C4 13.4475 4.44772 12.9997 5 12.9997L16 13C16.5523 13 17 13.4477 17 14C17 14.5523 16.5523 15 16 15L5 14.9998C4.44772 14.9998 4 14.552 4 13.9998Z' fill='%23000000'/%3E%3Cpath d='M5 19.9998C4.44772 19.9998 4 20.4475 4 20.9998C4 21.552 4.44772 21.9997 5 21.9997H22C22.5523 21.9997 23 21.552 23 20.9998C23 20.4475 22.5523 19.9998 22 19.9998H5Z' fill='%23000000'/%3E%3C/svg%3E");

         background-color: #fff;

         rotate: 180deg;

     }



     .icon-navigation-close {

         mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle opacity='0.5' cx='12' cy='12' r='10' stroke='%231C274C' stroke-width='1.5'/%3E%3Cpath d='M14.5 9.50002L9.5 14.5M9.49998 9.5L14.5 14.5' stroke='%231C274C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");

         background-color: #fff;

     }



     /* Sub Menu & Sub of Sub Menu */

     .header .arrow {

         display: block;

         height: 40px;

         width: 40px;

         position: absolute;

         right: 0;

         top: 0;

     }



     .header .arrow:before,

     .header .sub-of-sub-menu .arrow::before {

         content: '';

         display: block;

         border-top: 1px solid #000;

         border-right: 1px solid #000;

         width: 8px;

         height: 8px;

         position: absolute;

         top: 50%;

         left: 50%;

         transform: translate(-50%, -50%) rotate(45deg);

     }



     .header .arrow-open::before,

     .header .sub-of-sub-menu .arrow-open::before {

         transform: translate(-50%, -50%) rotate(135deg);

     }



     .header .sub-menu ul {

         display: none;

         position: unset;

         border-top: none;

         transform: none;

         opacity: 1;

         visibility: visible;

         padding-left: 0;

         margin-inline: 10px;

         margin-bottom: 10px;

         transition: unset;

         box-shadow: none;

     }

 }



 .justify-content-between {

     justify-content: space-between;

 }



 .align-items-center {

     align-items: center;

 }



 .d-flex {

     display: flex;

 }



 .col-auto {

     flex: auto;

 }



 .faq-section {

     max-width: 900px;

     margin: 40px auto;

 }

 .pb-0 {
     padding-bottom: 0 !important;
 }


 .faq-item {

     background: #15181e;

     border-radius: 10px;

     margin-bottom: 12px;

     overflow: hidden;

     border: 1px solid #272c35;

 }



 .faq-question {

     display: flex;

     align-items: center;

     padding: 16px 20px;

     cursor: pointer;

     font-size: 16px;

     font-weight: 600;

 }



 .faq-question .icon {

     width: 22px;

     height: 22px;

     border-radius: 50%;

     background: #f06b1f;

     color: #000;

     display: flex;

     align-items: center;

     justify-content: center;

     font-size: 14px;

     margin-right: 12px;

 }



 .faq-question .arrow {

     margin-left: auto;

     color: #f06b1f;

     font-size: 14px;

 }



 .faq-answer {

     display: none;

     padding: 0 20px 16px 20px;

     color: #cfcfcf;

     font-size: 14px;

     line-height: 1.6;

 }



 .faq-item.active .faq-answer {

     display: block;

 }



 .faq-item .arrow {

     transform: rotate(180deg);

 }



 .faq-item.active .arrow {

     transform: rotate(0);

 }



 .arrow-icon {

     transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);

 }



 .faq-item .arrow svg {

     fill: #fff;

     width: 20px;

     height: 20px;

 }



 .btn-whatsapp {

     padding: 13px 25px;

     font-size: 16px;

     font-weight: 600;

     line-height: 1;

 }



 .d-block {

     display: block;

 }



 .m-30 {

     margin-bottom: 30px;

 }



 .why-city-con {

     text-align: center;

     margin-bottom: 40px;

     display: block;

 }



 .why-img {

     margin-top: 20px;

     border-radius: 10px;

     overflow: hidden;

 }



 .online-sec {

     background-image: url(../img/banner-1.jpg);

     background-position: top;

     background-size: cover;

     background-repeat: no-repeat;

     position: relative;

 }







 .explore-sec {

     background-image: url(../img/banner-2.jpg);

     background-position: top;

     background-size: cover;

     background-repeat: no-repeat;

     position: relative;

 }



 .blog-card-con {

     padding-left: 0;

     padding-right: 0;

 }



 .online-sec .container-custom,

 .explore-sec .container-custom {

     position: relative;

     z-index: 5;

 }

 .hero-img img {
     width: 100%;
     object-fit: cover;
 }


 .min-h-screen {
     min-height: 80vh !important;
 }

 .online-sec::before,

 .explore-sec::before {

     position: absolute;

     content: "";

     top: 0;

     left: 0;

     right: 0;

     bottom: 0;

     width: 100%;

     height: 100%;

     background-color: rgb(0 0 0 / 70%);

 }



 .cms-con p {

     margin-bottom: 20px;



     &:last-child {

         margin-bottom: 0;

     }

 }



 .pt-0 {

     padding-top: 0;

 }



 .platform-city-con {

     text-align: center;

     margin-bottom: 25px;

 }



 .m-svg-auto {

     margin: 0 auto 8px;

 }



 .title-center {

     text-align: center;

 }



 .justify-content-center {

     justify-content: center;

 }



 * {

     padding: 0;

     margin: 0;

     border: none;

     -moz-box-sizing: border-box;

     -ms-box-sizing: border-box;

     -webkit-box-sizing: border-box;

     box-sizing: border-box;

 }



 .common-sec {

     padding: 100px 0;

 }



 .container {

     max-width: 1366px;

     margin: auto;

     padding: 0 15px;

 }



 .sticky-whatsapp-btn a {

     position: fixed;

     right: 15px;

     bottom: 150px;

     width: 60px;

     height: 60px;

     background-color: #1cd766;

     text-align: center;

     vertical-align: middle;

     border-radius: 50%;

     z-index: 99;

     padding: 15px;

     animation: breathe 2s ease-in-out infinite
 }



 @keyframes breathe {

     0% {

         box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
     }



     70% {

         box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
     }



     100% {

         box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)
     }

 }

 .btn-green {
     box-shadow: none !important;
     background: #2d864a;
 }

 .btn-green:hover {
     background: #1a8f48;
 }

 .btn-blue {
     box-shadow: none !important;
     background: #1f8fcc;
 }

 .btn-blue:hover {
     background: #29a9ea;
 }


 /*---CMS-Con-Start---*/

 .cms-con {

     display: block;

     width: 100%;

     color: #999;

     font-family: "Roboto", sans-serif;

 }



 .cms-con h1 {

     font-size: 34px;

     line-height: 1.2;

     font-weight: 700;

     color: #e6e6e6;

     display: block;

     margin-top: 0;

     margin-bottom: 20px;
     border: none;

 }



 .cms-con h2 {

     font-size: 30px;

     line-height: 1.2;

     font-weight: 700;

     color: #e6e6e6;

     display: block;

     margin-top: 0;

     margin-bottom: 20px;
     border: none;

 }



 .cms-con h3 {

     font-size: 24px;

     line-height: 1.2;

     font-weight: 700;

     color: #e6e6e6;

     display: block;

     margin-top: 0;

     margin-bottom: 20px;
     border: none;

 }



 .cms-con h4 {

     font-size: 20px;

     line-height: 1.2;

     font-weight: 700;

     color: #e6e6e6;

     display: block;

     margin-top: 0;

     margin-bottom: 20px;
     border: none;

 }



 .cms-con h5 {

     font-size: 18px;

     line-height: 1.2;

     font-weight: 700;

     color: #e6e6e6;

     display: block;

     margin-top: 0;

     margin-bottom: 20px;
     border: none;

 }



 .cms-con h6 {

     font-size: 16px;

     line-height: 1.2;

     font-weight: 700;

     color: #e6e6e6;

     display: block;

     margin-top: 0;

     margin-bottom: 20px;
     border: none;

 }



 .cms-con .alignleft {

     float: left;

     width: auto;

     max-width: 50%;

     margin: 0 30px 30px 0;

 }



 .cms-con .aligncenter {

     width: auto;

     max-width: 100%;

     margin: 0 auto 30px auto;

     text-align: center;

     display: block;

 }



 .cms-con .alignright {

     float: right;

     width: auto;

     max-width: 50%;

     margin: 0 0 30px 30px;

 }



 .cms-con iframe {

     width: 100%;

     height: 600px;

     margin-bottom: 30px;

 }



 .cms-con p,

 .cms-con span {

     display: block;

     margin-bottom: 20px;

     color: #999;

     line-height: 1.4;

     font-weight: 400;

     font-size: 16px;

 }



 .cms-con b,

 .cms-con strong {

     margin-bottom: 0;

     display: inline;

     font-size: 16px;

     margin-bottom: 0;

     display: inline-block;

 }

 .cms-con p strong,
 .cms-con p b {
     margin-bottom: 0;
 }

 .cms-con p b {

     margin-bottom: 0;

 }



 .cms-con p a,

 .cms-con a {

     transition: color 0.4s ease-in-out;

     color: #f06b1f;

     text-decoration: underline;

     text-underline-offset: 2px;

     text-decoration-thickness: 1px;

 }



 .cms-con p a:hover,

 .cms-con a:hover {

     color: #999;

 }



 .cms-con ul {

     list-style: none;

     font-size: 0;

     padding: 0;

     margin-bottom: 20px;

     display: inline-block;

 }



 .cms-con ul li {

     display: block;

     width: 100%;

     font-size: 16px;

     font-weight: 400;

     line-height: 1.4;

     color: #999;

     margin-bottom: 15px;

     padding-left: 20px;

     position: relative;

 }



 .cms-con ul li:before {

     content: '';

     width: 10px;

     height: 10px;

     border-radius: 50%;

     position: absolute;

     left: 0;

     top: 5px;

     background: #f06b1f;

 }



 .cms-con ul li:last-child {

     margin-bottom: 0;

 }



 .cms-con ul li ul,

 .cms-con ol li ul {

     display: block;

     margin-top: 15px;

     margin-bottom: 0;

 }



 .cms-con ul li ul li {

     padding-left: 16px;

 }



 .cms-con ul li ul li:before {

     width: 8px;

     height: 2px;

     border-radius: 0;

     top: 10px;

 }



 .cms-con ol {

     padding: 0;

     margin-bottom: 20px;

     display: inline-table;

     counter-reset: cmscon-counter;

     list-style-type: none;

 }



 .cms-con ol li {

     position: relative;

     font-size: 16px;

     font-weight: 400;

     line-height: 1.4;

     color: #999;

     list-style: none;

     margin-bottom: 12px;

     padding-left: 18px;

 }



 .cms-con ol li:last-child {

     margin-bottom: 0;

 }



 .cms-con ol li:before {

     position: absolute;

     left: 0;

     counter-increment: cmscon-counter;

     content: "" counter(cmscon-counter) ".";

     line-height: 1.4;

 }



 .cms-con ol li ul li:before {

     counter-increment: none;

     content: no-close-quote;

 }



 .cms-con ul.half li,

 .cms-con ol.half li {

     width: 50%;

     display: inline-block;

 }



 .cms-con hr {

     background: #f06b1f;

     height: 0;

     border: 1px dashed #999;

     margin: 30px 0;

 }



 .clearfix {

     clear: both;

 }


 .btn-green.bg-yellow {
     background-color: #d47f17 !important;
 }

 .btn-green.bg-red {
     background-color: red !important;
 }

 /*---CMS-Con-End---*/

 @media only screen and (max-width: 1199px) {

     .common-sec {

         padding: 60px 0;

     }



     /*---CMS-Con-Start---*/

     .cms-con iframe {

         height: 500px;

     }



     /*---CMS-Con-End---*/



     .sub-title-card {

         font-size: 22px;

     }

 }



 @media only screen and (max-width: 767px) {

     .common-sec {

         padding: 40px 0;

     }



     /*---CMS-Con-Start---*/

     .cms-con h1 {

         font-size: 32px;

         margin-bottom: 15px;

     }



     .cms-con h2 {

         font-size: 28px;

         margin-bottom: 15px;

     }



     .cms-con h3 {

         margin-bottom: 15px;

     }



     .cms-con h4 {

         margin-bottom: 15px;

     }



     .cms-con h5 {

         margin-bottom: 15px;

     }



     .cms-con h6 {

         margin-bottom: 15px;

     }



     .cms-con .alignleft {

         margin: 0 20px 20px 0
     }



     .cms-con .aligncenter {

         margin: 0 auto 20px auto
     }



     .cms-con .alignright {

         margin: 0 0 20px 20px
     }



     .cms-con iframe {

         height: 400px;

         margin-bottom: 20px;

     }



     .cms-con p,

     .cms-con span {

         font-size: 14px;

         margin-bottom: 15px;

     }



     .cms-con ul,

     .cms-con ol {

         margin-bottom: 15px;

     }



     .cms-con ul li {

         font-size: 14px;

         padding-left: 15px;

         margin-bottom: 12px;

     }



     .cms-con ul li:before {

         width: 8px;

         height: 8px;

         top: 5px;

     }



     .cms-con ul li ul li:before {

         top: 8px;

     }



     .cms-con ol li {

         font-size: 14px;

         padding-left: 15px;

     }



     .cms-con hr {

         margin: 20px 0;

     }



     /*---CMS-Con-End---*/



     .sub-title-card {

         font-size: 18px;

     }

     .btn-svg {
         font-size: 14px !important;
         width: -moz-fit-content;
         width: fit-content;
         padding: 13px 20px !important;
         height: -moz-fit-content;
         height: fit-content !important;
         display: flex !important;
     }

 }



 @media only screen and (max-width: 568px) {



     /*---CMS-Con-Start---*/

     .cms-con .alignleft,

     .cms-con .alignright {

         float: none;

         max-width: 100%;

         margin-right: 0;

         margin-left: 0;

     }



     .cms-con iframe {

         height: 300px;

     }



     .cms-con ul.half li,

     .cms-con ol.half li {

         width: 100%;

     }



     /*---CMS-Con-End---*/

 }



 @media screen and (max-width: 568px) {

     .sticky-whatsapp-btn a {

         bottom: 110px;

         width: 50px;

         height: 50px;

         padding: 10px;

     }



     .pt-28 {

         padding-top: 40px;

     }

     #home .container {
         text-align: center !important;
     }

     #home::before {
         background-color: rgb(0 0 0 / 80%);
     }

     #home .wp-link {
         width: fit-content;
         margin: 0 auto;
     }

     .header-logo {
         max-width: 110px;
     }

     .btn-green.bg-yellow,
     .btn-green.bg-red {
         font-size: 12px;
     }
 }

 @media (max-width: 350px) {
     .btn-svg svg {
         width: 20px !important;
         height: 20px !important;
     }

     .btn-svg {
         font-size: 12px !important;
         padding: 13px 15px !important;
     }

     .btn-green.bg-yellow,
     .btn-green.bg-red {
         padding: 9px 13px;
     }
 }

 .pagination .nav-links {
     display: flex;
     gap: 10px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .pagination .page-numbers {
     padding: 12px 20px;
     border: 1px solid #262626;
     text-decoration: none;
     border-radius: 10px;
     font-size: 16px;
     font-weight: 600;
 }

 .pagination .page-numbers.current {
     background: #f26d25;
     color: #fff;
 }

 .pagination .page-numbers:hover {
     background: #0e0e0e;
 }

 .hero-img {
     display: block;
 }

 .hero-img img {
     margin: auto;
     display: block;
     width: 100%;
 }

 .w-15.h-15 {
     width: 20px;
     height: 20px;
 }

 .text-primary {
     color: var(--primary);
 }


 .marquee-with-options {
     overflow: hidden;
 }

 .marquee-inner .item {
     padding: 5px;
     font-size: 35px;
     font-weight: 600;
     color: #f06b1f;
 }

 .marquee-inner {
     display: flex;
 }

 .cricket-id-marquee {
     padding: 30px;
     background-color: #15181e;
 }

 .banner-inner img {
     width: 100%;
 }

 table {
     border-collapse: collapse;
     width: 100%;
     margin-bottom: 20px;
 }

 th,
 td {
     border: 1px solid #484848;
     padding: 8px;
     text-align: left;
 }

 @media screen and (max-width: 568px) {

     .hero-form>div {
         min-width: 100% !important;
     }

     .marquee-inner .item {
         font-size: 28px;
     }

     .cricket-id-marquee {
         padding: 20px;
     }
     .cms-con th b,.cms-con td b,.cms-con th, .cms-con td{font-size: 14px;}
 }

 @media (min-width: 640px) {
     .container {
         max-width: 1366px !important;
     }
 }

 .section p a,
 .sec-con p a {
     text-decoration: underline;
     transition: all 0.4s ease-in-out;
 }

 .section p a:hover,
 .sec-con p a:hover {
     color: #fff;
 }

.tablecontainer {
    overflow-x: auto;
}
.cms-con.tablecontainer table {
    width: 100%;
    min-width: 700px;
}