@font-face { font-family: Avenir-Next-Regular; src: url('../fonts/avenir-next-regular.ttf'); } 
@font-face { font-family: Avenir-Next-Medium; src: url('../fonts/avenir-next-medium.ttf'); } 
@font-face { font-family: Avenir-Next-Demi-Bold; src: url('../fonts/avenir-next-demi-bold.ttf'); } 
@font-face { font-family: Avenir-Next-Bold; src: url('../fonts/avenir-next-bold.ttf'); } 


html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Avenir-Next-Regular", sans-serif;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #F8FCFF;
    font-size: 16px;
    font-weight: 400;
    color: #050505;
}
.bold1{
    font-family: Avenir-Next-Demi-Bold;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}

.btn:focus{
    box-shadow: none;
}

@media (min-width: 1470px) {
    .container{
        max-width: 1440px;
    }
}

/*Header Section*/
.header {
    background: #fff 0% 0% no-repeat padding-box;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 0px;
    left: 0px;
}
.sticky-bar {
    background: #ffffff;
}
.navbar-nav{
    gap: 30px;
}
.nav-link {
    display: block;
    color: #050505;
    font-family: "Avenir-Next-Medium";
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    padding: 0px !important;
    transition: all 0.3s ease-in-out;
}
.nav-item .nav-link:hover, .nav-item .nav-link.active{
    color: #5599DA;
}

#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}
            
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}
.nav-item .dropdown-toggle::before {
    display: none;
}
/* Dropdown toggle arrow */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 6px;
    vertical-align: 0.255em;
    content: "";
    border: solid #ffffff !important;
    border-width: 0 2px 2px 0 !important;
    padding: 3px;
    transform: rotate(45deg); /* nice arrow */
}

/* Dropdown base styles */
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    min-width: 21rem;
    margin: 0;
    border-radius: 15px;
    border: 1px solid #E3E3E3;
    background-color: #FFF;
    display: none;
    gap: 10px;
    padding: 24px 34px;
    transition: all 0.3s ease-in-out;
}
.drop-menu-title{
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

/* Items */
.drop-menu{
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.dropdown-item {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #050505;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    padding: 0px;
    transition: all 0.3s ease-in-out;
}
.dropdown-item:focus, 
.dropdown-item:hover, 
.dropdown-item.active {
    color: #5599DA;
    background-color: transparent;
}

.dropdown-menu .br-bottom{
    padding-bottom: 14px;
    border-bottom: 1px solid #E3E3E3;
}


/* Animation: fade-up */
.navbar .dropdown-menu.fade-up {
    top: 120%;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}
.navbar .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    right: 0px; 
    left: auto;
}
.navbar .dropdown-menu.fade-up.show {
    opacity: 1;
    transform: translateY(0);
    
}

/* Active/hover color for arrow */
.nav-item .nav-link.active.dropdown-toggle::after,
.nav-item .nav-link:hover.dropdown-toggle::after {
    border: solid #0a58ca !important;
    border-width: 0 2px 2px 0 !important;
}

/* close */
.navbar-toggler{
    padding: 0px;
}
.menu_toggle {
    width: 40px !important;
    height: 40px;
    padding: 6px 10px 6px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: left;
    position: relative;
    right: 0;
    top: 0px;
    z-index: 90;
    border-radius: 5px;
    line-height: 0px;
    background-color: #5599da;
}
#check1:checked~.menu_toggle{
    background-color: #050505;
}
.menu_toggle span {
    height: 3px;
    width: 100%;
    background: #ffffff;
    display: inline-block;
    transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
    margin: 2px 0px;
}

/* toggle icon animation */
#check1:checked~.menu_toggle span:nth-child(1) {
    width: 100%;
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

#check1:checked~.menu_toggle span:nth-child(2) {
    width: 0;
}

#check1:checked~.menu_toggle span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}
#check1{
    display: none;
}

