@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/***** General CSS *****/

:root {
    --theme: #1664B0;
    --gradient: linear-gradient(to bottom, #1664b0, #ffffff);
}

::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
}

body {
    word-break: break-word;
    font: 15px/25px "Ubuntu", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--theme);
}

a:hover {
    transition: 0.3s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 1.6;
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}


/***** Font Files *****/

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Ubuntu", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Ubuntu", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Ubuntu", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Ubuntu", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Ubuntu", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/* project css start */

header {
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 30px 0px 10px;
}

.custom_container {
    padding: 0 70px;
    max-width: 1660px;
}

.banner .banner_top {
    position: relative;
    background: var(--gradient);
    display: flex;
    align-items: end;
    z-index: 2;
}

header .logo_here {
    display: block;
}

header ul.menu>li>a.active:after {
    width: 70%;
    left: 0;
    transition: 0.3s ease-in-out;
}

header .logo_here>img {
    width: 200px;
}

header .row {
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

header ul.menu {
    display: flex;
    margin: 0;
    gap: 40px;
}

header .row:before {
    position: absolute;
    content: "";
    background: #fff;
    width: 98.5%;
    height: 1px;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    right: 0;
    opacity: .7;
}

header ul.menu>li>a {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

header ul.menu>li>a:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 0;
    height: 2px;
    right: 0;
    bottom: -10px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

header ul.menu>li>a:hover:after {
    width: 70%;
    left: 0;
    transition: 0.3s ease-in-out;
}

.download_btn {
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    height: 50px;
    align-items: center;
    display: flex;
    padding: 0 25px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.download_btn:after {
    position: absolute;
    content: "";
    background: var(--gradient);
    width: 110px;
    height: 50px;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1) translateY(50px);
    transition: 0.3s ease-in-out;
    right: 0;
    margin: 0 auto;
}

.download_btn:hover:after {
    transform: scale(2) translateY(0px);
    transition: 0.5s ease-in-out;
}

.download_btn:hover {
    transition: 0.3s ease-in-out;
    transition-delay: 0.5s;
    color: #000;
}

/* banner */

.pblinks-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: end;
    width: 200%;
    align-items: end;
    z-index: -1;
}

.pblinks-heading h1,
.pblinks-heading h2 {
    font-weight: 700;
    font-size: 22vw;
    text-transform: uppercase;
    color: #ffffffa1;
    line-height: 17vw;
    width: 100%;
    margin: 0;
}

.pblinks-heading {
    animation: slideInHoldOut 50s cubic-bezier(0.02, 0.01, 0.37, 0.99) infinite;
}

@keyframes slideInHoldOut {
    0% {
        transform: translateX(-50%);
        opacity: 1;
    }

    10% {
        transform: translateX(0);
        opacity: 1;
    }

    20% {
        transform: translateX(0);
        opacity: 1;
    }

    30% {
        transform: translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateX(-50%);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%);
        opacity: 1;
    }

    60% {
        transform: translateX(-50%);
        opacity: 1;
    }

    70% {
        transform: translateX(0);
        opacity: 1;
    }

    80% {
        transform: translateX(0);
        opacity: 1;
    }

    90% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%);
        opacity: 1;
    }
}

.banner .banner_top .banner_imgs_wrp {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: end;
    margin-top: 200px;
    margin-bottom: -90px;
}

.banner .banner_top .banner_imgs_wrp>img.ban_img1 {
    width: 500px;
}

.banner .banner_top .banner_imgs_wrp>img.ban_ball_img {
    width: 120px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    animation: ballAnim 5s linear infinite;
}

.banner .banner_top .banner_imgs_wrp>img.ban_img2 {
    width: 615px;
    margin-bottom: -154px;
    margin-right: -40px;
}

.banner .banner_bottom {
    background: var(--theme);
    padding: 100px 0px;
}

