:root {
    --base-font-family: 'SFCompactDisplay', sans-serif;
    --base-font-size: 16px;
    --text-dark: #363636;
    --color-black: #fff;
    --color-dark-blue: #011A19;
    --color-primary: #A83635;
}
* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-size: var(--base-font-size);
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    font-family: var(--base-font-family);
    background: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
button,
input,
optgroup,
select,
textarea {
    font-family: var(--base-font-family);
}
a {
    transition: all 0.3s;
}
/*Typography*/
h1,
h2,
h3 {
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--color-dark-blue);
}
h1 {
    font-size: 66px;
    line-height: 1.1;
    font-weight: 600;
}
h2 {
    font-size: 36px;
}
.small-h2 {
    font-size: 30px;
    line-height: 1.11111;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}
h2.text-xl {
    font-size: 44px;
}
/*BUTTONS*/
.btn {
    border-radius: 50px;
    padding: 10px 25px;
    text-align: center;
    border: 1px solid transparent;
    outline: none;
    transition: all 0.3s;
}
.btn:hover {
    opacity: 0.8;
}
.btn.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    font-size: inherit;
    font-weight: 400;
}
.btn.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn.btn-primary:before {
    content: "";
    z-index: 0;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skew(-15deg);
    background: linear-gradient(90deg, transparent, #fff, transparent);
    opacity: .5;
    transition: none;
}
.btn.btn-primary:hover:before {
    transition: 1.5s ease all;
    left: 100%;
}
.btn.btn-primary:hover {
    opacity: 1;
}
.btn.btn-primary.arrow-right:after,
.btn.btn-outline.arrow-right:after {
    content: "";
    background-image: url('../../assets/images/landing/arrow-right-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 12px;
    height: 10px;
    display: inline-block;
    margin-left: 10px;
}
.btn.btn-outline.arrow-right.black:after {
    background-image: url('../../assets/images/landing/arrow-right-black.svg');
}
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    border-color: var(--color-primary);
}
.btn.btn-outline {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}
/*----------------------------------
#Header
-------------------------------------*/
.landing-header {
    position: fixed;
    left: 0;
    top: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 99;
    padding: 30px 0;
}
.landing-header .header-inner {
    position: relative;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
}
.landing-header .header-inner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #EFFAFAB2;
    backdrop-filter: blur(60px);
    z-index: -1;
}
.header-right {
    display: flex;
}
.header-right .btn+.btn {
    min-width: 120px;
}
.main-navigation>ul {
    display: flex;
    align-items: center;
    gap: 16px;
}
.main-navigation>ul>li>a {
    color: var(--color-black);
    font-size: var(--base-font-size);
    padding: 12px 6px;
    position: relative;
}
.main-navigation>ul>li>a:hover {
    color: #000;
}
/*Global component*/
.flex-row {
    display: flex;
    flex-wrap: wrap;
}
.flex-row .column {
    flex: 1;
}
ul.style-list li {
    color: #424242;
    border: 1px solid #A6DADA99;
    border-radius: 20px;
    padding: 10px 11px;
    margin: 5px 0;
    position: relative;
    padding-left: 45px;
    max-width: calc(50% - 10px);
}
ul.style-list li:after,
ul.style-list li:before {
    content: "";
    background: #65B7BB;
    border: 0.92px solid #65B7BB;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 11px;
    top: 9px;
    border-radius: 50%;
}
ul.style-list li:before {
    background: url('../../assets/images/landing/icon-check-white.svg') no-repeat center center;
    background-size: contain;
    width: 16px;
    height: 22px;
    border: none;
    z-index: 1;
    left: 14px;
}
/*Swiper*/
.swiper-button-prev,
.swiper-button-next,
.slider-button-prev,
.slider-button-next,
.slick-arrow {
    background: transparent;
    border: 1px solid #65B7BB;
    color: #65B7BB;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0;
    padding: 0;
    min-width: 40px;
    cursor: pointer;
}
.swiper-button-prev svg,
.swiper-button-next svg,
.slider-button-prev svg,
.slider-button-next svg,
.slick-arrow svg {
    fill: #65B7BB;
}
.swiper-button-prev:hover,
.swiper-button-next:hover,
.slider-button-prev:hover,
.slider-button-next:hover,
.slick-arrow:hover {
    background-color: #65B7BB;
    color: #fff;
}
.swiper-button-prev:hover svg,
.swiper-button-next:hover svg,
.slider-button-prev:hover svg,
.slider-button-next:hover svg,
.slick-arrow:hover svg {
    fill: #fff;
}
/**/
.section-head.center {
    text-align: center;
}
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-title h2 {
    margin: 0;
}
/*------------------------------
# Main pages
----------------------------*/
.landing-site {
    position: relative;
    z-index: 1;
    min-height: 100%;
}
.landing-site .main-page {
    z-index: 1;
    position: relative;
}
.bg-pattern,
.bg-pattern-3,
.bg-pattern-line {
    position: relative;
}
.bg-pattern:after,
.bg-pattern:before,
.bg-pattern-3:after,
.bg-pattern-3:before,
.bg-pattern-line:before {
    content: "";
    background: linear-gradient(179.25deg, #B4E7E6 0.64%, rgba(206, 244, 244, 0.542223) 53.15%, rgba(180, 231, 230, 0) 115.34%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.bg-pattern:before,
.bg-pattern-3:before {
    background: url('../../assets/images/landing/bg-pattern.png') no-repeat center center;
    z-index: 0;
    background-size: cover;
}
.bg-pattern-3:before {
    background: url('../../assets/images/landing/bg-pattern-3.png') no-repeat center center;
    opacity: 0.2;
    background-repeat: repeat;
    background-size: cover;
}
.bg-pattern-line:before {
    background: url('../../assets/images/landing/bg-pattern-line-white.png') no-repeat center center;
}
.landing-site .page-wrapper {
    width: 100%;
    display: block;
    padding: 0;
}
.top-welcome-section {
    padding-top: 220px;
    border-bottom: 1px solid #C3ECEB
}
.top-welcome-section.no-border {
    border-color: transparent;
}
.top-welcome-section .content-inner {
    max-width: 836px;
    width: 100%;
    margin: 0 auto 61px auto;
    text-align: center;
}
.top-welcome-section .content-inner.size-xl {
    max-width: 1100px;
}
.top-welcome-section h1 {
    margin-bottom: 26px;
}
.top-welcome-section p {
    font-size: 24px;
}
.top-welcome-section .actions {
    margin-top: 40px;
}
.top-welcome-section>.container {
    z-index: 1;
    position: relative;
}
.section-about {
    padding: 100px 0;
}
.pt-50 {
    padding-top: 50px;
}
.pb-80 {
    padding-bottom: 80px;
}
.section-about .flex-row>div {
    width: 50%;
}
.section-about .column.content .content-inner {
    max-width: 558px;
}
.section-about .column.content .content-inner>h2 {
    margin-bottom: 24px;
}
.column.content .style-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-top: 27px;
    margin-bottom: 36px;
}
.image-inner.rounded {
    border-radius: 15px;
    overflow: hidden;
}
.image-inner.rounded>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-likely-tipster {
    padding: 64px 0;
    background: linear-gradient(185.19deg, #F0FCFC 15.13%, rgba(240, 252, 252, 0) 95.52%);
}
.section-likely-tipster .content-inner {
    text-align: center;
    max-width: 895px;
    width: 100%;
    margin: 0 auto;
}
.section-likely-tipster .logo-holder {
    background: #000000;
    max-width: 214px;
    border-radius: 40px;
    margin: 0 auto 20px auto;
    display: block;
    padding: 10px 10px;
}
.section-likely-tipster .logo-holder img {
    max-height: 36px;
}
.counter-data {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 70px 0 30px;
}
.counter-data .item {
    border: 1px solid #85E1E4;
    border-radius: 10px;
    display: flex;
    padding: 26px 24px;
    width: 33.33%;
    justify-content: space-between;
}
.counter-data .item .left {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #1B2228;
}
.counter-data .item .icon {
    width: 36px;
    height: 36px;
}
.counter-data span.count {
    color: #0D5558;
    font-size: 36px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.section-why-choose {
    padding: 60px 0;
}
.section-why-choose .block-content {
    text-align: center;
    max-width: 680px;
    width: 100%;
    margin: 0 auto 70px auto;
    color: #EBEBEB;
}
.section-why-choose h2 {
    color: #fff;
}
.section-why-choose .content-inner {
    background: #011A19;
    border-radius: 20px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.section-why-choose .content-inner:after,
.section-why-choose .content-inner:before {
    content: "";
    background: linear-gradient(356deg, #011A19 15.5%, rgba(1, 26, 25, 0.2) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.section-why-choose .content-inner:before {
    background-image: url(../../assets/images/landing/bg-pattern-2.png);
    background-size: cover;
    z-index: -2;
    opacity: .15;
}
.service-content {
    display: flex;
    flex-wrap: wrap;
}
.service-content .item {
    width: 33.33%;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #0A3E3C;
}
.service-content .item:last-child {
    border: none;
}
.service-content .item .item-inner {
    max-width: 305px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.service-content .item h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}
.service-content .item p {
    color: #EBEBEB;
}
.section-why-choose .content-inner>.actions {
    text-align: center;
    margin-top: 60px;
}
.service-content .item .item-inner .icon {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 26px auto;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
}
.service-content .item .item-inner .icon>span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}
.service-content .item .item-inner .icon:after,
.service-content .item .item-inner .icon:before {
    content: "";
    width: 78px;
    height: 78px;
    background: #022120;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    border-radius: 50%;
}
.service-content .item .item-inner .icon:before {
    background: #042D2B;
    width: 65px;
    height: 65px;
    z-index: -1;
}
.section-client {
    background: linear-gradient(175.16deg, rgba(228, 249, 249, 0) -3.59%, rgba(228, 249, 249, 0.6) 96.28%);
    padding-bottom: 80px;
    margin-top: 60px;
    margin-bottom: 0;
}
.section-title .slider-arrow {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.client-carousel .slick-arrow {
    display: none !important;
}
.client-carousel {
    display: flex;
    margin-top: 60px;
}
.client-carousel .item {
    padding: 0 20px;
}
.client-carousel .item .item-inner {
    background-color: #fff;
    border: 1px solid #A6DADA;
    box-shadow: 1px 9px 20px 0px #C8EFEF80;
    color: #363636;
    padding-left: 40px;
    padding-right: 24px;
    padding-bottom: 14px;
    padding-top: 20px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.client-carousel .item .item-inner:before {
    content: "";
    background: url('../../assets/images/landing/icon-qoute.svg') no-repeat center center;
    width: 20px;
    height: 14px;
    object-fit: contain;
    position: absolute;
    left: 13px;
    top: 22px;
}
.client-carousel .item .item-inner .author strong {
    margin-right: 4px;
}
.section-feature-sport {
    padding: 60px 0;
}
.section-feature-sport:after {
    content: "";
    background: linear-gradient(350deg, #fff 0%, #ffffff4a 50%);
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    bottom: 0;
}
.section-feature-sport .media-block {
    text-align: center;
    margin-top: 54px;
}
.section-feature-sport .media-block>img {
    max-height: 643px;
    display: block;
    margin: 0 auto;
}
.section-plan {
    padding: 70px 0;
    background: linear-gradient(184.18deg, rgba(228, 251, 251, 0.2) 21.02%, rgba(228, 251, 251, 0.6) 96.72%);
}
.section-plan .section-head {
    margin-bottom: 60px;
    max-width: 563px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.pricing-wrapper .card {
    padding: 20px 18px;
    border: 1px solid #D7D7D7;
    border-radius: 16px;
    overflow: hidden;
}
.price-badge {
    background: #A0A0A0;
    color: #fff;
    padding: 9px 20px;
    border-radius: 0 16px 0 16px;
    position: absolute;
    left: auto;
    right: -1px;
    top: -1px;
}
.premium .price-badge {
    background-color: #1EAFB3;
}
.card-top {
    padding-bottom: 30px;
    border-bottom: 1px solid #CCCCCC;
}
.card-top h3 {
    color: #0D5558;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.card-top .price {
    font-size: 46px;
    color: #0D5558;
    font-weight: 600;
}
.card-top .price>span {
    font-size: 20px;
}
.card-middle {
    padding: 30px 0;
    min-height: 450px;
}
.card-middle h4 {
    color: #1EAFB3;
    font-size: 18px;
}
.card-middle ul li {
    color: #434343;
    padding: 4px;
    margin: 9px 0;
}
.card-actions {
    padding-top: 0;
}
.card-actions .btn {
    width: 100%;
}
.card-middle ul>li {
    position: relative;
    padding-left: 26px;
}
.card-middle ul>li:before,
.card-middle ul>li:after {
    content: "";
    background: #1eafb3;
    width: 12px;
    height: 2px;
    position: absolute;
    left: 3px;
    top: 14px;
    transform: rotate(-45deg);
}
.card-middle ul>li:before {
    transform: rotate(45deg);
    left: 0;
    width: 6px;
    top: 17px;
}
.section-newsletter {
    padding: 83px 0;
    background: #011A19;
    color: #fff;
}
.section-newsletter h2 {
    color: #fff;
    margin-bottom: 24px;
}
.section-newsletter .content-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.section-newsletter .newsletter-form {
    margin-top: 39px;
}
.subscribe-from {
    display: flex;
    gap: 0 20px;
    margin-bottom: 20px;
}
.subscribe-from .form-control {
    border: 1px solid #FFFFFF;
    background: transparent;
    border-radius: 30px;
    height: 46px;
    padding: 6px 22px;
}
.subscribe-from .submit-btn {
    position: relative;
}
.subscribe-from .submit-btn:after {
    content: "";
    background-image: url('../../assets/images/landing/arrow-right-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 12px;
    height: 10px;
    display: inline-block;
    margin-left: 6px;
    margin-left: -30px;
    position: relative;
    top: 2px;
}
.subscribe-from .submit-btn>input {
    padding-right: 40px;
    min-width: 121px;
}
.subscribe-from .submit-btn>input:after {
    display: none;
}
.newsletter-form p>a {
    color: #fff;
    text-decoration: underline;
}
.newsletter-form p {
    font-size: 14px;
}
.newsletter-form .form-control {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.newsletter-form .form-control::placeholder {
    color: #fff;
    font-weight: 400;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 0.6px solid #B6B6B6;
}
/*-----------------------------------
#Footer
--------------------------------*/
.landing-footer {
    padding-top: 60px;
    padding-bottom: 40px;
}
.footer-logo.center ul {
    flex-direction: row;
    gap: 32px;
}
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social-links li {
    padding: 10px;
    display: inline-block;
}
.footer-bottom {
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #585757;
}
.footer-links>ul {
    display: flex;
}
.footer-links ul li a {
    color: #1A1A1A;
}
/*Pricing Page*/
.section-pricing-tabs.bg-pattern:after,
.section-pricing-tabs.bg-pattern:before {
    height: 80%;
}
.section-pricing-tabs {
    /* padding-bottom: 100px; */
    padding-top: 190px;
    border-bottom: 0;
}
.plan-tabs {
    display: inline-block;
    width: 100%;
}
.plan-tabs .landing-tabs {
    justify-content: center;
    margin-bottom: 84px;
}
.section-pricing-tabs .content-inner {
    margin-bottom: 40px;
}
.plan-tabs .tab-links {
    display: flex;
    justify-content: center;
}
ul.landing-tabs {
    margin: 0;
    padding: 0;
    margin: 0;
    padding: 6px;
    display: flex;
    background: #fff;
    border-radius: 50px;
}
.tab-links {
    display: flex;
    justify-content: center;
}
/*Tabs*/
ul.landing-tabs li {
    color: #0D5558;
    min-width: 119px;
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    line-height: 1;
    cursor: pointer;
    font-weight: 400;
}
ul.landing-tabs li.active {
    background: #CAFDFF;
    font-weight: 600;
}
ul.landing-tabs li .discount,
.billing-toggle .discount {
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    border-radius: 50px;
    padding: 6px 11px;
    margin-left: 5px;
}
.tab_content {
    display: none;
}
.tab_drawer_heading {
    display: none;
}
/*Accordion*/
.accordion {
    width: 100%;
}
.accordion-item {
    border-bottom: 1px solid #ECE3E2;
    border-left: none;
    border-right: none;
}
.accordion-header {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    padding: 25px 60px 25px 8px;
    cursor: pointer;
    position: relative;
    color: #070707;
}
.accordion-item:first-of-type {
    border-radius: 0;
    border-top: none;
}
.accordion-item:last-of-type {
    border-bottom: none;
}
.accordion-header::after {
    content: '';
    position: absolute;
    right: 18px;
    font-size: 18px;
    transition: transform 0.3s ease;
    background: url('../../assets/images/landing/arrow-square-down.svg') no-repeat center center;
    background-size: contain;
    width: 24px;
    height: 24px;
}
.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
    padding: 0 60px 0 8px;
    line-height: 1.6;
    color: #000000;
}
.accordion-item.active .accordion-content {
    display: block;
}
.section-compare-feature .section-head {
    margin-bottom: 60px;
}
.pricing-table {
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    background: white;
}
.pricing-table .table-header,
.pricing-table .row {
    display: flex;
    margin: 0;
}
.pricing-table .col {
    flex: 1 0 0%;
}
.pricing-table .table-header {
    background: linear-gradient(185.27deg, #F3F3F3 1.26%, #FDFDFD 79.24%);
    border-bottom: 1px solid #D4D4D4;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.pricing-table .table-header .col {
    padding: 26px 20px 36px;
}
.pricing-table .col {
    padding: 16px 24px;
}
.pricing-table .col:first-child {
    border-left: none;
    text-align: left;
    max-width: 251px;
    width: 100%;
    min-width: 251px;
}
.pricing-table .table-header .col:first-child {
    padding-right: 11px;
}
.pricing-table .price {
    margin: 0;
    font-size: 36px;
    color: #0D5558;
    font-weight: 600;
    text-align: left;
}
.pricing-table .price>span {
    font-size: 14px;
    color: #0D5558;
}
.plan-header .label {
    font-size: 20px;
    font-weight: 500;
    color: #0D5558;
}
.pricing-table .plan-name {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #0D5558;
    gap: 0 14px;
    margin-bottom: 15px;
}
.pricing-table .badge {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 4px;
    color: white;
    width: auto;
    font-weight: 400;
}
.pricing-table .badge.pro {
    background: #999;
}
.pricing-table .badge.premium {
    background: #65B7BB;
}
.table-header .col .btn {
    width: 100%;
    margin-top: 20px;
}
.pricing-table .billing-toggle {
    margin-top: 10px;
    background: #fff;
    border: 1px solid #B2EAEC;
    border-radius: 50px;
    padding: 6px;
    display: flex;
    gap: 0 4px;
}
.pricing-table .billing-toggle button {
    padding: 10px 7px;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    border: none;
    width: inherit;
    font-size: 14px;
    min-width: 71px;
    color: #0D5558;
    transition: all 0.3s ease;
}
.pricing-table .billing-toggle button.active {
    background: #CAFDFF;
    color: #0D5558;
    border-color: #CAFDFF;
}
.pricing-table .discount {
    font-size: 10px;
    margin-left: 6px;
}
.pricing-table .table-body .row {
    border-bottom: 1px solid #d4d4d4;
}
.pricing-table .table-body .row:last-child {
    border: none;
}
.pricing-table .feature-header {
    color: #363636;
}
.pricing-table .row.feature-caption .col {
    font-size: 18px;
    font-weight: 500;
}
.pricing-table .table-body .row .col:not(:first-child) {
    color: #65B7BB;
    text-align: center;
    margin: 0 auto;
}
.pricing-table .check::before {
    content: "";
    background-image: url(../../assets/images/landing/icon-check-white.svg);
    color: #fff;
    font-size: 18px;
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 auto;
    background-color: #65B7BB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center center;
}
.section-sports-slider {
    padding: 54px 0;
    background: linear-gradient(159.27deg, rgba(101, 183, 187, 0.14) 13.44%, rgba(101, 183, 187, 0) 86.56%);
}
.section-sports-slider .item {
    padding: 0 20px;
}
.section-sports-slider .section-title {
    margin-bottom: 60px;
}
.section-compare-feature {
    padding: 20px 0 80px 0;
}
.features-sports-carousel .item .item-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.features-sports-carousel .item img {
    max-height: 83px;
    max-width: fit-content;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    width: 100%;
}
.features-sports-carousel .slick-track {
    margin: 0;
}
.features-sports-carousel .slick-arrow {
    display: none !important;
}
.section-faqs {
    padding: 60px 0;
}
.section-faqs .section-head {
    margin-bottom: 60px;
}
.section-image-width-text {
    padding: 20px 0;
}
.section-image-width-text .flex-row {
    padding: 65px 0;
    gap: 20px 0;
}
/* .section-image-width-text .flex-row:has(.column.image){
    min-height: 38.5vw;
} */
.section-image-width-text .flex-row .image-inner {
    overflow: hidden;
    border-radius: 20px;
}
.section-image-width-text .flex-row .image,
.section-image-width-text .flex-row .content {
    flex: 0 0 50%;
    width: 50%;
}
.section-image-width-text .flex-row .content {
    padding-right: 42px;
}
.section-image-width-text .flex-row .image {
    order: 2;
    /* position: absolute;
    left: auto;
    right: 0; */
}
.section-image-width-text .flex-row .image img {
    width: 100%;
    max-height: 29.5vw;
    object-fit: contain;
    object-position: top right;
}
.section-image-width-text .flex-row:nth-child(2n) .image {
    order: 1;
    left: 0;
    right: auto;
}
.section-image-width-text .flex-row:nth-child(2n) .image img {
    object-position: top left;
}
.section-image-width-text .flex-row:nth-child(2n) .content {
    order: 2;
    padding-left: 42px;
    padding-right: 0;
    margin-left: auto;
    margin-right: 0;
}
.section-image-width-text .content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.section-image-width-text .content {
    font-size: 14px;
}
.section-image-width-text .content p:empty {
    display: inline-block;
    width: 100%;
}
.section-likely-tipster.no-pattern {
    background: #fff;
    padding: 70px 0;
}
.section-likely-tipster.full-width .content-inner {
    max-width: 100%;
}
.section-likely-tipster.no-pattern .counter-data {
    margin-top: 0;
    flex-wrap: wrap;
}
.counter-data.four-column .item {
    width: calc(25% - 15px);
}
/*Performance*/
.section-performance {
    background-color: #F6F6F6;
    padding: 51px 0;
}
.section-performance .section-head {
    margin-bottom: 60px;
}
.section-performance .bet-section-wapper {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #ECECEC;
    padding: 40px 37px;
}
.section-performance .bet-section-wapper .tipster_content {
    border: none;
}
.section-performance .graph-wrapper {
    border: 1px solid #ECECEC;
    margin: 10px 0;
    padding: 18px 21px;
}
.selection-container-wrapper .selection-group {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: 1px solid #ddd;
    margin-left: 10px;
    width: 100%;
    gap: 0 14px;
}
.selection-container-wrapper .option img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 100%;
    max-width: unset;
}
.selection-container-wrapper .selection-group .option {
    text-align: center;
    min-width: 75px;
    color: #878787;
    font-size: 14px;
    cursor: pointer;
    line-height: 1;
    padding-bottom: 10px;
}
.selection-container-wrapper .option.active {
    color: black;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 2px solid #1eafb3;
}
.selection-container-wrapper .title {
    padding: 10px 20px;
    font-size: 18px;
    color: #070707;
    margin-bottom: 12px;
}
.selection-container-wrapper .selection-group .option .option-image {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 10px auto;
}
.bet-section-wapper .bet-contents {
    margin-bottom: 30px;
    padding: 0;
}
.section-performance .navigate-graphs {
    padding: 0;
}
.section-performance .navigate-graphs a.graph {
    font-size: 14px;
    color: #1A1A1A;
    height: 30px;
    padding: 5px 13px 5px 13px;
    background-color: #fff;
    border: 1px solid #E4E4E4;
}
.section-performance .navigate-graphs a.graph.active {
    background-color: #1EAFB3;
    color: #fff;
    border-color: #1EAFB3;
}
.section-performance .team-percentage thead {
    background: #F9F9F9;
}
.section-performance .team-percentage table {
    border: 1px solid #D4D4D4;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}
.section-performance .team-percentage {
    margin: 0 0 0 30px;
}
.section-performance .team-percentage td:first-child {
    width: 160px;
}
.section-performance .team-percentage td,
.team-percentage th {
    padding: 13px 10px;
    font-size: 14px;
    min-width: 70px;
}
.section-performance .team-percentage td {
    border-top: 1px solid #d4d4d4;
}
.section-performance .team-percentage th {
    color: #0D5558;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    text-align: center;
}
.section-performance .bet-section-wapper span.push {
    color: #979797;
}
.bet-section-wapper .bet-info {
    gap: 0 40px;
}
.section-performance .bet-section-wapper h2.bet-info-head {
    margin: 11px 0 0 0;
    padding-left: 0;
    font-size: 18px;
    color: #0D5558;
}
.bet-section-wapper .logo-images {
    max-width: 180px;
}
.section-performance .chart-container {
    display: flex;
    align-items: flex-end;
}
.section-performance .chart-container img {
    padding: 0;
}
/* new pricing design */
.pricing-wrapper .card {
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
}
.pricing-wrapper .card .card-inner {
    display: flex;
    flex-wrap: wrap;
}
.pricing-wrapper .card .card-inner {
    gap: 0 15px;
}
.pricing-wrapper .card-middle {
    flex: 1;
}
.pricing-wrapper .card-middle ul {
    display: flex;
    flex-wrap: wrap;
}
.pricing-wrapper .card-middle ul li {
    max-width: 50%;
    width: 100%;
}
.pricing-wrapper .card-middle {
    min-height: 1px;
    padding: 0;
}
.pricing-wrapper .card-top {
    border-bottom: 0;
    max-width: 35%;
    width: 100%;
    padding-bottom: 0;
    padding-right: 24px;
    border-right: 1px solid #65B7BB;
}
.pricing-wrapper .card-actions {
    margin-top: 40px;
}
.pricing-wrapper .card-top h3 {
    margin-bottom: 20px;
}
.pricing-table {
    padding: 15px;
    /* max-width: 1000px; */
}
.pricing-table .table-body .feature-header {
    justify-content: flex-end;
}
.pricing-table .table-body .feature-header .col {
    text-align: center;
    color: #0D5558;
    font-weight: 600;
}
.pricing-table .col.check,
.pricing-table .col.text {
    max-width: 270px;
    width: 100%;
    min-width: 270px;
    border: 0;
    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;
}
.pricing-table .table-body .col:first-child {
    flex: 1;
    max-width: 100%;
    border-right: 1px solid #d4d4d4;
}
.pricing-table .table-body .feature-header .col {
    max-width: 270px;
    min-width: 270px;
}
/* may-19 blog page design */
.main-blog {
    cursor: pointer;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 90px;
    display: flex;
    flex-wrap: wrap;
}
.main-blog .column.content {
    cursor: pointer;
    padding: 26px 42px;
}
.main-blog .column.image {
    cursor: pointer;
    max-width: 60%;
    width: 100%;
    flex: 0 0 56.78%;
}
.main-blog .column.content {
    cursor: pointer;
    padding: 35px 30px 35px;
    padding-left: 40px;
    flex: 1;
}
.main-blog .content p {
    cursor: pointer;
    font-size: var(--base-font-size);
}
.blog-badge {
    border-radius: .25rem;
    padding: 6px 8px;
    font-size: 14px;
    background: #1EAFB3;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.485717;
    font-weight: 500;
    display: inline-block;
}
.main-blog .content h4 {
    cursor: pointer;
    margin-bottom: 20px;
    font-weight: 600;
}
.main-blog .blog-content-bottom {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.blog-content-bottom .blog-date,
.blog-content-bottom .blog-time {
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}
.blog-content-bottom .blog-date::before {
    cursor: pointer;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url('../../assets/images/calendar.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 20px;
    height: 20px;
}
.blog-content-bottom .blog-time::before {
    cursor: pointer;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url('../../assets/images/clock.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 20px;
    height: 20px;
}
.blog-articles {
    cursor: pointer;
    margin: 0 -10px;
}
.blog-articles .article-image {
    cursor: pointer;
    margin-bottom: 20px;
}
.blog-articles .blog-badge {
    cursor: pointer;
    color: #000;
}
.blog-articles h5 {
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 10px;
}
.blog-articles p {
    cursor: pointer;
    margin-bottom: 10px;
}
.blog-articles .article-card {
    cursor: pointer;
    padding: 0 10px;
    max-width: 50%;
    width: 100%;
    margin-bottom: 35px;
}
.blog-articles li {
    cursor: pointer;
    font-size: 14px;
}
.blog-articles .blog-content-bottom {
    cursor: pointer;
    gap: 10px 20px;
}
.blog-articles-btn {
    cursor: pointer;
    margin-top: 25px;
    text-align: center;
}
.blog-articles-section {
    cursor: pointer;
    padding: 90px 0 60px;
}
.blog-articles .article-image img {
    cursor: pointer;
    width: 100%;
}
.main-blog .image-inner {
    cursor: pointer;
    height: 100%;
}
.main-blog .image-inner img {
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.breadcrumbs-list {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.breadcrumbs-list .breadcrumbs-list-item a,
.breadcrumbs-list .breadcrumbs-list-item {
    color: #0F172A;
}
.main-article-section {
    cursor: pointer;
    padding-bottom: 90px;
}
.main-article-section .container {
    cursor: pointer;
    z-index: 1;
    position: relative;
    max-width: 1005px;
}
.main-article-section {
    cursor: pointer;
    padding-top: 220px;
    position: relative;
}
.main-article-section:after,
.main-article-section:before {
    cursor: pointer;
    content: "";
    background: linear-gradient(179.25deg, #B4E7E6 0.64%, rgba(206, 244, 244, 0.542223) 53.15%, rgba(180, 231, 230, 0) 115.34%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    max-height: 75vh;
}
.main-article-section:before {
    cursor: pointer;
    background: url('../../assets/images/landing/bg-pattern.png') no-repeat center center;
    z-index: 0;
    background-size: cover;
}
.main-article .article-image img {
    cursor: pointer;
    width: 100%;
}
.main-article .article-image {
    cursor: pointer;
    margin: 30px 0;
}
.main-article .blog-content-bottom {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin-top: 20px;
    padding-bottom: 10px;
    list-style: none;
    margin-left: 0;
}
.main-article ul {
    cursor: pointer;
    list-style: disc;
    margin-left: 1.2rem;
    margin-bottom: 30px;
}
.main-article-bottom .pagination {
    cursor: pointer;
    display: flex;
    padding-left: 0;
    list-style: none;
    justify-content: space-between;
    margin-bottom: 30px;
}
.main-article-bottom .pagination .pagination-item {
    cursor: pointer;
    border: 0;
    background: transparent;
    display: flex;
    gap: 10px;
    align-items: center;
}
.main-article-bottom .pagination .icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.main-article span {
    cursor: pointer;
    display: block;
    margin-bottom: 5px;
}
.main-article-bottom {
    cursor: pointer;
    border-top: 1px solid #CFCFCF;
    padding-top: 30px;
}
.main-social-wrapper h6 {
    text-align: center;
}
.main-social-wrapper .social-icon {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.main-social-wrapper .social-icon svg {
    width: 36px;
    height: 36px;
}
.related-articles-slider .article-image img {
    width: 100%;
}
.related-articles-slider .item {
    margin: 0 10px;
}
.related-articles-section {
    background: #F4F4F4;
    padding: 50px 0;
}
.related-articles-section h2 {
    text-align: center;
}
.related-articles-section .slick-arrow {
    display: none !important;
}
.related-articles-button-prev,
.related-articles-button-next {
    width: 30px;
    height: 30px;
    background: #00000033;
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 10px;
    position: absolute;
    top: 54%;
    box-shadow: 0px 0px 2px #fff;
}
.related-articles-section .container {
    position: relative;
}
.related-articles-slider .article-content {
    margin-top: 20px;
}
.related-articles-slider .blog-badge {
    cursor: pointer;
    margin-bottom: 15px;
}
.related-articles-slider h5 {
    font-size: 18px;
    color: #000;
}
.related-articles-slider .blog-content-bottom {
    cursor: pointer;
    gap: 10px 20px;
}
.related-articles-slider .blog-content-bottom li {
    cursor: pointer;
    font-size: 14px;
}
.related-articles-slider {
    margin-top: 60px;
    margin-left: -10px;
    margin-right: -10px;
}
.related-articles-slider .articles-card {
    padding-bottom: 10px;
}
.related-articles-button-prev:hover,
.related-articles-button-next:hover {
    background-color: #000;
}
.related-articles-button-prev {
    left: 10px;
}
.related-articles-button-next {
    right: 10px;
}
.related-articles-button-next svg {
    margin-left: 2px;
}
.pricing-table .table-header .col {
    max-width: 271px;
    border-left: 1px solid #d4d4d4;
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.pricing-table .table-header .plan-package:not(.active) {
    display: none;
}
.pricing-table .price>span small {
    color: var(--text-dark);
    display: block;
    text-align: left;
    font-weight: 400;
}
.pricing-table .table-body .feature-header .col {
    margin-left: auto;
}
.section-compare-feature .container {
    padding: 0;
}
.pricing-table .table-body .feature-header .col:first-child {
    max-width: 100%;
    width: 100%;
    margin: 0;
    flex: 1;
    text-align: left;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 18px;
}
.pricing-table {
    padding: 0;
}
/* .pricing-table .billing-toggle{
    margin-top: 30px;
} */
.section-about ul.style-list li {
    width: 100%;
}
.table-wrapper .pricing-table-footer {
    margin-top: 30px;
    text-align: center;
}
.pricing-table .col p {
    margin-bottom: 0;
    font-size: 14px;
}
.pricing-table .col .sub-title {
    margin-bottom: 5px;
    color: #363636;
    font-size: 16px;
    font-weight: 500;
}
.plan-header .label {
    font-size: 22px;
    font-weight: 600;
}
.pricing-table .table-header .col .billing-title {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 10px;
    color: #424242;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.main-navigation .landing-menu .menu-item a:hover,
.main-navigation .landing-menu .menu-item.active a {
    font-weight: 500 !important;
}
.pricing-offer-banner p {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 40px;
    margin: 0;
    letter-spacing: 1.7px;
    display: inline-block;
    box-shadow: 0px 4px 7px #0f0f0f99;
}
.pricing-wrapper .pricing-table .card-actions {
    margin-top: 0;
}
.pricing-wrapper .pricing-table .billing-toggle {
    margin-bottom: 15px;
}
.pricing-wrapper .card-top h3 {
    margin-bottom: 20px;
}
.pricing-wrapper .pricing-table .price {
    margin-bottom: 15px;
}
.landing-menu .menu-item a {
    letter-spacing: 0.3px;
}
.main-navigation .landing-menu .menu-item a:hover, .main-navigation .landing-menu .menu-item.active a {
    letter-spacing: 0 !important;
}
.pricing-table .plan-package:not(.active) {
    display: none;
}
.pricing-offer-banner p strong {
    font-weight: 500;
    font-size: 20px;
}
.client-carousel .slick-track {
    height: 100%;
}
.client-carousel .item .item-inner {
   height: 100%;
}
.pricing-table .billing-toggle button,.section-compare-feature .pricing-table .billing-toggle button {
    flex: 1 0 auto;
}

/*Media CSS*/
@media (min-width: 768px) {
    .hide-lg {
        display: none;
    }
}
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    /* may-19 blog page design */
    .blog-articles .article-card {
        cursor: pointer;
        max-width: 25%;
    }
    .main-navigation>ul>li>a:after,.landing-menu .menu-item a:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 3px;
        width: 100%;
        height: 2px;
        background-color: #d32f2f;
        transform: scaleX(0);
        transform-origin: right;
        transition: .15s ease transform;
    }
    .main-navigation>ul>li>a:hover:after,
    .main-navigation>ul>li.active>a:after,.main-navigation .landing-menu .menu-item a:hover:after, .main-navigation .landing-menu .menu-item.active a::after {
        transform-origin: left;
        transform: scale(1);
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1224px;
    }
}
@media (min-width: 1320px) {
    .related-articles-button-prev {
        left: -40px;
    }
    .related-articles-button-next {
        right: -40px;
    }
}
/* @media (min-width: 1600px) {
    .section-image-width-text .flex-row:has(.column.image) {
        min-height: 36.5vw;
    }
} */
@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    h1 {
        font-size: 54px;
    }
    .top-welcome-section .content-inner {
        max-width: 596px;
    }
    .top-welcome-section p {
        font-size: 20px;
    }
    .top-welcome-section .media-block>img {
        max-height: 480px;
        display: block;
        margin: 0 auto;
    }
    .section-about .flex-row>div.column.content {
        padding-right: 25px;
    }
    .column.content .style-list {
        font-size: 14px;
    }
    .column.content ul.style-list li {
        padding-left: 32px;
    }
    .column.content ul.style-list li:before,
    .column.content ul.style-list li:after {
        width: 18px;
        height: 18px;
        left: 8px;
        top: 9px;
    }
    .column.content ul.style-list li:before {
        width: 12px;
        height: 18px;
        left: 11px;
    }
    .client-carousel .item {
        padding: 0 10px;
    }
}
@media (max-width: 1100px) {
    body,
    .main-navigation>ul>li>a {
        font-size: 14px;
    }
    .btn {
        font-size: 14px;
    }
    h1 {
        font-size: 54px;
    }
    h2 {
        font-size: 30px;
    }
    h2.text-xl {
        font-size: 40px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
    .top-welcome-section {
        padding-top: 180px;
    }
    .counter-data span.count {
        font-size: 30px;
    }
    .service-content .item h3 {
        font-size: 20px;
    }
    .section-why-choose .block-content {
        max-width: 600px;
        margin-bottom: 40px;
    }
    .section-feature-sport .media-block>img {
        max-height: 543px;
    }
    .card-top .price {
        font-size: 40px;
    }
    .card-top .price>span {
        font-size: 18px;
    }
    .card-actions {
        padding-top: 60px;
    }
    .pricing-wrapper .card-actions {
        padding-top: 0;
    }
    .section-newsletter .content-inner {
        max-width: 540px;
    }
    .table-wrapper {
        overflow-x: auto;
    }
    /* .pricing-table {
        min-width: 1100px;
    } */
    .pricing-table .col.check,
    .pricing-table .table-body .feature-header .col {
        max-width: 270px;
        min-width: 270px;
    }
    .pricing-table .plan-name {
        font-size: 18px;
        gap: 0 5px;
    }
    .pricing-table .price {
        font-size: 40px;
    }
    .pricing-table .price>span {
        font-size: 18px;
    }
    .pricing-table .table-header .col {
        padding: 26px 10px;
    }
    .main-article-section {
        cursor: pointer;
        padding-top: 180px;
    }
}
@media (max-width: 991px) {
    /*Menu*/
    body.nav-open {
        overflow: hidden;
    }
    .menu-toggle {
        position: absolute;
        left: 30px;
        width: 30px;
        height: 20px;
        display: block;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 999;
    }
    .menu-toggle>span {
        background: #011a19;
        width: 100%;
        height: 2px;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform 0.3s;
    }
    .menu-toggle>span:nth-child(2) {
        top: 9px;
    }
    .menu-toggle>span:nth-child(3) {
        top: 18px;
    }
    .nav-open .menu-toggle {
        left: 10px;
    }
    .nav-open .menu-toggle>span:nth-child(2) {
        opacity: 0;
    }
    .nav-open .menu-toggle>span:nth-child(1) {
        transform: rotate(45deg);
    }
    .nav-open .menu-toggle>span:nth-child(3) {
        transform: rotate(-45deg);
        top: 0;
    }
    .main-navigation {
        position: fixed;
        width: 100%;
        max-width: 400px;
        left: 0;
        top: 0;
        z-index: 99;
        background: #fff;
        height: 100%;
        opacity: 0;
        transform: translateX(-100%);
        transition: transform 0.5s;
        padding-top: 110px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .main-navigation:after {
        content: "";
        position: fixed;
        top: 0;
        width: 1000%;
        height: 100%;
        left: 100%;
        background: linear-gradient(179.25deg, #B4E7E6 0.64%, rgba(206, 244, 244, 0.542223) 53.15%, rgba(180, 231, 230, 0) 115.34%);
        opacity: 0;
        transition: opacity 0.3s 0.1s;
        pointer-events: none;
    }
    .nav-open .main-navigation {
        opacity: 1;
        transform: translateX(0);
    }
    .nav-open .main-navigation:after {
        opacity: 1;
    }
    .main-navigation>ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .main-navigation>ul>li>a {
        font-size: 24px;
        display: inline-block;
        padding: 10px 0;
    }
    .main-navigation>ul>li {
        width: 100%;
        padding: 0 20px;
    }
    .header-left.logo {
        padding-left: 200px;
        top: 2px;
        position: relative;
    }
    /*section padding*/
    .section-about {
        padding: 70px 0;
    }
    .section-why-choose,
    .section-likely-tipster {
        padding: 40px 0;
    }
    .section-client {
        margin-top: 40px;
        padding-bottom: 60px;
    }
    .counter-data,
    .client-carousel {
        margin-top: 40px;
    }
    .section-compare-feature .section-head {
        margin-bottom: 40px;
    }
    .column.content ul.style-list li {
        max-width: 100%;
    }
    .section-why-choose .content-inner {
        padding: 40px 20px;
    }
    .service-content .item {
        padding: 0 15px;
    }
    .section-feature-sport .media-block>img {
        max-height: 440px;
    }
    .footer-logo.center ul {
        gap: 20px;
    }
    .card-middle {
        min-height: 350px;
    }
    .section-image-width-text .flex-row .content {
        padding-right: 20px;
    }
    .section-image-width-text .flex-row:nth-child(2n) .content {
        padding-left: 20px;
    }
    .section-performance .team-percentage {
        margin: 30px 0 0 0;
    }
    .bet-section-wapper .logo-images {
        margin: 0 auto;
        text-align: center;
    }
    .selection-container-wrapper .selection-group .option {
        min-width: 100px;
    }
    .section-performance .results-table {
        width: 100%;
    }
    .counter-data.four-column .item {
        width: calc(50% - 10px);
    }
    .pricing-wrapper .card-top {
        max-width: 40%;
    }
    /*  */
    .main-blog {
        cursor: pointer;
        flex-direction: column;
    }
    .main-blog .column.image {
        cursor: pointer;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .main-blog .column.content {
        cursor: pointer;
        padding: 20px 10px;
        padding-left: 10px;
    }
    .landing-header .header-inner {
       justify-content: unset;
    }
    .header-left.logo {
        flex: 1;
        text-align: center;
    }
    .landing-menu .menu-item a:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 3px;
        width: 100%;
        height: 2px;
        background-color: #d32f2f;
        transform: scaleX(0);
        transform-origin: right;
        transition: .15s ease transform;
    }
    .main-navigation .landing-menu .menu-item a:hover:after, .main-navigation .landing-menu .menu-item.active a::after {
        transform-origin: left;
        transform: scale(1);
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 28px;
        line-height: 1;
    }
    .small-h2 {
        font-size: 28px;
        line-height: 1;
    }
    h2.text-xl {
        font-size: 32px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    .btn {
        padding: 10px 20px;
    }
    .menu-toggle {
        width: 20px;
        height: 20px;
        left: 18px;
    }
    .landing-header {
        padding: 15px 0;
    }
    .landing-header .header-inner {
        padding: 15px;
    }
    .header-right .hide-xs {
        display: none;
    }
    .user-login .btn-user {
        width: 34px;
        height: 34px;
        background: #a83635;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .user-login .btn-user svg path {
        stroke: #fff;
    }
    .header-left.logo {
        padding-left: 30px;
        top: 2px;
    }
    .header-left.logo img {
        max-width: 158px;
    }
    .header-right .btn {
        padding: 4px 0;
        line-height: 1;
        min-width: inherit;
    }
    .header-right .btn+.btn {
        min-width: inherit;
    }
    .landing-site .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-title {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px 0;
    }
    .landing-tabs {
        display: none;
    }
    .tab_drawer_heading {
        background-color: #ccc;
        color: #fff;
        border-top: 1px solid #333;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
    }
    .accordion-header {
        font-size: 16px;
    }
    .top-welcome-section {
        padding-top: 130px;
    }
    .top-welcome-section p {
        font-size: 18px;
    }
    .section-about .flex-row>div {
        width: 100%;
        flex: 0 0 100%;
    }
    .section-about .flex-row>div.column.content {
        padding-bottom: 30px;
    }
    .column.content .style-list {
        margin: 20px 0;
    }
    .section-about .flex-row>div.column.content {
        padding-right: 0;
    }
    .section-likely-tipster .logo-holder {
        max-width: 140px;
    }
    .counter-data {
        flex-direction: column;
    }
    .counter-data .item {
        width: 100%;
    }
    .service-content .item {
        width: 100%;
        border: none;
        padding: 0 15px;
        margin: 10px 0;
    }
    .section-why-choose .block-content {
        margin-bottom: 30px;
    }
    .section-why-choose .content-inner>.actions {
        margin-top: 30px;
    }
    .client-carousel .item .item-inner {
        font-size: 12px;
        padding-right: 15px;
    }
    .subscribe-from {
        gap: 10px;
    }
    .landing-footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .footer-top {
        flex-direction: column;
        gap: 15px 0;
    }
    .features-sports-carousel .item img {
        max-height: 70px;
        max-width: fit-content;
    }
    .section-pricing-tabs.bg-pattern:after,
    .section-pricing-tabs.bg-pattern:before {
        height: 20%;
    }
    .section-image-width-text .flex-row {
        padding: 30px 0;
    }
    .section-image-width-text .flex-row:nth-child(2n) .content,
    .section-image-width-text .flex-row .content {
        padding: 0;
    }
    .section-image-width-text .flex-row .image,
    .section-image-width-text .flex-row .content {
        flex: 0 0 100%;
        width: 100%;
    }
    .section-image-width-text .flex-row .image {
        position: static;
        order: -1;
    }
    .section-image-width-text .flex-row .image img {
        max-height: 440px;
    }
    .counter-data.four-column .item {
        width: 100%;
    }
    .section-likely-tipster.no-pattern {
        background: #fff;
        padding: 40px 0;
    }
    .selection-container-wrapper .selection-group .option {
        min-width: 82px;
    }
    .section-performance .bet-section-wapper {
        padding: 15px;
    }
    .selection-container-wrapper .selection-group .option {
        font-size: 12px;
    }
    .pb-80 {
        padding-bottom: 40px;
    }
    .pt-50 {
        padding-top: 40px;
    }
    .pricing-wrapper .card .card-inner {
        flex-direction: column;
    }
    .pricing-wrapper .card-top {
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid #65B7BB;
        padding-bottom: 15px;
        margin-bottom: 15px;
        max-width: 100%;
    }
    .pricing-wrapper .card-actions {
        margin-top: 20px;
    }
    .pricing-table .table-body .col:first-child {
        text-align: center;
    }
    .pricing-table .table-body .feature-header {
        justify-content: center;
    }
    .pricing-table .col.check,
    .pricing-table .table-body .col:first-child {
        margin: 0 auto;
    }
    .pricing-table .table-body .row {
        border-bottom: 1px solid #d4d4d4;
        flex-direction: column;
    }
    .pricing-table .table-body .feature-header .col:first-child {
        border-bottom: 1px solid #d4d4d4;
        border-right: 0;
        text-align: center;
    }
    .pricing-table .table-header .col {
        border-left: 0;
    }
    .pricing-table .table-body .row:not(.feature-header) .col:first-child {
        padding-bottom: 0;
        border-right: 0;
    }
    .main-article-section {
        cursor: pointer;
        padding-top: 130px;
    }
    .pricing-table .table-header {
        flex-direction: column;
    }
    .pricing-table .table-header .col {
        max-width: 100%;
        margin: 0;
    }
    .pricing-table .table-header .col:first-child {
        margin: 0 auto;
        border-bottom: 1px solid #d4d4d4;
        text-align: center;
    }
    .pricing-table .table-body .feature-header .col {
        margin: 0 auto;
    }
    .section-compare-feature .container {
        padding-right: 0;
        padding-left: 0;
    }
    .pricing-table .plan-name {
        justify-content: center;
    }
    .pricing-table .price {
        text-align: center;
    }
    .pricing-table .billing-toggle,
    .pricing-table .table-header .col .billing-title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .pricing-table .billing-toggle button {
        min-width: auto;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        padding: 10px 3px;
    }
    .pricing-table .price>span small {
        text-align: center;
    }
    .table-wrapper .pricing-offer-banner p {
        padding: 10px;
        font-size: 14px;
    }
    .pricing-offer-banner {
        max-width: 100%;
        margin: 0 auto;
    }
    .table-wrapper .pricing-offer-banner p span {
        font-weight: 500;
    }
    .section-pricing-tabs .content-inner {
        margin-bottom: 20px;
    }
    .main-blog{
        margin-bottom: 40px;
    }
    .blog-articles-section{
        padding: 40px 0 40px;
    }
    .highcharts-inner-container svg.highcharts-root {
        height: 100%;
    }
}
@media (max-width: 480px) {
    .subscribe-from {
        flex-direction: column;
    }
    .section-performance .team-percentage th {
        font-size: 11px;
    }
    .section-performance .team-percentage table {
        table-layout: fixed;
        width: 100%;
    }
    .section-performance .team-percentage td,
    .team-percentage th {
        padding: 10px 5px;
        font-size: 12px;
        min-width: 70px;
    }
    /* may-19 blog page design */
    .blog-articles .article-card {
        cursor: pointer;
        max-width: 100%;
    }
    .related-articles-button-prev,
    .related-articles-button-next {
        top: 58%;
    }
    .pricing-offer-banner p {
        padding: 10px;
        width: 100%;
        font-size: 14px;
    }
    .section-performance .graph-wrapper{
        padding: 15px 10px;
    }
    .graph-wrapper figure.highcharts-figure {
        margin: 0;
    }
}

@media (max-width: 360px){
    .breadcrumbs-list{
        flex-wrap: wrap;
    }
    .footer-logo.center ul{
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}