.btn-theme{
    padding: 11px 24px;
    border-radius: 5px;
    background: #5599DA;
    color: #FFF;
    font-family: "Avenir-Next-Demi-Bold";
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border: 0px;
    transition: all 0.3s ease-in-out;
}
.btn-theme:hover, .btn.show, .btn:first-child:active{
    background: #050505;
    color: #FFF;
}
.nav-item .btn-theme{
/*    padding: 6px 24px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}


/*Hero Section*/
.hero-sec{
    width: 100%;
    background-size: cover;
    background-position: center;
}
.hero-img{
        width: 140%;
    margin-left: -210px;
}
.hero-img.pl-hero {
    width: 145%;
    margin-left: -300px;
}
.cmp-hero{
         width: 175%;
    margin-left: -500px;
}
.content-pad{
    padding: 80px 0px 80px 30px;
}
.small-title{
    font-family: "Avenir-Next-Medium";
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}
.blue-dot{
    width: 7px;
    height: 7px;
    background-color: #569ADA;
    border-radius: 50%;
}
.blue-line{
    width: 75px;
    height: 3px;
    background-color: #569ADA;
    border-radius: 100px;
}
.hero-title{
    font-family: "Avenir-Next-Bold";
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 15px;
}
.hero-title2{
    font-family: "Avenir-Next-Bold";
    font-size: 28px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 25px;
    color: #8e98a1;
}
.hero-sec ul li{
    margin-bottom: 8px;
}
.form-lable{
    font-family: "Avenir-Next-Demi-Bold";
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.form-control{
    color: #050505;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding: 11px 20px;
    border-radius: 5px 0px 0px 5px;
    border: 1px solid #CBCBCB;
    background-color: #FFF;
}
.form-control::placeholder{
    color: #ADADAD;
}
.form-control:focus{
    box-shadow: none;
}
.btn-send{
    background-color: #5599DA;
    padding: 9px 35px 11px;
    border-radius: 0px 5px 5px 0px;
    color: #FFF;
    font-family: "Avenir-Next-Medium";
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease-in-out;
}
.btn-send:hover{
    background: #050505;
    color: #FFF;
}
.btn-theme-borderd{
    background-color: #ffffff;
    border-radius: 5px;
    border: 2px solid #5599DA;
    color: #5599DA;
    font-family: "Avenir-Next-Demi-Bold";
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding: 9px 24px;
}
.btn-theme-borderd:hover{
    background-color: #5599DA;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}
.btn-sec{
    display: flex;
    align-items: end;
    gap: 20px;
}


/*Clients Logo Slider Section*/
.client-logo-sec{
    background-color: #f8fcff;
    padding: 25px;
}
.owl-carousel .owl-item img{
    width: auto;
}
#client-logo .owl-stage{
    display: flex;
    align-items: center;
}
#client-logo .owl-stage .owl-item{
    display: flex;
    justify-content: center;
}


/*Tennis Events Section*/
.title2{
    font-family: "Avenir-Next-Demi-Bold";
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
}
@media (min-width: 576px) {
.container.right-touched{
    max-width: 100% !important;
}

.right-touched-pad{
    padding-left: calc(((100% - 540px) / 2) + .75rem);
}
}

@media (min-width: 768px) {
.right-touched-pad{
    padding-left: calc(((100% - 720px) / 2) + .75rem);
}
}

@media (min-width: 992px) {
.right-touched-pad{
    padding-left: calc(((100% - 960px) / 2) + .75rem);
}
}

@media (min-width: 1200px) {
.right-touched-pad{
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
}
}

@media (min-width: 1400px) {
.right-touched-pad{
    padding-left: calc(((100% - 1320px) / 2) + .75rem);
}
}

@media (min-width: 1470px) {
.right-touched-pad{
    padding-left: calc(((100% - 1440px) / 2) + .75rem);
}
}

#tennis-events .owl-carousel {
    overflow: visible;
}
.owl-stage{
    padding-left: 0px !important;
}