.banner .banner_bottom h2 {
    font-size: 54px;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.banner .banner_bottom p {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

@keyframes ballAnim {
    0% {
        transform: rotate(0deg) scale(1.2);
    }

    20% {
        transform: rotate(80deg) scale(1.2);
    }

    40% {
        transform: rotate(120deg) scale(.8);
    }

    60% {
        transform: rotate(160deg) scale(.6);
    }

    80% {
        transform: rotate(80deg) scale(1.2);
    }

    100% {
        transform: rotate(0deg) scale(1.2);
    }
}

/* about us */

.all-sec {
    padding: 100px 0px;
}

.sub_heading {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.about_sec img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: top;
    border-radius: 70px;
}

.about_sec .row {
    align-items: center;
}

.about_sec .row>*:last-child {
    padding-left: 60px;
}
.abt_image_div{
    padding-right:30px;
}
.theme_btn {
    background-image: url(../images/btn-bg.png);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    height: 50px;
    width: 205px;
    justify-content: space-between;
    transition: 0.3s ease-in-out;
}

.theme_btn>span {
    padding-left: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.theme_btn>i {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--theme);
    margin-right: 3px;
    transition: 0.3s ease-in-out;
    font-size: 20px;
    transform: rotate(-40deg);
}

.theme_btn:hover>i {
    transform: rotate(180deg);
    box-shadow: inset 0 0 9px 1px var(--theme);
}

img.ball_vec {
    width: 180px;
    height: 180px;
    object-fit: cover;
    animation: BallVecAnim 5s cubic-bezier(0.02, 0.01, 0.37, 0.99) infinite;
    z-index: 2;
}

.about_sec img.ball_vec {
    position: absolute;
    right: -70px;
    top: -70px;
}

.about_sec {
    position: relative;
}

@keyframes BallVecAnim {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(60deg);
    }

    40% {
        transform: rotate(120deg);
    }

    60% {
        transform: rotate(180deg);
    }

    80% {
        transform: rotate(20deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.schedule_games_sec {
    background: #F2F2F2;
    position: relative;
}

.schedule_games_sec>img.ball_vec {
    position: absolute;
    bottom: -90px;
    left: -80px;
}

.schedule_games_sec .schedule_games_heading_wrp {
    width: 40%;
    margin-bottom: 50px;
}

.schedule_games_sec .schedule_games_box {
    position: relative;
    height: 650px;
}

.schedule_games_sec .schedule_games_box>img {
    width: 100%;
    border-radius: 68px;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.3s ease-in-out;
}

.schedule_games_sec .schedule_games_box>.schedule_games_textt {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    background: var(--theme);
    border-radius: 68px;
    padding: 50px 0px;
    transition: 0.3s ease-in-out;
}

.schedule_games_sec .schedule_games_box>.schedule_games_textt>h3 {
    color: #fff;
    margin: 0;
    line-height: 1.3;
    font-size: 38px;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.schedule_games_sec .schedule_games_box:hover>img {
    filter: brightness(.7);
    border-radius: 30px;
}

.schedule_games_sec .schedule_games_box:hover>.schedule_games_textt {
    padding: 70px 0px;
    border-radius: 30px;
    box-shadow: inset 0 0 13px 4px #ffffffd6;
}

/* Moblie App Start */

.mobile-app .row {
    align-items: center;
}

.mobile-app .app-img {
    text-align: end;
}

.mobile-app h2 {
    padding-bottom: 24px;
    transition: 0.3s;
}

.mobile-app p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.mobile-app .app-txt {
    position: relative;
}

.mobile-app .app-txt .sitebtn {
    margin-top: 30px;
}

.mobile-app .app-img img {
    display: inline-block;
    transition: 0.4s;
    width: 75%;
}

.mobile-app {
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    margin-top: 60px;
}

.mobile-app>img.app_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.mobile-app:after {
    position: absolute;
    content: "";
    background: #1664b0;
    width: 100px;
    height: 100px;
    top: -5%;
    left: -5%;
    z-index: -1;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    transform: scale(0);
}

.mobile-app:before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #d3d3d3;
    width: 100%;
    height: 1px;
    bottom: 0;
}

.reverseSec {
    position: relative;
}

.reverseSec .app-img {
    text-align: left;
}

.reverseSec .app-txt {
    text-align: right;
}

.mobile-app.chg:before {
    display: none;
}

.mobile-app:hover>img.app_bg {
    opacity: 1;
}

.mobile-app:hover .app-txt h2 {
    font-size: 49px;
    transition: 0.3s;
}

.mobile-app:hover .app-txt * {
    color: #fff;
}

.mobile-app:hover:after {
    transform: scale(41);
    opacity: 1;
    background: #1664b0b3;
    transition: 0.3s ease-in-out;
}

.mobile-app>img.app_vec1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -3;
    transition: 0.3s ease-in-out;
    opacity: 1;
}

.mobile-app:hover>img.app_vec1 {
    opacity: 0;
}

.mobile-app:hover .app-txt .theme_btn {
    background-image: url(../images/btn-bg-white.png);
}

.mobile-app:hover .app-txt .theme_btn>* {
    color: var(--theme) !IMPORTANT;
}

.mobile-app .app-txt .theme_btn>span {
    padding-left: 17px;
}

.mobile-app:hover .app-txt .theme_btn>i {
    transform: rotate(180deg);
    background: var(--theme);
    color: #fff !important;
}

.mobile-app>img.app_vec2 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -3;
}

.mobile-app.reverseSec.reverse_Sec .theme_btn {
    margin-left: auto;
}

/* Moblie App Ends */

.ready_play_sec {
    background: var(--gradient);
    position: relative;
    z-index: 1;
}

.ready_play_sec h2 {
    font-weight: 700;
    font-size: 22vw;
    text-transform: uppercase;
    color: #ffffffa1;
    line-height: 17vw;
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    text-align: center;
    z-index: -1;
}

.ready_play_sec img {
    width: 96%;
    margin-top: 10px;
}

.ready_play_sec .find_court_wrp {
    background: #0000005E;
    width: 90%;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 120px;
}

.ready_play_sec .find_court_wrp>span {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}

.ready_play_sec .find_court_wrp>h3 {
    font-size: 33px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.ready_play_sec .find_court_wrp>form select {
    width: 100%;
    background-color: #FFFFFF6B;
    border: 1px solid #fff;
    color: #fff;
    height: 50px;
    margin-bottom: 20px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 14px;
    background-image: url(../images/chevron-down.png);
    background-position: 98% 60%;
    background-repeat: no-repeat;
}

.ready_play_sec .find_court_wrp>form select:focus {
    color: #000;
    border-color: #000;
}

.ready_play_sec .find_court_wrp>form input {
    width: 100%;
    background: #FFFFFF6B;
    border: 1px solid #fff;
    color: #fff;
    height: 50px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 14px;
}

.ready_play_sec .find_court_wrp>form input::placeholder {
    color: #fff;
    font-size: 14px;
}

.ready_play_sec .find_court_wrp>form input:focus {
    color: #000;
    border-color: #000;
}

.ready_play_sec .find_court_wrp>form button:hover:after {
    height: 100%;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* connecting players */

.connecting_players_sec {
    background: var(--theme);
    padding: 70px 0px;
}

.connecting_players_sec h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.connecting_players_sec p {
    color: #fff;
    margin: 0;
}

.connecting_players_sec .row {
    align-items: center;
}

.connecting_players_sec .connecting_wrpr>span {
    color: #fff;
    font-size: 20px;
    display: block;
    line-height: 1;
    margin-bottom: 30px;
}

.connecting_players_sec .connecting_wrpr>.connecting_coming_wrp {
    display: flex;
    align-items: center;
}

.connecting_players_sec .connecting_wrpr>.connecting_coming_wrp>img {
    width: 120px;
}

.connecting_players_sec .connecting_wrpr>.connecting_coming_wrp>.connecting_coming_box {
    border-left: 1px solid #fff;
    padding-left: 30px;
    margin-left: 30px;
}

.connecting_players_sec .connecting_wrpr>.connecting_coming_wrp>.connecting_coming_box>h3 {
    color: #fff;
    font-size: 42px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 700;
}

.connecting_players_sec .connecting_wrpr>.connecting_coming_wrp>.connecting_coming_box>.connecting_coming_box_img {
    display: flex;
    align-items: center;
    gap: 20px;
}

.connecting_players_sec .connecting_wrpr>.connecting_coming_wrp>.connecting_coming_box>.connecting_coming_box_img>a {
    display: block;
}

.connecting_players_sec .connecting_wrpr>.connecting_coming_wrp>.connecting_coming_box>.connecting_coming_box_img>a>img {
    border-radius: 10px;
    width: auto;
    height: auto;
}

/* contact sec */

.contact_sec .contact_img>img {
    width: 100%;
    border-radius: 70px;
    height: 630px;
    object-fit: cover;
    object-position: top;
}

.contact_sec .contact_form {
    width: 90%;
    margin-left: auto;
}

.contact_sec .contact_form>form>input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #1664B04D;
    padding: 10px 20px;
    height: 50px;
    margin-bottom: 30px;
    color: #000;
    font-size: 16px;
}

.contact_sec .contact_form>form>input::placeholder {
    color: #757575B2;
    font-size: 16px;
}

.contact_sec .contact_form>form>textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #1664B04D;
    padding: 10px 20px;
    height: 50px;
    margin-bottom: 30px;
    color: #000;
    font-size: 16px;
    resize: none;
}

.contact_sec .contact_form>form>textarea::placeholder {
    color: #757575B2;
    font-size: 16px;
}

.contact_sec .contact_form>form>input:focus {
    border-color: var(--theme);
}

.contact_sec .contact_form>form>textarea:focus {
    border-color: var(--theme);
}

/*Footer Start*/

ul.contact-email {
    margin-top: 25px;
}

.footer-sec h2 {
    font-size: 34px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ftr-contact-social-media {
    margin-top: 35px;
}

.ftr-contact-social-media ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.ftr-contact-social-media ul li a img {
    width: 95%;
}

ul.contact-email li a i {
    font-size: 18px;
}

.footer-copy-right-row ul li a {
    color: #fff;
    font-size: 16px;
}

.footer-copy-right-row {
    border-top: 1px solid #fff;
    margin-top: 30px;
    padding: 30px 0;
}

.footer-copy-right-row ul {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 0;
}

.footer-copy-right-text {
    text-align: end;
}

.footer-copy-right-text p {
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 0;
}

.footer-coming-soon ul {
    line-height: 70px;
    margin: 0;
}

.footer-coming-soon ul li a img {
    width: 200px;
    border-radius: 10px;
}

.footer-links {
    margin-left: 35px;
}

.footer-logo p {
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 30px;
}

.footer-logo a img {
    width: 60%;
    margin-bottom: 30px;
}

.footer-links ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
}

.footer-links ul {
    line-height: 40px;
    margin-bottom: 0;
}

ul.contact-email li a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-sec {
    background: #1664B0;
    padding-top: 80px;
}

html,
body {
    overflow-x: hidden;
}

.ready_play_sec img.ball_vec {
    width: 180px;
    position: absolute;
    right: -80px;
    bottom: -80px;
}

/* inner pages */

.banner.inner_banner .banner_top {
    height: 450px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(0deg, rgb(22 100 176 / 42%) 0%, rgba(22, 100, 176, 1) 100%);
}

.banner.inner_banner .banner_top h1 {
    margin-bottom: 0;
    margin-top: 100px;
    font-size: 120px;
    color: #FFFFFFA1;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

.banner.inner_banner {
    position: relative;
}

.banner.inner_banner>img.ball_vec {
    position: absolute;
    bottom: -100px;
    right: -80px;
}


/* courts pages */

.courts_secc #map {
    height: 850px;
}

.pin_wrpr {
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: "Ubuntu", sans-serif;
    background: white;
    position: relative;
}

.pin_wrpr::after {
    position: absolute;
    content: "";
    background-color: #fff;
    bottom: -14px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 25px;
    height: 15px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.pin_wrpr .pin_image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pin_wrpr .pin_textt_wrpr {
    padding: 8px 10px;
}

.pin_wrpr .pin_title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 13px;
}

.pin_wrpr .pin_title>span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.pin_wrpr .pin_title>span>i {
    color: orange;
    font-size: 10px;
}

.pin_wrpr .pin_textt_wrpr>ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.pin_wrpr .pin_textt_wrpr>ul>li>img {
    width: 18px;
    height: 18px;
    object-fit: contain;
     border-radius: 0;
}

.pin_wrpr .pin_textt_wrpr>ul>li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #000;
    font-weight: 500;
}

.leaflet-popup-content-wrapper {
    background: transparent;
    box-shadow: none;
}

.leaflet-popup-tip {
    display: none;
}

.blue_header header {
    background: var(--theme);
    position: inherit;
    padding: 20px 0px 20px;
}

.blue_header header .row {
    padding-bottom: 0;
    margin-bottom: 0;
}

.blue_header header .row:before {
    display: none;
}

.leaflet-control-attribution.leaflet-control {
    display: none;
}

.courts_secc>.container-fluid {
    padding-right: 0;
}

.courts_secc .row>*:first-child {
    padding-right: 0;
}

.courts_secc .row>*:last-child {
    padding-left: 0;
}

.courts_secc .courts_search_wrpr {
    background: #fff;
    padding: 50px;
    height: 100%;
    max-height: 850px;
    overflow-x: hidden;
    position: relative;
}

.courts_secc .courts_search_wrpr>ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}

.courts_secc .courts_search_wrpr>ul>li>span {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.courts_secc .courts_search_wrpr>ul>a {
    color: var(--theme);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid #00000033;
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.courts_secc .courts_search_wrpr .courts_search_box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #00000033;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.courts_secc .courts_search_wrpr .courts_search_box>img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

.courts_secc .courts_search_wrpr .courts_search_box>.courts_search_box_text {
    width: 100%;
}

.courts_secc .courts_search_wrpr .courts_search_box>.courts_search_box_text>h3 {
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 10px;
}

.courts_secc .courts_search_wrpr .courts_search_box>.courts_search_box_text>ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    row-gap: 3px;
}

.courts_secc .courts_search_wrpr .courts_search_box>.courts_search_box_text>ul>li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.courts_secc .courts_search_wrpr .courts_search_box>.courts_search_box_text>ul>li>img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.courts_secc .courts_search_wrpr .courts_search_box>.courts_search_box_text>ul>li>span {
    color: #161616;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
}


.courts_secc .courts_search_wrpr::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #F5F5F5 !important;
}

.courts_secc .courts_search_wrpr::-webkit-scrollbar {
    width: 7px;
    background: #F5F5F5 !important;
}

.courts_secc .courts_search_wrpr::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #8B8B8B !important;
}