.br-5{
    border-radius: 5px !important;
}
.text-theme{
    color: #5599DA;
}
.theme-bg{
    background-color: #5599DA;
}
.sub-title{
    font-family: "Avenir-Next-Demi-Bold";
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
}
.ft-16{
    font-size: 14px;
}
.cust-ul{
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cust-ul li{
    font-family: "Avenir-Next-Medium";
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}


/*Club & Organizer Support Section*/
.club-organizer{
    position: relative;
}
.club-organizer::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #FFFFFFE3;
    position: absolute;
    top: 0px;
    left: 0px;
}
.bg-img{
    width: 100%;
    background-size: cover;
    background-position: center;
}
.sec-pad{
    padding: 120px 0px;
}
.title{
    font-family: "Avenir-Next-Demi-Bold";
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}
.bold-text{
    font-family: "Avenir-Next-Medium";
    color: var(--black-01, #050505);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.bold-text p{
    margin-bottom: 0px;
}


/*Footer Section*/
.p-footer{
    padding: 24px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.terms-link{
    display: flex;
    align-items: right;
    gap:  40px;
}
.terms-link a{
    font-family: "Avenir-Next-Medium";
    font-size:10px;
    transition: all 0.3s ease-in-out;
}
.terms-link a:hover{
    color: #5599DA;
}
.s-footer{
    padding: 36px 0px;
}
.s-footer p{
    font-family: "Avenir-Next-Medium";
    font-size: 14px;
    margin-bottom: 0px;
    text-align: center;
}





.z-1{
    position: relative;
    z-index: 1 !important;
}
.medium{
    font-family: "Avenir-Next-Medium";
}
.mb-30{
    margin-bottom: 30px;
}
.mb-20{
    margin-bottom: 20px;
}

@media (max-width: 1470px) {
.navbar-nav {
    gap: 25px;
}
.logo{
    width: 250px;
}
.drop-menu-title {
    font-size: 17px;
}
.dropdown-menu {
    min-width: auto;
    padding: 20px 30px;
}
.content-pad {
    padding: 70px 0px 70px 30px;
}
.hero-img {
            width: 141%;
        margin-left: -260px;
}
.cmp-hero{
         width: 175%;
    margin-left: -500px;
}
.btn-sec {
    align-items: flex-start;
    flex-direction: column;
}
.sec-pad {
    padding: 20px 0px;
}
.title {
    font-size: 45px;
    margin-bottom: 25px;
}
.bold-text{
    font-size: 21px;
    gap: 25px;
}
.client-logo-sec {
    padding: 20px 25px;
}
.title2 {
    font-size: 35px;
}
.hero-title{
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
}
.p-footer {
    padding: 20px 0px;
}
.s-footer {
    padding: 25px 0px;
}
}


@media (max-width: 1400px) {
.navbar-nav {
    gap: 25px;
}
.navbar-collapse{
    position: fixed;
    width: 100%;
    top: 70px;
    left: 0px;
    background-color: #fff;
}
.navbar-nav {
    width: 100%;
    left: 0px;
    z-index: 9999;
    gap: 0px;
    margin-bottom: 15px;
}
.navbar-nav .nav-item{
    padding: 15px 0px;
    border-bottom: 1px solid #05050529;
    width: 100%;
}
.navbar-nav .nav-item:last-child{
    border-bottom: 0px;
}
.mobi-menu-view{
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar-toggler{
    display: flex;
    border: 0px;
}
.mb-30{
    margin-bottom: 25px;
}
.client-logo-sec {
    padding: 15px 20px;
}
.content-pad {
    padding: 40px 0px 40px 25px;
}
.hero-img, .hero-img.pl-hero {
            width: 170%;
        margin-left: -320px;
}
.cmp-hero{
         width: 175%;
    margin-left: -500px;
}
}


@media (max-width: 1350px){

}


@media (max-width: 1200px) {
.logo{
    width: 225px;
}
.dropdown-menu {
    padding: 15px 25px;
    border-radius: 10px;
}
.sec-pad {
    padding: 40px 0px;
}
.title {
    font-size: 35px;
    margin-bottom: 20px;
}
.bold-text{
    font-size: 20px;
    gap: 20px;
}
.mb-30{
    margin-bottom: 20px;
}
.title2 {
    font-size: 30px;
}
.content-pad {
    padding: 30px 0px 30px 15px;
}
.hero-title{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
}
.p-footer {
    padding: 15px 0px;
}
.s-footer {
    padding: 20px 0px;
}
.terms-link {
    gap: 30px;
}
.hero-img, .hero-img.pl-hero {
    width: 100%;
    margin-left: 0px;
/*    border-bottom: 1px solid #0000005c;*/
}
}


@media (max-width: 992px){
.sec-pad {
    padding: 50px 0px;
}
.content-pad {
    padding: 20px 0px 20px;
}

.btn-sec {
    align-items: flex-end;
    flex-direction: row;
}
}


@media (max-width: 768px) {
body{
    font-size: 16px;
}
.logo{
    width: 200px;
}
.logofooter{
    width: 150px;
}
.mobi-menu-view {
    gap: 15px;
}
.menu_toggle {
    width: 35px !important;
    height: 35px;
    padding: 6px 9px 6px;
}
.menu_toggle span {
    height: 2px;
}
#check1:checked~.menu_toggle span:nth-child(1) {
    width: 100%;
    transform: rotate(45deg) translateY(4px) translateX(4px);
}
.nav-link {
    font-size: 16px;
}
.navbar-nav .nav-item{
    padding: 10px 0px;
}
.navbar-collapse {
    top: 50px;
}
.btn-theme {
    padding: 8px 15px;
    gap: 0px;
    font-size: 16px;
}
.nav-item .btn-theme{
    padding: 6px 15px !important;
}
.drop-menu-title {
    font-size: 14px;
    margin-bottom: 8px;
}
.dropdown-item {
    font-size: 12px;
}
.drop-menu {
    gap: 4px;
}
.dropdown-menu {
    padding: 10px 20px;
    border-radius: 7px;
    gap: 6px;
}
.dropdown-menu .br-bottom {
    padding-bottom: 10px;
}
.navbar-nav {
    margin-bottom: 10px;
    margin-top: 20px;
}
.sec-pad {
    padding: 40px 0px;
}
.title {
    font-size: 28px;
    margin-bottom: 15px;
}
.bold-text{
    font-size: 18px;
    gap: 15px;
}
.mb-30{
    margin-bottom: 15px;
}
.client-logo-sec {
    padding: 10px 15px;
}
.title2 {
    font-size: 25px;
}
.mb-20 {
    margin-bottom: 15px;
}
.btn-sec {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}
.form-control {
    font-size: 16px;
    padding: 8px 15px;
}
.btn-send {
    padding: 6px 20px 8px;
    font-size: 15px;
}
.btn-theme-borderd{
    border-color: #ffffff;
    padding: 6px 15px;
    font-size: 16px;
}
.form-lable {
    font-size: 14px;
    margin-bottom: 6px;
}
.hero-title {
    font-size: 27px;
    line-height: 35px;
    margin-bottom: 8px;
}
.small-title {
    font-size: 18px;
}
.content-pad {
    padding: 30px 0px 20px;
}
.btn-theme-borderd:hover {
    background-color: #050505;
    color: #ffffff;
}
.s-footer p {
    font-size: 14px;
}
.p-footer {
    padding: 10px 0px;
}
.s-footer {
    padding: 15px 0px;
}
.terms-link {
    gap: 25px;
}   
.hero-sec{
        background-image: none !important;
    }
}


@media (max-width: 576px) {
.sec-pad {
    padding: 30px 0px;
}
.p-footer {
    flex-direction: column;
    gap: 10px;
}      
}


@media (max-width: 400px) {
.mobi-menu-view {
    gap: 5px;
}

.navbar{
    padding: 5px 0px;
}
.navbar .dropdown-menu.fade-up {
    right: -35px;
}  
.nav-item .btn-theme {
        padding: 3px 9px !important;
        font-size: 14px;
    }
        .logo {
        width: 180px;
    }
        .menu_toggle {
        width: 25px !important;
        height: 25px;
        padding: 5px 6px 5px;
    }
    .menu_toggle span {
    margin: 1.5px 0px;
}    
.dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: 0.255em;
    content: "";
    border-width: 0 2px 2px 0 !important;
    padding: 3px;
    margin-top: -3px;
}
}


.navbar-nav .nav-item{
    padding: 0px;
    margin: 0px;
}
.navbar-nav .nav-item .nav-link{
    display: block;
    color: #050505;
    font-family: "Avenir-Next-Medium";
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    padding: 0px !important;
}
@media (max-width: 300px) {
    .dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: 0.255em;
    content: "";
    border-width: 0 2px 2px 0 !important;
    padding: 3px;
    margin-top: -3px;
}
    
}
.ft-18{
    font-size: 18px;
}