.courts_secc .courts_search_wrpr>.filters_box {
    position: absolute;
    width: 70%;
    right: 50px;
    background: #00000070;
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.courts_secc .courts_search_wrpr>.filters_box>form>select {
    width: 100%;
    border: 0;
    background-color: #ffffff40;
    margin-bottom: 20px;
    height: 50px;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    background-image: url(../images/chevron-down.png);
    background-position: 96% 59%;
}

.courts_secc .courts_search_wrpr>.filters_box>form>select:focus {
    color: #000;
}

.courts_secc .courts_search_wrpr>.filters_box>form>input {
    width: 100%;
    border: 0;
    background: #ffffff40;
    margin-bottom: 20px;
    height: 50px;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
}

.courts_secc .courts_search_wrpr>.filters_box>form>input::placeholder {
    color: #fff;
    font-size: 16px;
}

.courts_secc .courts_search_wrpr>.filters_box:before {
    position: absolute;
    background: #00000070;
    content: "";
    backdrop-filter: blur(20px);
    width: 30px;
    height: 20px;
    top: -20px;
    right: 40px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.form_btn {
    width: 100%;
    height: 45px;
    border: 0;
    background: var(--theme);
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}

.courts_secc .courts_search_wrpr>.filters_box.show_bx {
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-in-out;
}

.courts_inner_sec .courts_inner_textt>a {
    display: flex;
    border: 1px solid var(--theme);
    width: 80px;
    height: 45px;
    color: var(--theme);
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 25px;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out;
}
.courts_inner_sec .courts_inner_textt>ul>li>a img {
    width: 27px;
}
.courts_inner_sec .courts_inner_textt>a:hover {
    background: var(--theme);
    color: #fff;
}

.courts_inner_sec .courts_inner_textt>ul {
    margin: 30px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.courts_inner_sec .courts_inner_textt>ul>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.courts_inner_sec .courts_inner_textt>ul>li>a>i {
    color: var(--theme);
    font-size: 20px;
}

.courts_inner_sec .courts_inner_textt>ul>li>a>span {
    color: #000;
    font-weight: 500;
    font-size: 20px;
}

.courts_inner_sec .courts_inner_img_slider {
    overflow: hidden;
    border-radius: 50px;
    width: 90%;
    margin-left: auto;
}

.courts_inner_sec .courts_inner_img_slider .slick-slide {
    opacity: 1;
    margin: 0;
}

.courts_inner_sec .courts_inner_img_slider .slick-slide>img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.courts_inner_sec .row {
    align-items: center;
}

.courts_inner_sec .courts_inner_img_slider .slick-arrow:before {
    display: none;
}

.courts_inner_sec .courts_inner_img_slider .slick-arrow>i {
    background: var(--theme);
    color: #fff;
    font-size: 20px;
    width: 60px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
}

.courts_inner_sec .courts_inner_img_slider .slick-prev {
    left: 0;
    z-index: 1;
}

.courts_inner_sec .courts_inner_img_slider .slick-arrow {
    width: 60px;
    height: 110px;
    z-index: 1;
}

.courts_inner_sec .courts_inner_img_slider .slick-next {
    right: 0;
}

.courts_inner_sec .courts_inner_img_slider .slick-next>i {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.courts_inner_sec .courts_inner_img_slider .slick-arrow.slick-disabled>i {
    color: #FFFFFF80;
}

.location_sec {
    background: #F2F2F2;
}

.location_sec img {
    width: 100%;
    border-radius: 40px;
}

.location_sec span {
    font-size: 22px;
    color: var(--theme);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
    display: block;
    text-transform: uppercase;
}

.location_sec ul {
    margin: 0;
}

.location_sec ul>li {
    padding-left: 20px;
    position: relative;
    color: #161616;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 16px;
}

.location_sec ul>li:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 7px;
    height: 7px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

.location_sec>.custom_container>.row>*:first-child {
    padding-right: 50px;
}

.location_sec>.custom_container>.row>*:last-child {
    padding-left: 50px;
}

.location_sec>.custom_container>.row {
    align-items: center;
}

/* custom calender */

.calendar-container {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    margin-top: 60px;
    border: 2px solid #00000033;
}

.calendar-header {
    background: var(--theme);
    color: white;
    padding: 30px;
    position: relative;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.calendar-header button {
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.calendar-header .prev {
    /* left: 20px; */
}

.calendar-header .next {
    /* right: 20px; */
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* Keep Sunday */
    background: #fff;
    padding: 25px 0;
    text-align: center;
    font-weight: bold;
    box-shadow: 0px 6px 20px 0px #00000017;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* Keep Sunday */
    grid-template-rows: repeat(4, 160px);
    /* 1pm to 8pm (4 rows) */
    position: relative;
    gap: 25px;
    padding: 20px;
}

.calendar-cell {
    background: #F6F6F6;
    border-radius: 5px;
}

.event-block {
    position: absolute;
    background: #d9f1ff;
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
    width: calc(100% / 7 - 10px);
    /* 7 columns including Sunday */
    left: 0;
    box-sizing: border-box;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 30px;
    color: #3C3C3C;
    row-gap:6px;
}

.event-block strong {
    display: block;
    font-size: 26px;
    color: #000;
}

.calendar-header span#week-range {
    font-size: 38px;
    line-height: 1.2;
}

.calendar-days>* {
    color: #000;
    font-size: 24px;
    line-height: 1.2;
}

.event-block>span {
    color: var(--theme);
    font-size: 18px;
    font-weight: 700;
}

.privacy_policy_secc .sub_heading {
    margin: 40px 0px;
}

.privacy_policy_secc h3 {
    font-size: 26px;
    margin: 30px 0px;
}

.privacy_policy_secc ul>li {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

.privacy_policy_secc ul>li:before {
    position: absolute;
    content: "";
    background: #000;
    width: 5px;
    height: 5px;
    left: 0;
    top: 11px;
    border-radius: 50%;
}

/* menu-box */

.menu-btn .fa-xmark {
    color: #fff !important;
}

.mobile_menu.d-xl-none.d-lg-none.d-md-none ul {
    margin: 0;
}

.mobile_menu.d-xl-none.d-lg-none.d-md-none {
    position: fixed;
    right: 12px;
    z-index: 9999;
    top: 24px;
}

.menu-btn i {
    font-size: 30px;
    line-height: 1;
    color: #fff;
    position: relative;
    z-index: 9999;
}

.me-15px {
    margin-right: 10px !important;
}

.menu-box {
    position: fixed;
    top: 0;
    left: -500px;
    height: 100vh;
    width: 100vw;
    background: #2a2a2a;
    z-index: 999;
    /* display: none; */
    transition: 0.5s ease-in-out;
    opacity: 0;
    background: #1664b0;
}

.menu-box.open {
    left: 0px;
    opacity: 1;
}

.menu-btn {
    position: relative;
    display: block;
}

.menu-box>nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    position: relative;
    top: 40%;
    transform: translateY(-50%);
}

.menu-box>nav a {
    font-size: 24px;
    color: white;
    text-transform: capitalize;
    line-height: 1;
    transition: 0.4s ease-in-out;
    position: relative;
    font-weight: 400 !important;
    display: block;
    width: 100%;
    padding: 0 0 0 20px;
}

.menu-box>nav a:after {
    position: absolute;
    content: "";
    width: 0;
    bottom: -5px;
    height: 2px;
    background: var(--primary);
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease-in-out;
}

.menu-box>nav a:hover:after {
    width: 100%;
}

.contact_sec .contact_img>video {
    width: 100%;
    object-fit: cover;
    height: 750px;
    border-radius: 60px;
}

.contact_sec .custom_container > .row {
    align-items: center;
}

/* project css start */

.location_sec div#map {
    height: 500px;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.location_sec .pin_wrpr .pin_textt_wrpr>ul>li {
    margin: 0;
    padding: 0;
}

.location_sec .pin_wrpr .pin_title>span {
    margin: 0;
}

.location_sec .pin_wrpr .pin_textt_wrpr>ul {
    gap: 5px;
    margin-bottom: 10px;
}

.location_sec .pin_wrpr .pin_textt_wrpr>ul>li:after {
    display: none;
}


/* new css */

.calendar-grid {
    position: relative;
}

.calendar-grid > span {
    position: absolute;
    width: 1px;
    height: 94%;
    border: 1px dashed #cdcdcd;
    top: 21px;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
}

.calendar-grid > span:nth-child(1) {
    left: 14.5%;
}

.calendar-grid > span:nth-child(2) {
    left: 28.6%;
}

.calendar-grid > span:nth-child(3) {
    left: 42.8%;
}

.calendar-grid > span:nth-child(4) {
    left: 57%;
}

.calendar-grid > span:nth-child(5) {
    left: 71.2%;
}

.calendar-grid > span:nth-child(6) {
    left: 85.3%;
}


/* new css */

.thankyou_sec {
    text-align: center;
    padding: 70px 0px;
}

.thankyou_sec h1 {
    color: #000;
    font-size: 50px;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 20px;
}

.thankyou_sec p {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.thankyou_sec a {
    margin: 0 auto;
}

.thankyou_sec .theme_btn>span {
    padding-left: 18px;
}

.privacy_policy_secc ul>li>a {
    color: var(--theme);
}
