/* Font */

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
      url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
      url('../fonts/Poppins-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-SemiBold.woff2') format('woff2'),
      url('../fonts/Raleway-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Medium.woff2') format('woff2'),
      url('../fonts/Raleway-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Bold.woff2') format('woff2'),
      url('../fonts/Raleway-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


:root {
  --white:#ffffff;
  --darkblue: #0E1E40;
  --grey:#0E1E40;
  --button-bg:#36333D;
  --blue:#016EC9;
}

body{
  font-family: 'Poppins';
}

::-webkit-scrollbar {
  width:10px;
  -webkit-appearance: none;
}

::-webkit-scrollbar-thumb {
  background-color:#000000;
  border-radius: 10px;
  border:2px solid #ffffff;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 12px;
}

/*::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}*/

html,body{
  overflow-x: hidden;
}
body.active{
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
a {
  color: inherit;
  text-decoration: none;
}
a {
  color: #2f0802;
}
h1,
h2,
h3,
h4 {
  color: #000;
}
*:focus {
  outline: none;
}
button:focus, a:focus{
  outline: none;
}
button {
  border: 0;
}
ul li {
  list-style: none;
  color: inherit;
}
img {
  max-width: 100%;
}
a:hover {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
}

.container {
  max-width:1140px;
  margin: auto;
}

/* Topbar Css Start */
.topbar{
  float:left;
  width:100%;
  background:var(--darkblue);
  padding:10px 50px;
}

.topbar_inr{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.topbar_inr_lft ul{
  display:flex;
  column-gap:35px;
}

.topbar_logo {
  width:30%;
}

.topbar_logo a{
  display:flex;
  align-items:center;
  column-gap:20px;
  font-family: 'Raleway';
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  letter-spacing: 0.56px;
  color:var(--white);
}

.topbar_logo img{
  display:block;
  margin-left: auto;
  text-align: center;
}

.topbar_inr_rgt{
  display:flex;
  column-gap:15px;
}

.topbar_rgt_icon ul{
  display:flex;
  align-items:center;
  column-gap:15px;
}

.topbar_rgt_icon ul li a{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.36px;
  color: #ffffff;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.get_direction_btn a{
  display:initial;
  padding:12px 20px;
  border:1px solid #ffffff;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color:var(--white);
  transition:all 0.6s;
}

.get_direction_btn a:hover{
  border:1px solid transparent;
  background:var(--white);
  color:var(--darkblue);
}
/* Topbar Css End */

/* Navigation Css Start */

header{
  float:left;
  width:100%;
  position: relative;
  z-index: 99;
  background: #ffffff;
  padding:20px 0;
}

.navigation{
  width: 100%;
}

.header_inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  position:relative;
}

.header_inr .logo a{
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-family: 'Raleway';
  font-size: 28px;
  line-height: 42px;
  font-weight:600;
  letter-spacing: 0.56px;
  color: var(--white);
}

.header_rgt_icon{
  display:flex;
  column-gap:10px;
}

.navbar .nav-list{
  display:flex;
  justify-content:center;
  column-gap:35px;
  margin-bottom: -20px;
}

.navbar .nav-list li{
  padding-bottom:20px;
}

.startnow_btn a{
  background:#ffffff;
  border-radius: 20px;
  padding:13px 25px;
  font-weight:600;
  font-size:14px;
  line-height:17px;
  color: #1B3865;
  font-family: 'Poppins';
  transition:all 0.6s;
  border:1px solid transparent;
}

.startnow_btn a:hover{
  background:transparent;
  border:1px solid #ffffff;
  color:#ffffff;
}

.header_login a{
  font-family: 'Poppins';
  font-size:14px;
  font-weight:500;
  line-height:19px;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.header_rgt{
  display:flex;
  align-items:center;
  column-gap:50px;
  justify-content:center;
}

.header_rgt_lf ul{
  display:flex;
  column-gap:10px;
}

.header_rgt_lf ul li a {
  font-size:13px;
  line-height:15px;
  font-weight:600;
  letter-spacing: 0.13px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: 'Poppins';
  transition:all 0.5s;
}

.header_rgt_lf ul li a:hover{
  color:#36333D;
}

.language_option ul li a:hover{
  color:#36333D;
}

.social_top{
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 40px;
}

.social_top ul{
  display:flex;
}

.social_tp_inr{
  display: flex;
  background: #10552B;
  padding: 16px 20px;
  column-gap: 15px;
}

.social_tp_inr p{
  font-family: 'Poppins';
  font-size:14px;
  line-height:17px;
  letter-spacing: 0.28px;
  color: #FFFFFF;
}

.social_tp_inr ul{
  display:flex;
  column-gap:15px;
}

.social_tp_inr ul li img{
  display:block;
}

.navbar .nav-list li a{
  font-family: 'Poppins';
  font-size: 16px;
  line-height: 25px;
  font-weight:500;
  color:var(--darkblue);
  letter-spacing: 0.36px;
  text-transform: uppercase;
  transition:all 0.5s;
  position:relative;
}

.navbar .nav-list li a span{
  font-weight:800;
  font-size: 13px;
  line-height:18px;
  margin-left: 5px;
}

.navbar .nav-list > li > a.active{
  color:var(--blue);
}

.navbar .nav-list > li.active > a{
  color:var(--blue);
}

.navbar .nav-list li.dropdwon {
  position: relative;
}

.submenu{
  display:none;
  position: absolute;
  width: auto;
  top: 100%;
  left: -1px;
  z-index: 1;
  text-align: left;
  background: #fff;
  padding: 10px;
}

ul.nav-list li.dropdwon:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.navbar .nav-list li.dropdown:hover .menu_dropdown{
  opacity:1;
}

.sub-menu{
  opacity:0;
  visibility:hidden;
  position:absolute;
  background:#016EC9;
  z-index:9999;
  padding:15px 20px;
  min-width:200px;
  margin-top:20px;
  border-radius: 0 0 20px 20px;
}

.navbar .nav-list li.hover_dropdown.active .sub-menu{
  opacity:1;
  visibility:visible;
}

.navbar .nav-list .sub-menu li{
  padding-bottom:0;
}

.navbar .nav-list .sub-menu li{
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom:15px;
}

.navbar .nav-list .sub-menu li:last-child{
  margin-bottom:0;
}

.navbar .nav-list .sub-menu li a{
  display:flex;
  align-items: center;
  column-gap:10px;
}

.navbar .nav-list .sub-menu li a img{
  max-width:20px;
  height:20px;
  object-fit: cover;
}

.navbar .nav-list .sub-menu li:last-child{
  margin-bottom:0;
}

.navbar .sub-menu li a{
  font-size: 18px;
  line-height:25px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--white);
  font-family: 'Poppins';
  text-transform:initial;
}

.navbar .nav-list .sub-menu li a:hover{
  color:var(--white);
}

.navbar{
  display: flex;
  align-items: center;
  justify-content:center;
  column-gap: 45px;
}
    
/* Megamenu */

ul li.dropdown{
  position: relative;
}

.megamenu{
  position: absolute;
  background: #fff;
  z-index: 99;
  width: 300px;
  opacity:0;
  visibility:hidden;
  transition:all 0.7s;
  top:30px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

ul li.dropdown:hover .megamenu{
  opacity:1;
  visibility:visible;
}

.megamenu li {
  padding:8px 10px;
  border-bottom:1px solid #ccc;
  margin-right:0 !important;
  margin-top:0 !important;

}

/* Mobile navigation */

.mobile_btm{
    padding:30px 20px 0;
}

.web_header_mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mo_menu {
  position: fixed;
  right:-100%;
  background: #fff;
  width:100%;
  height: 100vh;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index:9999;  
  visibility: visible;
}

.mo_menu.active {
  right:0;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  padding:30px 30px;
  background:var(--darkblue) ;
  position: fixed;
  overflow-y: auto;
  opacity:1;
  display:block;
  z-index:99999;
}

.main.active{
  transform: translate(-30%, 0);
  opacity: 0.5;
}

.main{
/*  transform: translate(0%, 0);*/
  transition: all 0.6s ease 0s;
}

.mo_menu .sidemenu_close{
  display:none;
}

.mo_menu.active .sidemenu_close{
  display:block;
}

.mo_menu.active .sidemenu_close span{
  background-color:transparent;
}

.mo_menu.active .sidemenu_close span:before, .mo_menu.active .sidemenu_close span:after{
  background-color:#ffffff;
}

.mo_menu.active .sidemenu_close span:before{
  transform: rotate(45deg);
  top: 10px;
}

.mo_menu.active .sidemenu_close span:after{
  transform: rotate(-45deg);
  top:10px;
}

.sideMenu ul li.dropdown_main span.mobile_dropdown {
  float: right;
  position: absolute;
  top:23px;
  right:0px;
  color: #000000;
  cursor: pointer;
}

.sideMenu ul li.dropdown_main span.mobile_dropdown i{
  font-size:20px;
  line-height:26px;
  font-weight:600;
  color: #ffffff;
}

.sideMenu ul li.dropdown_main span.mobile_dropdown.active{
  color: #00A091;
}

.sideMenu ul li .sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  background-color:#fff;
  box-shadow:none;
  margin-top: 10px;
  opacity: 1;
    visibility: visible;
    max-width: initial;
    border-radius: 0;
}

.sideMenu .nav-list .sub-menu li{
  text-transform:initial;
}

.sideMenu .nav-list .sub-menu li a{
  background-color:transparent;
  display:flex;
  border-bottom:0;
  font-family: 'Poppins';
  font-weight:600;
  color: #36333D;
  font-size:18px;
  line-height:24px;
  letter-spacing: 0.6px;
  text-transform:initial;
}

.sideMenu .sub-menu .dropdown_icon{
  width:38px;
  height:38px;
}

.sideMenu  .dropwon_nav h6, .sideMenu  .dropwon_nav p{
  color:#fff;
}

.sideMenu  .dropwon_nav h6{
  font-size:18px;
  margin-bottom:5px;
}

.sideMenu  .dropwon_nav p{
  font-size:14px;
}

.sideMenu .mob_dropdown:after{
  content: '\f054';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right:20px;
  top:24px;
  color:#fff;
  cursor: pointer;
}

.mob_dropdown.active:after{
  transform: rotate(90deg);
}

.sideMenu .nav-list{
  padding-top:40px;
}

.sideMenu .nav-list li {
  display: block;
  position: relative;
  padding:15px 0px;
}

.sideMenu ul li .sub-menu li:first-child{
  border:0;
}

.sideMenu ul li .sub-menu li{
  padding:15px 30px;
  border-top: 1px solid #707070;
}

.sideMenu .nav-list li a {
  display: block;
  text-decoration: none;
  font-family: 'Poppins';
  font-weight:600;
  font-size:20px;
  line-height:28px;
  letter-spacing:2px;
  color:#ffffff;
}

.sideMenu .nav-list li a.active{
  color:var(--blue);
}

.sideMenu ul li a span{
    cursor:pointer;
}

.menuIcon {
  display: inline-block;
  padding: 3px 12px;
  cursor: pointer;
}
.menuIcon span {
  display: block;
  width: 28px;
  height:3px;
  background:#ffffff;
  position: relative;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon span:before {
  position: absolute;
  content: "";
  left: 0;
  top: -10px;
  width: 28px;
  height:3px;
  background:#ffffff;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 28px;
  height:3px;
  background:#ffffff;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span {
  background:transparent;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span:before {
  transform: rotate(45deg);
  top: 0px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span:after {
  transform: rotate(-45deg);
  bottom: 0px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.mo_menu.active .menuIcon.sidemenu_close{
  position: absolute;
  top: 30px;
  right: 15px;
  height: 28px;
  cursor: pointer;
}

.mo_menu.active .menuIcon.sidemenu_close{
  background-color:transparent;
}

.mo_menu.active .menuIcon.sidemenu_close i{
  font-size:32px;
  color:#Fff;
}

/* Banner Css Start */
.banner_main{
  float:left;
  width:100%;
  background-repeat:no-repeat;
  background-position:center;
  padding:480px 0 40px;
  clip-path: ellipse(82% 100% at 50% 0);
  transition:clip-path 1.5s,-webkit-clip-path 1s;
  background-size:cover;

}

/*.banner_main.active{
  clip-path: ellipse(200% 200% at 50% 0);
  transition:clip-path 1.5s,-webkit-clip-path 1s;
}*/

.banner_inr_cnt{
  background:rgb(255 255 255 / 50%);
  border-radius: 30px;
  padding:15px 15px;
  text-align:center;
  max-width:985px;
  margin: 0 auto;
}

.banner_inr_cnt h1{
  font-family: 'Poppins';
  font-weight:600;
  font-size: 32px;
  line-height: 42px;
  color:var(--darkblue);
  text-transform: uppercase;
/*  margin-bottom:15px;*/
}

.banner_inr_cnt h2{
  font-family: 'Poppins';
  font-weight:500;
  font-size:38px;
  line-height:57px;  
  color:var(--darkblue);
}
/* Banner Css End */

/* Bowls Experience Css Start */
.hm_bowls_exp{
  float:left;
  width:100%;
  padding:70px 0 30px;
  position:relative;
}

.hm_bowls_exp:before{
  content:'';
  position:absolute;
  bottom: -52%;
  left: -26%;
  background:url('../img/bowling-ball-2.png');
  width:1607px;
  height:1600px;
  opacity:0.03;
  background-repeat:no-repeat;
  background-size:contain;
}

.hm_bowls_exp_btn{
  display:flex;
  column-gap:5px;
  justify-content:space-between;
  position: relative;
  z-index: 9999;
}

.hm_bowls_exp_btn a{
  background:#d6e6fe;
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing:1px;
  color:#000d7c;
  text-transform: uppercase;
  width:100%;
  padding:24px 15px;
  text-align:center;
  transition:all 0.6s;
  border:1px solid transparent;
}

.hm_bowls_exp_btn a:hover{
  background:#000d7c;
  border:1px solid transparent;
  color:var(--white);
}

.hm_bowls_exp_cnt {
  margin:70px 0px;
  position:relative;
  z-index:99999;
}

.hm_bowls_exp_cnt h2{
  font-family: 'Poppins';
  font-size:49px;
  line-height:72px;
  font-weight:600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color:var(--darkblue);
  text-align:center;
  margin-bottom:30px;
}

.hm_bowls_exp_cnt h2 span{
  color:var(--blue);
}

.hm_bowls_exp_cnt p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  text-align:center;
  margin-bottom:30px;
}

.hm_bowls_exp_cnt p:last-child{
  margin-bottom:0;
}

.hm_bowls_exp_cnt p a{
  color:var(--darkblue);
}

.hm_bowls_exp_inr{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  column-gap:40px;
  grid-row-gap:40px;
  max-width:1400px;
  margin:0 auto;
  position:relative;
  z-index:9999;
}

.hm_bowls_exp_itm_img{
  position:relative;
}

.hm_bowls_exp_itm_cnt{
  position:absolute;
  bottom:33px;
  padding:0 20px;
}

.hm_bowls_exp_itm_cnt h2{
  font-family: 'Poppins';
  font-size:48px;
  line-height:60px;
  font-weight:300;
  letter-spacing: 0.96px;
  text-transform:uppercase;
  color:var(--white);
}

.hm_bowls_exp_inr_itm .hm_bowls_exp_itm_img img{
  display:block;
  border-radius:20px;
  width:100%;
}
/* Bowls Experience Css End */

/* Featured Main Css Start */
.featured_main{
  float:left;
  width:100%;
  background: #F8F8F8;
  padding:70px 0;
}

.featured_main h2{
  font-family: 'Poppins';
  font-size:48px;
  line-height:72px;
  font-weight:600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color:var(--darkblue);
  text-align:center;
  margin-bottom:30px;
}

.featured_slider{
  margin:0 -15px;
}

.featured_sld_itm{
  margin:0 15px;
}

.featured_sld_itm_img img{
  border-radius:30px;
}

.featured_slider button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:999;
  padding:54px 30px;
  background:rgb(255 255 255 / 50%);
  cursor:pointer;
}

.featured_slider button.featured_prv_arw{
  left:0;
  border-top-right-radius:20px;
  border-bottom-right-radius:20px;
}

.featured_slider button.featured_nxt_arw{
  right:0;
  border-top-left-radius:20px;
  border-bottom-left-radius:20px;
}

.featured_view_btn{
  text-align:center;
  margin-top:30px;
}

.featured_view_btn a{
  display:inline-block;
  padding:15px 50px;
  border: 1px solid #0E1E40;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  text-transform: uppercase;
  transition:all 0.6s;
}

.featured_view_btn a:hover{
  background:var(--darkblue);
  border:1px solid transparent;
  color:var(--white);
}
/* Featured Main Css End */

/* Our Sponsors Css Start */
.our_sponsors{
  float:left;
  width:100%;
  margin:0px 0 30px;
}

.our_sponsors h2{
  font-family: 'Poppins';
  font-size: 48px;
  line-height: 72px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--darkblue);
  text-align: center;
  margin-bottom: 30px; 
}

.our_sponsors_slider{
  padding:0 216px;
   margin:0 -35px;
}

.our_sponsors_sld_itm{
  margin:0 35px;
}

.our_sponsors_slider .slick-track{
  display:flex;
  align-items:center;
}

.our_sponsors_sld_img{
  text-align:center;
}

.our_sponsors_sld_img img{
  display:block;
  margin:0 auto;
}
/* Our Sponsors Css End */

/* Weekly Events Css Start */
.weekly_events{
  float:left;
  width:100%;
  margin-bottom:70px;
}

.weekly_events h2{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing: 0.72px;
  color:var(--blue);
  margin-bottom:30px;
  text-align:center;
}

.weekly_events_inr {
  position:relative;
}

.wkly_evnt_itm{
  margin:0 14px;
  position:relative;
}

.wkly_evnt_itm_inr img{
  display:block;
  border-radius:20px;
}

.wkly_evnt_itm_cnt{
  position:absolute;
  top:0;
  padding:30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column; 
}

.weekly_events_inr  button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:999;
  background:transparent;
  cursor:pointer;
}

.weekly_events_inr  button.weekly_event_prv_arw{
  left:90px;
}
.weekly_events_inr  button.weekly_event_nxt_arw{
  right:90px;
}

.wkly_evnt_itm_cnt_btm, .wkly_evnt_itm_cnt_top{
  width:100%;
}

.wkly_evnt_itm_cnt_top h3{
  font-family: 'Poppins';
  font-size:32px;
  line-height:48px;
  font-weight:500;
  letter-spacing: 0.64px;
  color:var(--white);
  text-transform: uppercase;
}

.wkly_evnt_itm_cnt_btm h4{
  font-family: 'Poppins';
  font-size:24px;
  line-height:35px;
  font-weight:300;
  letter-spacing: 0.48px;
  color:var(--white);
  margin-bottom:10px;
}

.wkly_evnt_itm_cnt_btm a{
  display:inline-block;
  padding:10px 27px;
  background:var(--white);
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px; 
  font-weight:500;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  transition:all 0.6s;
}

.wkly_evnt_itm_cnt_btm a:hover{
  background:var(--darkblue);
  color:var(--white);
}
/* Weekly Events Css End */

/* Social Sec Css Start */
.social_sec{
  float:left;
  width:100%;
  background:var(--blue);
  padding:28px 0;
  position: relative;
  z-index: 9999;
}

.social_sec_inr ul{
  display:flex;
  justify-content:center;
  column-gap:30px;
}

.social_sec_inr ul li a{
  display:flex;
  align-items:center;
  column-gap:12px;
  font-family: 'Poppins';
  font-size:20px;
  line-height:30px; 
  font-weight:600;
  text-transform: uppercase;
  color:var(--white);
}
/* Social Sec Css End */

/* We Are Social Css Start */
.we_are_social{
  float:left;
  width:100%;
  margin:70px 0;
  position: relative;
  z-index: 9999;
}

.we_are_social h2{
  font-family: 'Poppins';
  font-size: 48px;
  line-height: 72px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--darkblue);
  text-align: center;
  margin-bottom: 30px;
}

.we_are_social_inr{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  column-gap:15px;
}

.we_are_social_itm{
  vertical-align: bottom;
  display: block;
  height: 100%;
  align-content: flex-end;
}

.we_are_social_itm h3{
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  margin: 0px 0 10px;
  color: var(--darkblue);
  text-transform: uppercase;
  padding: 0 10px;
}

.we_are_social_itm img{
  display:block;
  width:100%;
}

.follow_on_fb_btn{
  margin-top:40px;
  text-align:center;
}

.follow_on_fb_btn a{
  display:inline-flex;
  align-items:center;
  column-gap:15px;
  padding:15px 20px;
  border:1px solid var(--darkblue);
  color:var(--darkblue);
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  transition:all 0.6s;
}

.follow_on_fb_btn a i{
  transition:all 0.6s;
  font-size:20px;
}

.follow_on_fb_btn a:hover{
  background:var(--darkblue);
  color:var(--white);
  border:1px solid transparent;
}

.follow_on_fb_btn a:hover i{
  color:var(--white);
}
/* We Are Social Css End */

/* Footer Css Start */
footer{
  float:left;
  width:100%;
  background:#0E1E40;
  padding:30px 0px;
}

.ftr_inr{
  display:flex;
  align-items: center;
  justify-content:space-between;
  column-gap: 40px;
}

.ftr_lft{
  width:60%;
  display:flex;
  column-gap:50px;
}

.ftr_rgt{
  width:30%;
}

.ftr_map{
  height:100%;
}

.ftr_map iframe{
  width:100%;
  height:100%;
  display:block;
}

.ftr_rgt_inr{
  display:flex;
  align-items: flex-end;
  justify-content:space-between;
  column-gap:30px;
  height: 100%;
}

.ftr_rgt_logo{
  padding: 66px 0 82px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
}

.ftr_logo a{
  text-align:center;
}

.ftr_logo img{
  display:block;
  margin:0 0px 15px 0;
  width:80px;
  height:80px;
  border-radius:50%;
}

.ftr_rgt_itm h3{
  font-family: 'Raleway';
  font-size:24px;
  line-height:30px;
  font-weight:500;
  letter-spacing: 0.48px;
  color:var(--white); 
  margin-bottom:10px;
}

.ftr_logo_btm{
  text-align:center;
}

.ftr_logo_btm img{
  width:100%;
  max-width: 130px;
}

.ftr_social{
  margin-top:25px;
  width: 75px;
  text-align: center;
}

.ftr_social ul {
  display: flex;
  align-items:center;
  justify-content:center;
  column-gap: 35px;
}

.ftr_rgt_dtl{
  display:flex;
}

.ftr_contact_dtl{
  padding-right:40px;
  border-right:1px solid #ffffff;
  max-width: 420px;
}

.ftr_menu_main{
  padding-left:40px;
}

.ftr_contact_dtl_inr ul li{margin-bottom:10px;}
.ftr_contact_dtl_inr ul li:last-child{margin-bottom:0;}

.ftr_contact_dtl_inr ul li p{
  font-family: 'Poppins';
  font-size:16px;
  line-height:25px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--white); 
}

.ftr_contact_dtl_inr ul li a.get_direction{
  color:var(--blue);
}

.ftr_contact_dtl_inr ul li a{
  font-family: 'Poppins';
  font-size:16px;
  line-height:25px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--white); 
  text-decoration:underline;
}

.ftr_link ul li a{
  font-family: 'Poppins';
  font-size:18px;
  line-height:35px;
  font-weight:500;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color:var(--white); 
}

.ftr_website_by p{
  font-family: 'Poppins';  
  font-size:14px;
  line-height:21px;
  font-weight:400;
  color:var(--white);
}

.ftr_website_by p a{
  color:var(--blue);
}

.copyright{
  margin-top:15px;
  display:flex;
  justify-content:space-between;
}

.copyright ul {
  display: flex;
  column-gap:25px;
}

.copyright ul li {
  position: relative;
}

.copyright ul li:before {
  content: '|';
  position: absolute;
  top:1px;
  right: -12px;
  font-family: 'Poppins';  
  font-size: 14px;
  line-height:21px;
  font-weight: 400;  
  color: var(--white);
}

.copyright ul li:last-child:before{
  content:none;
}

.copyright ul li a {
  font-family: 'Poppins';
  font-size: 14px;
  line-height:21px;
  font-weight: 400;
  color:var(--blue);
}

.copyright p{
  font-family: 'Poppins';
  font-size: 14px;
  line-height:21px;
  font-weight: 400;
  color:var(--white);
}

.copyright_lft{
  display:flex;
  column-gap:20px;
}
/* Footer Css End */

/* Inner Banner Css Start */
.inner_bnr_main{
  float:left;
  width:100%;
  padding:122px 0 10px;
  clip-path: ellipse(82% 100% at 50% 0);
  background-size: cover;
  background-position: center;
}


.inner_bnr_cnt{
  text-align:center;
}

.inner_bnr_cnt h1{
  font-family: 'Poppins';
  font-size:32px;
  line-height:42px;
  font-weight:600;
  letter-spacing: 1.04px;
  color:var(--darkblue);
  text-transform: uppercase;
  display:inline-block;
  background: rgb(255 255 255 / 50%);
  padding:12px 14px;
  border-radius:15px;
}
/* Inner Banner Css End */

/* Breadcrumb Css Start*/
.breadcrumb{
  float:left;
  width:100%;  
}

.breadcrumb_inr{
  border-bottom:1px solid #0E1E40;
  padding:20px 0;
}

.breadcrumb_inr ul{
  display:flex;
  column-gap:18px;
}

.breadcrumb_inr ul li{
  font-family: 'Poppins';
  font-size:16px;
  line-height:25px;
  font-weight:400;
  color:var(--grey);
  position:relative;
}

.breadcrumb_inr ul li:before{
  content:'/';
  position:absolute;
  right:-13px;
  top:0;
  font-size:16px;
  line-height:25px;
  font-weight:400;
  color:var(--darkblue);
}

.breadcrumb_inr ul li:last-child:before{
  content:none;
}

.breadcrumb_inr ul li a{
  color:var(--darkblue);
}
/* Breadcrumb Css End*/

/* Contact Page Css Start */
.contact_main{
  float:left;
  width:100%;
  margin:30px 0 70px;
  position:relative;
}

.contact_main:before {
  content: '';
  position: absolute;
  top: -15%;
  left: -16%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity:0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact_inr{
  display:flex;
  justify-content: space-between;
  position:relative;
  z-index:9999;
}

.contact_lft{
  width: 35%;
}

.contact_rgt{
  width: 53%;
  background: #F8F8F8;
  padding:20px 30px;
  border-radius: 20px;
}

.contact_lft_tp{
  margin-top:20px;
}

.contact_lft_tp h2{
  font-family: 'Poppins';  
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing: 0.72px;
  color:var(--darkblue);
  text-transform: uppercase;
  margin-bottom:10px;
}

.contact_lft_tp p{
  font-family: 'Poppins'; 
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--grey);
}

.contact_details{
  margin-top:40px;
}

.contact_dtls_itm{
  margin-bottom:40px;
}
.contact_dtls_itm:last-child{
  margin-bottom:0;
}

.contact_dtls_itm h4{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:600;
  letter-spacing: 0.36px;
  color:var(--blue);
  text-transform:uppercase;
  margin-bottom:10px;
}

.contact_dtls_itm p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--grey);
}

.contact_dtls_itm span{
  font-family: 'Poppins';
  font-size:14px;
  line-height:21px;
  font-weight:400;
  letter-spacing: 0.28px;
  color:var(--grey);
  display:inline-block;
  margin-top:10px;
}

.contact_dtls_itm a{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--grey);
  text-decoration:underline;
  transition:all 0.6s;
}

.contact_dtls_itm a:hover{
  color:var(--blue);
}

.contact_dtls_itm ul{
  display:flex;
  column-gap:30px;
}

.contact_rgt h2{
  font-family: 'Poppins';  
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing: 0.72px;
  color:var(--darkblue);
  text-transform: uppercase;
  margin-bottom:10px;
}

.contact_rgt p{
  font-family: 'Poppins'; 
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--grey);
}

.contact_rgt_form{
  margin-top:40px;
}

.contact_frm_grp {
  margin-bottom:30px;
}

.contact_frm_grp:last-child{
  margin-bottom:0;
}

.contact_frm_grp input{
  width:100%;
  border: 1px solid #0E1E40;
  padding:15px 20px;
  font-family: 'Poppins'; 
  font-size:18px;
  line-height:30px;
  letter-spacing: 0.36px;
  color:var(--darkblue);
}

.contact_frm_grp input::placeholder, .contact_frm_grp textarea::placeholder{
  font-family: 'Poppins'; 
  font-size:18px;
  line-height:30px;
  letter-spacing: 0.36px;
  color:var(--grey);
}

.contact_frm_grp textarea{
  width:100%;
  border: 1px solid #0E1E40;
  padding:15px 20px;
  font-family: 'Poppins'; 
  font-size:18px;
  line-height:30px;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  height:180px;
  resize:none;
  display:block;
}

.contact_submit{
  text-align:right;
}

.contact_frm_grp_rows{
  margin-bottom: 30px;
}

.contact_frm_grp_rows p span.wpcf7-form-control-wrap{
  display:block;
}

.contact_frm_grp_rows p span.wpcf7-form-control-wrap .wpcf7-list-item{
  margin:0 !important;
}

.contact_frm_grp_rows p span.wpcf7-form-control-wrap .contact_like_bowl, 
.contact_frm_grp_rows p span.wpcf7-form-control-wrap .contact_interested{
  display:flex;
  column-gap:20px;
}

.contact_frm_grp_rows p span label{
  cursor:pointer;
  display: flex;
  align-items: center;
  column-gap: 7px;
}

.contact_frm_grp_rows p span label input{
  width: 19px;
  height: 17px;
}

.contact_frm_grp_rows > div{
  margin-bottom:15px;
}

.contact_submit input{
  border:0;
  display:inline-block;
  padding:15px 50px;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color:var(--white);
  background-color:var(--darkblue);
  cursor:pointer;
  border:1px solid transparent;
  transition:all 0.6s;
  background-image: initial;
}

.contact_submit input:hover{
  background:transparent;
  border:1px solid var(--darkblue);
  color:var(--darkblue);
}

.contact_prsn{
  float:left;
  width:100%;
  background: #F8F8F8;
  padding:70px 0;
}

.title_top{
  position:relative;
  z-index:99999;
}

.title_top h2{
  font-family: 'Poppins';
  font-size: 48px;
  line-height: 72px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--darkblue);
  text-align: center;
  margin-bottom: 30px;  
}

.contact_prsn_inr{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  column-gap:20px;
  position:relative;
  z-index:99999;
}

.contact_prsn_itm{
  background: #FFFFFF;
  border-radius:20px;
  padding:40px 20px 30px;
}

.contact_prsn_img{
  text-align:center;
}

.contact_prsn_img img{
  width:150px;
  height:150px;
  border-radius:50%;
  object-fit:cover;
}

.contact_prsn_name{
  margin:30px 0;
}

.contact_prsn_name h3{
  font-family: 'Poppins';
  font-size:20px;
  line-height:30px;
  font-weight:600;
  letter-spacing: 0.4px;
  color:var(--darkblue);
  margin-bottom:10px;
  text-align: center;
}

.contact_prsn_name h4{
  font-family: 'Poppins';
  font-size:14px;
  line-height:21px;
  font-weight:400;
  letter-spacing: 0.28px;
  color:var(--grey);
  text-transform: uppercase;
  text-align:center;
}

.contact_prsn_info a{
  font-family: 'Poppins'; 
  font-size:11px;
  line-height:17px;
  font-weight:500;
  color:var(--blue);
  display:block;
  margin-bottom:5px;
  text-align:center;
  transition:all 0.6s;
}

.contact_prsn_info a:hover{
  color:var(--darkblue);
}

.contact_prsn_info a:last-child{
  margin-bottom:0;
}

.coaches_main{
  background:transparent;
}

.coaches_prsn_inr .contact_prsn_itm{
  background: #F8F8F8
}

.coaches_prsn_inr .contact_prsn_itm .contact_prsn_name{
  margin:30px 0 0;
}

.coaches_prsn_inr .contact_prsn_itm .contact_prsn_name h4{
  margin-bottom:10px;
}

.coaches_prsn_inr .contact_prsn_itm .contact_prsn_name a{
  font-family: 'Poppins';
  font-size: 11px;
  line-height: 17px;
  font-weight: 500;
  color: var(--blue);
  display: block;
  margin-bottom: 5px;
  text-align: center;
  transition: all 0.6s;
}

.coaches_prsn_inr .contact_prsn_itm .contact_prsn_name a:hover{
  color: var(--darkblue);
}
/* Contact Page Css End */

/* About Page Css Start */
.about_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.about_main:before {
  content: '';
  position: absolute;
  top:12%;
  left: -18%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.about_top_txt{
  position:relative;
  z-index:9999;
}

.about_top_txt h4{
  font-family: 'Poppins';
  font-size:24px;
  line-height:35px;
  font-weight:400;
  letter-spacing: 0.48px;
  color: var(--darkblue)!important;
  text-align:center;
  margin-bottom:15px;
}

.about_top_txt h4:last-child{
  margin-bottom:0;
}

.about_top_txt p{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom: 30px;
  text-align: left;
}

.about_top_txt p:last-of-type{
  margin-bottom:0;
}

.about_top_txt p a{
  color: var(--blue);
}

.about_inr{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  column-gap:60px;
  grid-row-gap: 30px;
  position:relative;
  z-index:9999;
}

.about_inr_itm_img{
  margin-bottom:20px;
}

.about_inr_itm_img img{
  border-radius:20px;
}

.about_inr_itm_cnt h3{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing: 0.72px;
  color:var(--darkblue);
  text-transform: uppercase;
  margin-bottom:10px;
}

.about_inr_itm_cnt h4{
  font-family: 'Poppins';
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--darkblue);
  margin-bottom: 20px;
}

.about_inr_itm_cnt p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--grey);
  margin-bottom:30px;
}

.about_inr_itm_cnt p:last-child{
  margin-bottom:0;
}

.about_inr_itm_cnt p a{
  color:var(--blue);
}

.about_read_btn {
  margin-top:30px;
}

.about_read_btn a{
  display:inline-block;
  border: 1px solid #0E1E40;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  transition:all 0.6s;
  padding:10px 15px;
}

.about_read_btn a:hover{
  background:var(--darkblue);
  color:var(--white);
  border:1px solid transparent;
}

.about_cndt{
  float:left;
  width:100%;
  background: #F8F8F8;
  padding:70px 0;
}

.about_cndt_inr{
  display:flex;
  justify-content:space-between;
  align-items:center;
  column-gap:40px;
  position:relative;
  z-index:9999;
}

.about_cndt_inr_lft{
  width:44%;
}

.about_cndt_inr_rgt{
  width:53%;
}

.about_cndt_img img{
  display:block;
  width:100%;
  border-radius:20px;
}

.about_cndt_inr_rgt h3{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing: 0.72px;
  color:var(--darkblue);
  text-transform: uppercase;
  margin-bottom:10px;
}

.about_cndt_inr_rgt h4{
  font-family: 'Poppins';
  font-size:20px;
  line-height:30px;
  font-weight:400;
  color:var(--darkblue);
  margin-bottom:20px;
}

.about_cndt_inr_rgt p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  margin-bottom:30px;
}

.about_cndt_inr_rgt p:last-of-type{
  margin-bottom:0;
}

.about_cndt_btn{
  margin-top:30px;
}

.about_cndt_btn a{
  display:inline-block;
  border: 1px solid #0E1E40;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  transition:all 0.6s;
  padding:10px 19px;
}

.about_cndt_btn a:hover{
  background:var(--darkblue);
  color:var(--white);
  border:1px solid transparent;
}

.constitution_main{
  float:left;
  width:100%;
  margin:70px 0;
}

.constitution_inr{
  display:flex;
  justify-content:space-between;
  align-items:center;
  column-gap:40px;
  position:relative;
  z-index:9999;
}

.constitution_inr_lft{
  width:53%;
}

.constitution_inr_rgt{
  width:44%;
}

.constitution_itm_img img{
  display:block;
  width:100%;
  border-radius:20px;
}

.constitution_inr_lft h3{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing: 0.72px;
  color:var(--darkblue);
  text-transform: uppercase;
  margin-bottom:10px;
}

.constitution_inr_lft p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  margin-bottom:30px;
}

.constitution_inr_lft p:last-of-type{
  margin-bottom:0;
}

.constitution_read_btn{
  margin-top:30px;
}

.constitution_read_btn a{
  display:inline-block;
  border: 1px solid #0E1E40;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  transition:all 0.6s;
  padding:10px 19px;
}

.constitution_read_btn a:hover{
  background:var(--darkblue);
  color:var(--white);
  border:1px solid transparent;
}

.about_sponsors{
  float:left;
  width:100%;
  padding:70px 0;
  background: #F8F8F8;
  margin-bottom:70px;
}

.about_sponsors h3{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing: 0.72px;
  color:var(--darkblue);
  text-transform: uppercase;
  margin-bottom:30px;
  text-align:center;
}

.about_sponsors_slider .slick-list{
  max-width:862px;
  margin:0 auto;
}

.about_sponsors_slider button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:9999;
  background:transparent;
  cursor:pointer;
}

.about_sponsors_slider button.sponsor_prev_arw{
  left:0;
}

.about_sponsors_slider button.sponsor_nxt_arw{
  right:0;
}

.about_sponsors_sld_itm{
  margin:0 35px;
}

.about_sponsors_slider .slick-track {
  display: flex;
  align-items: center;
}

.abt_spnsr_img img{
  width:100%;
  display:block;
}
/* About Page Css End */

/* The Club Page Css Start */
.the_club_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.the_club_main:before {
  content: '';
  position: absolute;
  top:14%;
  left: -19%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.the_club_top_txt {
  position: relative;
  z-index: 9999;
}

.the_club_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.the_club_cnt{
  position:relative;
  z-index:9999;
  margin-top:30px;
}

.the_club_cnt p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  letter-spacing:0.36px;
  color:var(--grey);
  margin-bottom:30px;
  text-align:left;
}

.the_club_cnt ul{
  padding-left: 20px;
  margin-bottom: 26px;
}

.the_club_cnt ul li{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  list-style: disc;
  margin-bottom: 10px;
}

.the_club_cnt ul li:last-child{
  margin-bottom:0;
}

.the_club_cnt p:last-child{
  margin-bottom:0;
}
/* The Club Page Css End */

/* History Page Css Start */
.the_history_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.the_history_main:before {
  content: '';
  position: absolute;
  top: 121px;
  left: -20%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.the_history_cnt{
  position:relative;
  z-index:9999;
}

.the_history_cnt figure img{
  border-radius:20px;
}

.the_history_cnt p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  letter-spacing:0.36px;
  color:var(--grey);
  margin-bottom:30px;
  text-align:left;
}

.the_history_cnt p strong{
  font-weight:600;
  color:var(--darkblue);
}

.the_history_cnt p:last-child{
  margin-bottom:0;
}

.the_history_cnt ul{
  padding-left: 20px;
  margin-bottom: 26px;
}


.the_history_cnt ul li{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  list-style: disc;
  margin-bottom: 10px;
}

.the_history_cnt ul li::marker{
  color: var(--darkblue);
  padding-right: 10px;
  display: inline-block;
}

.the_history_cnt ul li:last-child{
  margin-bottom:0;
}

.strategic_plan_pdf{
  float:left;
  width:100%;
  margin-bottom:70px;
  position:relative;
  z-index:9999;
}

.strategic_plan_pdf_inr h4{
  font-family: 'Poppins';
  font-size:24px;
  line-height:35px;
  font-weight:600;
  color:var(--darkblue);
  text-transform:uppercase;
  margin-bottom:32px;
}

.strategic_plan_pdf_dwnld a{
  display:flex;
  align-items:center;
  column-gap:15px;
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--darkblue);
}
/* History Page Css End */

/* Sponsors Page Css Start */
.sponsors_pg_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.sponsors_pg_main:before {
  content: '';
  position: absolute;
  top: 121px;
  left: -19%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.sponsors_pg_top_txt {
  position: relative;
  z-index: 9999;
}

.sponsors_pg_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.sponsors_pg_top_txt p{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom: 30px;
  text-align: left;
}

.sponsors_pg_top_txt h2{
  font-family: 'Poppins';
  font-size: 36px;
  line-height: 55px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: var(--darkblue);
  margin-bottom: 20px;
  text-align: center; 
}

.club_patron{
  margin:50px 0;
}

.club_patron h3{
  font-family: 'Poppins';
  font-size:26px;
  line-height:36px;
  font-weight:600;
  letter-spacing:0.72px;
  color:var(--darkblue);
/*  text-transform: uppercase;*/
  margin-bottom:20px;
  text-align:center;
  min-height:108px;
}

.club_patron_inr{
  display:flex;
  justify-content:center;
  column-gap:20px;
  position:relative;
  z-index:9999;
}

.sponsors_sprt_main{
  position:relative;
  z-index:9999;
}

.sponsors_sprt_inr{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap:30px;
  grid-row-gap:30px;
}

.sponsors_sprt_itm img{
  border-radius:20px;
  display:block;
}

.sponsors_sprt_itm p{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-top:15px;
  text-align: center;
}

.sponsors_sprt_main h3{
  font-family: 'Poppins';
  font-size:32px;
  line-height:52px;
  font-weight:700;
  letter-spacing:0.72px;
  color:var(--darkblue);
  margin-bottom:20px;
  text-align:center;
  text-transform:uppercase;
}
/* Sponsors Page Css End */

/* Code Conduct Page Css Start */
.code_cndct_pg_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.code_cndct_pg_main:before {
  content: '';
  position: absolute;
  top:7%;
  left: -18%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.code_cndct_pg_top_txt h3 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight:600;
  letter-spacing: 0.48px;
  color:var(--darkblue);
  text-align: center;
}

.code_cndct_pg_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
  margin:30px 0;
}

.code_cndct_pg_top_txt p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  text-align:center;
}

.code_cndct_pg_dtl{
  position:relative;
  z-index:9999;
}

.code_cndct_pg_dtl h3{
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight:600;
  margin:30px 0 20px;
  color:var(--darkblue);
  text-transform: uppercase;
}

.code_cndct_pg_dtl p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  text-align:left;
  margin-bottom:30px;
}

.code_cndct_pg_dtl ol{
  margin-top:30px;
  padding-left:20px;
  margin-bottom: 30px;
}

.code_cndct_pg_dtl ol li{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  text-align:left;
  margin-bottom:30px;
  list-style:auto;
  padding-left: 15px;
}

.code_cndct_pg_dtl ol  li::marker {
  color:var(--darkblue);
  padding-right:10px;
  display:inline-block;
}

.code_cndct_pg_dtl ol li:last-child{
  margin-bottom:0;
}
/* Code Conduct Page Css End */

/* Constitution Page Css Start */
.constitution_pg_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.constitution_pg_main:before {
  content: '';
  position: absolute;
  top:21%;
  left:-19%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.constitution_pg_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.constitution_pg_dtl{
  position:relative;
  z-index:9999;
  margin-top:30px;
}

.constitution_pg_dtl p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  text-align:left;
  margin-bottom:30px;
}

.constitution_pg_dtl p:last-child{
  margin-bottom:0;
}

.read_constitution_btn{
  margin-top:40px;
  text-align: center;
}

.read_constitution_btn a{
  display:inline-block;
  background:var(--blue);
  border:1px solid transparent;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing:0.36px;
  color:var(--white);
  text-transform:uppercase;
  padding:24px 30px;
  transition:all 0.6s;
}

.read_constitution_btn a:hover{
  background:transparent;
  border:1px solid var(--blue);
  color:var(--blue);
}
/* Constitution Page Css End */

/* Membrships Page Css Start */
.membrs_pg_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.membrs_pg_main:before {
  content: '';
  position: absolute;
  top:21%;
  left:-19%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.membrs_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.membrs_pg_dtl{
  position:relative;
  z-index:9999;
  margin-top:30px;
}

.membrs_pg_dtl p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  text-align:left;
  margin-bottom:30px;
}

.membrs_pg_dtl p strong{
  font-weight:600;
  color:var(--darkblue);
}

.membrs_pg_dtl p:last-child{
  margin-bottom:0;
}

.download_memnership_form{
  float:left;
  width:100%;
  margin-bottom:70px;
  position:relative;
  z-index:9999;
}

.download_memnership_btn{
  display:flex;
  column-gap:5px;
  justify-content:center;
}

.download_memnership_form h3{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  letter-spacing:0.72px;
  color:var(--darkblue);
  text-transform:uppercase;
  margin-bottom:20px;
  font-weight: 600;
  text-align: center;
}

.download_memnership_btn a{
  display:inline-block;
  background:var(--blue);
  border:1px solid transparent;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing:0.36px;
  color:var(--white);
  text-transform:uppercase;
  padding:24px 17px;
  transition:all 0.6s;
}

.download_memnership_btn a:hover{
  background:transparent;
  border:1px solid var(--blue);
  color:var(--blue);
}
/* Membrships Page Css End */

/* Bowls Page Css Start */
.bowls_pg_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.bowls_pg_main:before {
  content: '';
  position: absolute;
  top:21%;
  left:-19%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.bowls_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.bowls_pg_dtl{
  position:relative;
  z-index:9999;
  margin-top:30px;
}

.bowls_pg_dtl h2{
  font-family: 'Poppins';
  font-size: 36px;
  line-height: 55px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: var(--darkblue);
  margin-bottom:15px;
}

.bowls_pg_dtl ul{
  margin-bottom:30px;
  padding-left: 20px;
}

.bowls_pg_dtl ul li{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--grey);
  text-align: left;
  list-style:disc;
  margin-bottom: 10px;
}

.bowls_pg_dtl ul li::marker{
  color: var(--darkblue);
  padding-right: 10px;
  display: inline-block;
}

.bowls_pg_dtl h3{
  font-family: 'Poppins';
  font-size:24px;
  line-height:35px;
  font-weight:600;
  color:var(--darkblue);
  text-transform:uppercase;
  margin-bottom:20px;
}

.bowls_pg_dtl p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  text-align:left;
  margin-bottom:30px;
}

.bowls_pg_dtl p strong{
  font-weight:600;
  color:var(--darkblue);
}

.bowls_pg_dtl p:last-child{
  margin-bottom:0;
}

.bowls_pg_dtl table{
  margin-bottom: 30px;
  width: 100%;
  border-collapse: collapse;
}

.bowls_pg_dtl table tr th {
  background: #016EC9;
  padding: 12px 15px;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0.36px;
  color: var(--white);
  text-align: center;
}

.bowls_pg_dtl table tr td {
  padding: 12px 15px;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--darkblue);
  border: 1px solid #A8A8A8;
  text-align: center;
}

.application_frm_btn{
  margin-top:30px;
}

.application_frm_btn a{
  display: inline-block;
  background: var(--blue);
  border: 1px solid transparent;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 0.36px;
  color: var(--white);
  text-transform: uppercase;
  padding: 24px 41px;
  transition: all 0.6s;
}

.application_frm_btn a:hover {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
}

.bowls_club_rslt_main{
  float:left;
  width:100%;
  padding:70px 0;
  background: #F8F8F8;
}

.bowls_club_rslt_main h3{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing:0.72px;
  color:var(--darkblue);
  text-transform:uppercase;
  margin-bottom:30px;
  text-align:center;
  position:relative;
  z-index:9999;
}

.bowls_club_rslt_slider{
  margin:0 -15px;
}

.bowls_club_rslt_slider .slick-track{
  display:flex;
}

.bowls_club_rslt_slider .bowls_club_rslt_itm{
  margin:0 15px;
}

.bowls_club_rslt_slider .bowls_club_rslt_itm{
  margin:0 15px;
}

.bowls_club_rslt_img{
  margin-bottom:15px;
}

.bowls_club_rslt_img img{
  display:block;
  border-radius:20px;
  width: 100%;
}

.bowls_club_rslt_itm p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  text-transform:uppercase;
  color:var(--grey);
  text-align:center;
}

.bowls_club_rslt_slider button{
  position:absolute;
  top:45%;
  transform:translateY(-45%);
  z-index:9999;
  background:transparent;
  cursor:pointer;
}

.bowls_club_rslt_slider button.bowls_club_prv_arw{
  left:-70px;
}

.bowls_club_rslt_slider button.bowls_club_nxt_arw{
  right:-70px;
}

.bowls_club_view{
  text-align:center;
  margin-top:40px;
  position:relative;
  z-index:9999;
}

.bowls_club_view a{
  display:inline-block;
  padding:10px 33px;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing:0.36px;
  color:var(--darkblue);
  border:1px solid var(--darkblue);
  transition:all 0.6s;
}

.bowls_club_view a:hover{
  background:var(--darkblue);
  color:var(--white);
  border:1px solid var(--darkblue);
}

.bowls_category_main{
  float:left;
  width:100%;
  margin:70px 0;
}

.bowls_category_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  position: relative;
  z-index: 9999;
}

.bowls_category_row:nth-child(even){
  flex-direction:row-reverse;
  margin:70px 0;
}

.bowls_category_row:last-child{
  margin-bottom:0;
}

.bwl_ctgry_rw_lft {
  width: 44%;
}

.bwl_ctgry_rw_rgt {
  width: 53%;
}

.bwl_ctgry_rw_lft img{
  width:100%;
  border-radius:20px;
}

.bwl_ctgry_rw_rgt h3 {
  font-family: 'Poppins';
  font-size: 36px;
  line-height: 55px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: var(--darkblue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bwl_ctgry_rw_rgt p {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom: 30px;
}

.bwl_ctgry_read_btn {
  margin-top: 30px;
}

.bwl_ctgry_read_btn a {
  display: inline-block;
  border: 1px solid #0E1E40;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 0.36px;
  color: var(--darkblue);
  transition: all 0.6s;
  padding: 10px 19px;
}

.bwl_ctgry_read_btn a:hover {
  background: var(--darkblue);
  color: var(--white);
  border: 1px solid transparent;
}

.pennants_prgrm_main{
  float:left;
  width:100%;
  padding:70px 0px;
  background:#F8F8F8;
  margin-bottom: 70px;
}

.pnnts_prgrm_top h3 {
  font-family: 'Poppins';
  font-size: 36px;
  line-height: 55px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: var(--darkblue);
  text-transform: uppercase;
  margin-bottom:20px;
  text-align:center;
}

.pnnts_prgrm_top p {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--grey);
  text-align:center;
}

.pnnts_prgrm_table{
  margin-top:30px;
}

.pnnts_prgrm_table table{
  width:100%;
  border-collapse:collapse;
}

.pnnts_prgrm_table table tr th{
  background: #016EC9;
  padding:12px 15px;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight:600;
  letter-spacing:0.36px;
  color:var(--white);
  text-align: center;
}

.pnnts_prgrm_table table tr td{  
  padding:12px 15px;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--darkblue);
  border:1px solid #A8A8A8;
  text-align:center;
}

.pnnts_prgrm_view_btn{
  margin-top:30px;
  text-align:center;
}

.pnnts_prgrm_view_btn a{
  display: inline-block;
  border: 1px solid #0E1E40;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 0.36px;
  color: var(--darkblue);
  transition: all 0.6s;
  padding:10px 33px;
}

.pnnts_prgrm_view_btn a:hover {
  background: var(--darkblue);
  color: var(--white);
  border: 1px solid transparent;
}
/* Bowls Page Css End */

/* Club Results Page Css Start */
.clb_rslts_pg_main{
  float:left;
  width:100%;
  padding:40px 0 70px;
  position:relative;
}

.clb_rslts_pg_main.office_bearers_images{
  padding-top:0;
}

.clb_rslts_pg_main.office_bearers_images .clb_rslts_row_main{
  margin-top:0;
}

.clb_rslts_pg_main:before {
  content: '';
  position: absolute;
  top:132px;
  left:-19%;
  /*background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;*/
  background-repeat: no-repeat;
  background-size: contain;
}

.clb_rslts_pg_top_txt{
  position:relative;
  z-index:9999;
}

.clb_rslts_pg_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.clb_rslts_row_main{
  position:relative;
  z-index:9999;
  margin-top:30px;
}

.clb_rslts_rw_inr{
  display:flex;
/*  display: grid;*/
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  grid-row-gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.clb_rslts_rw_itm {
  width: calc(100% / 3 - 20px);
  flex-wrap: wrap;
  justify-content: center;
}

.office_bearers_images .clb_rslts_rw_inr{
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  grid-row-gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.office_bearers_images .clb_rslts_rw_itm {
  width: calc(100% / 3 - 20px);
}

.clb_rslts_rw{
  margin-bottom:70px;
}

.clb_rslts_rw:last-child{
  margin-bottom:0px;
}

.clb_rslts_rw_itm_img{
  margin-bottom:15px;
}

.clb_rslts_rw_itm_img img{
  width:100%;
  display:block;
  border-radius:20px;
}

.office_bearers_images h2{
  font-family: 'Poppins';
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  letter-spacing: 1.04px;
  color: var(--darkblue);
  text-transform: uppercase;
  text-align:center;
}

.clb_rslts_rw_itm p{
  font-family: 'Poppins';
  font-size: 17px;
  line-height: 27px;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
}
.clb_rslts_rw_itm p:last-child{margin-bottom:0;}

.clb_rslts_rw_tp h3{
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight:600;
  color:var(--darkblue);
  margin-bottom:20px;
}

.clb_rslts_rw_tp p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  margin-bottom:30px;
}

.clb_rslts_rw_tp p:last-child{
  margin-bottom:0;
}

.clb_rslts_rw_tp p strong{
  color:var(--darkblue);
  font-weight:600;
}

.mens_event_slider {
  margin: 0 -15px;
}

.mens_event_slider button.bowls_club_prv_arw {
  left: -70px;
}

.mens_event_slider button.bowls_club_nxt_arw {
  right: -70px;
}
.mens_event_slider button {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  z-index: 9999;
  background: transparent;
  cursor: pointer;
}

.mens_bowls_event{
  margin-bottom:70px;
}
/* Club Results Page Css End */

/* Club Programmes Page Css Start */
.clb_program_main{
  float: left;
  width: 100%;
  padding: 40px 0 70px;
  position: relative;
}

.clb_program_main:before {
  content: '';
  position: absolute;
  top: 140px;
  left: -18%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.clb_program_top_txt{
  position:relative;
  z-index:9999;
}

.clb_program_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.clb_program_inr{
  position:relative;
  z-index:9999;
  margin-top:30px;
}

.clb_program_inr figure img{
  width:100%;
}

.clb_program_inr h3{
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight:600;
  color:var(--darkblue);
  text-align: left;
  margin-bottom:20px;
}

.clb_program_inr p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  margin-bottom:20px;
}

.clb_program_inr p img{
  display:block;
  width:100%;
  margin-bottom:30px;
}

.clb_program_divisn{
  float:left;
  width:100%;
  background: #F8F8F8;
  padding:70px 0;
}

.clb_program_divisn_itm{
  margin-bottom:70px;
}

.clb_program_divisn_itm:last-child{
  margin-bottom:0px;
}

.clb_program_divisn_itm h3{
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight:600;
  color:var(--darkblue);
  text-align: left;
  margin-bottom:20px;
}

.clb_program_divisn_itm p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  margin-bottom:30px;
}

.clb_program_divisn_itm table{
  margin-bottom:30px;
  width: 100%;
  border-collapse: collapse;
}

.clb_program_divisn_itm table tr th {
  background: #016EC9;
  padding: 12px 15px;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0.36px;
  color: var(--white);
  text-align:center;
}

.clb_program_divisn_itm table tr td {
  padding: 12px 15px;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--darkblue);
  border: 1px solid #A8A8A8;
  text-align: center;
}

.clb_program_pdf_dwnld a{
  display:flex;
  align-items:center;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  column-gap:15px;
}

.clb_program_dtl{
  float:left;
  width:100%;
  padding:70px 0;
}

.clb_program_cnt h3{
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  color: var(--darkblue);
  text-align: left;
  margin-bottom: 20px;
}

.clb_program_cnt p{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom: 20px;
}

.clb_program_cnt p img {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.clb_program_cnt p:last-child img, .clb_program_cnt p:last-child{
  margin-bottom:0;
}
/* Club Programmes Page Css End */

/* Functions Page Css Start */
/* Club Programmes Page Css Start */
.functions_pg_main{
  float: left;
  width: 100%;
  padding: 40px 0 70px;
  position: relative;
}

.functions_pg_main:before {
  content: '';
  position: absolute;
  top: 140px;
  left: -18%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.functions_pg_top_txt{
  position:relative;
  z-index:9999;
}

.functions_pg_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.functions_pg_top_txt h4 a{
  color:var(--darkblue);
}

.functions_pg_top_txt p, .functions_pg_bottom_txt p{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom: 30px;
  text-align: left;
}

.functions_pg_top_txt p strong{
  color:var(--darkblue);
}

.functions_pg_top_txt ul{
  padding-left:20px;
}

.functions_pg_top_txt ul li{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom:10px;
  text-align: left;
  list-style:disc;
}

.functions_pg_top_txt ul li::marker {
  color: var(--darkblue);
  padding-right: 10px;
  display: inline-block;
}

.functions_pg_inr{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap:30px;
  grid-row-gap:40px;
  margin-top:40px;
  margin-bottom:40px;
  position: relative;
  z-index: 999;
}

.fnction_itm_img img{
  width:100%;
  display:block;
  border-radius:20px;
}

.supported_city{
  float:left;
  width:100%;
  padding:70px 0;
  background: #F8F8F8;
}

.supported_city h3{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  font-weight:600;
  letter-spacing:0.72px;
  color:var(--darkblue);
  text-transform:uppercase;
  margin-bottom:30px;
}

.supported_city_row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  column-gap:40px;
  margin-bottom:30px;
}

.supported_city_row:nth-child(even){
  flex-direction:row-reverse;
}

.supported_city_row:last-child{
  margin-bottom:0;
}

.supported_city_rw_lft{
  width:35%;
}

.supported_city_rw_rgt{
  width:62%;
}

.sprtd_city_img img{
  width:100%;
  display:block;
  border-radius:20px;
}

.supported_city_rw_rgt img{
  display:block;
  margin-bottom:30px;
}

.supported_city_rw_rgt p{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom:30px;
}

.supported_city_rw_rgt p:last-child{margin-bottom:0;}
/* Functions Page Css End */

/* Latest News Page Css Start */
.ltst_news_pg_main{
  float: left;
  width: 100%;
  padding: 40px 0 100px;
  position: relative;
}

.ltst_news_pg_main:before {
  content: '';
  position: absolute;
  top:136px;
  left: -19%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.ltst_news_pg_top_txt{
  position:relative;
  z-index:9999;
}

.ltst_news_pg_top_txt h2{
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 38px;
  line-height: 48px;
  color: var(--darkblue);
  margin-bottom: 30px;
}

.ltst_news_pg_top_txt p {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom: 30px;
  text-align: left;
}

.ltst_news_pg_top_txt h4 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  text-align: center;
}

.ltst_news_pg_inr{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap:30px;
  grid-row-gap:40px;
  margin-top:30px;
  position:relative;
  z-index:9999;
}

.ltst_news_pg_inr_itm a{
  display:inline-block;
  border: 1px solid #0E1E40;
  border-radius: 20px;
  background: #FFFFFF;
  padding:30px 30px;
  width: 100%;
}

.ltst_news_pg_inr_itm_top span{
  display:inline-block;
  font-family: 'Poppins';
  font-size:16px;
  line-height:25px;
  font-weight:400;
  color:var(--grey);
  text-transform:uppercase;
  margin-bottom:10px;
}

.ltst_news_pg_inr_itm_top h2{
  font-family: 'Poppins';
  font-size:24px;
  line-height:35px;
  font-weight:600;
  color:var(--darkblue);
  margin-bottom:20px;
  min-height: 140px;
}

.ltst_news_pg_inr_itm_top p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing:0.36px;
  color:var(--grey);
  min-height:160px;
}

.ltst_news_pg_inr_itm_btm{
  margin-top:70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.ltst_nws_cat{
  display:inline-block;
  padding:4px 10px;
  font-family: 'Poppins';
  font-size:12px;
  line-height:18px;
  font-weight:600;
  letter-spacing:0.24px;
  color:var(--darkblue);
  text-transform:uppercase;
  background: #FFE5E5;
  border-radius: 15px;
}

.ltst_nws_cat_lgt_green{
  display:inline-block;
  padding:4px 10px;
  font-family: 'Poppins';
  font-size:12px;
  line-height:18px;
  font-weight:600;
  letter-spacing:0.24px;
  color:var(--darkblue);
  text-transform:uppercase;
  border-radius: 15px;
  background:#EBFFCE;
}

.ltst_nws_cat_lgt_pnk{
  display:inline-block;
  padding:4px 10px;
  font-family: 'Poppins';
  font-size:12px;
  line-height:18px;
  font-weight:600;
  letter-spacing:0.24px;
  color:var(--darkblue);
  text-transform:uppercase;
  border-radius: 15px;
  background:#FFE5FC;
}

.ltst_news_pg_inr_itm_btm span.ltst_nws_read{
  font-family: 'Poppins';
  font-size:16px;
  line-height:25px;
  font-weight:500;
  color:var(--blue);
  text-transform:uppercase;
  transition:all 0.6s;
}

.ltst_news_pg_inr_itm_btm span.ltst_nws_read:hover{
  color:var(--darkblue);
}

.ltst_news_loader{
  margin-top:100px;
  text-align:center;
}

.ltst_news_loader img{
  display:block;
  margin:0 auto;
}
/* Latest News Page Css End */

/* Latest News Details Page Css Start */
.ltst_news_dtl_main{
  float:left;
  width:100%;
  position:relative;
  padding:40px 0 70px;
}

.ltst_news_dtl_main:before {
  content: '';
  position: absolute;
  top:136px;
  left: -19%;
  background: url(../img/bowling-ball-2.png);
  width: 1200px;
  height: 1200px;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: contain;
}

.ltst_news_dtl_inr{
  position:relative;
  z-index:9999;
  max-width:960px;
  margin:0 auto;
}

.ltst_news_dtl_top{
  display:flex;
  column-gap:20px;
  margin-bottom:30px;
}

.ltst_news_dtl_top span.ltst_nws_date{
  font-family: 'Poppins';
  font-size:16px;
  line-height:25px;
  font-weight:400;
  color:var(--grey);
  text-transform: uppercase;
}

.ltst_news_dtl_cnt h2{
  font-family: 'Poppins';
  font-size:24px;
  line-height:35px;
  font-weight:600;
  color:var(--darkblue);
  margin-bottom:20px;
}

.ltst_news_dtl_cnt p{
  font-family: 'Poppins';
  font-size:18px;
  line-height:30px;
  font-weight:400;
  letter-spacing: 0.36px;
  color:var(--grey);
  margin-bottom:30px;
}

.ltst_news_dtl_two_clm{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  column-gap:40px;
  grid-row-gap:40px;
  margin-bottom:40px;
}

.ltst_news_dtl_two_clm_itm img{
  width:100%;
  display:block;
  border-radius:20px;
}

.ltst_news_dtl_three_clm{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap:30px;
  grid-row-gap:40px;
}

.ltst_news_dtl_three_clm_itm img{
  width:100%;
  display:block;
  border-radius:20px;
}

.ltst_news_pagination_btn {
  margin-top:70px;
  display: flex;
  justify-content: space-between;
}

.ltst_news_pagination_btn .ltst_news_prev {
  display: flex;
  column-gap: 10px;
  justify-content: flex-start;
  width: 100%;
}

.ltst_news_pagination_btn .ltst_news_next {
  display: flex;
  column-gap: 10px;
  justify-content: flex-end;
  width: 100%;
}

.ltst_news_pagination_btn .ltst_news_prev a{
  justify-content:flex-start;
}

.ltst_news_pagination_btn .ltst_news_next a{
  justify-content:flex-end;
}

.ltst_news_pagination_btn .ltst_news_prev{
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding:16px 20px 16px;
  border: 1px solid #0E1E40;
  font-family: 'Poppins';
  font-size: 18px;
  line-height:27px;
  font-weight: 600;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--darkblue);
  min-width: 160px;
  justify-content: center;
  transition: all 0.5s;
}

.ltst_news_pagination_btn .ltst_news_next{
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding:16px 20px 16px;
  border: 1px solid #0E1E40;
  font-family: 'Poppins';
  font-size: 18px;
  line-height:27px;
  font-weight: 600;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--darkblue);
  min-width: 160px;
  justify-content: center;
  transition: all 0.5s;
}

.ltst_news_pagination_btn a i{
  font-size: 18px;
  line-height:27px;
}

.ltst_news_pagination_btn .ltst_news_next.active, .ltst_news_pagination_btn .ltst_news_prev.active{
  background: var(--darkblue);
  border: 1px solid transparent;
  color: var(--white);
}

.ltst_news_pagination_btn .ltst_news_next:hover, .ltst_news_pagination_btn .ltst_news_prev:hover{
  background: var(--darkblue);
  border: 1px solid transparent;
  color: var(--white);
}
/* Latest News Details Page Css End */

/* 404 Page Css Start */
.error_main{
  float:left;
  width:100%;
  background:#F8F8F8;
  padding:125px 0;
  position:relative;
  overflow: hidden;
}

.error_main:before {
  content: '';
  position: absolute;
  top:0;
  left:-9%;
  background: url(../img/404_bowling_shape_ball.png);
  width:888px;
  height:885px;
  background-repeat: no-repeat;
  background-size: contain;
}

.error_inr{
  max-width:560px;
  margin:0 auto;
}

.error_inr h1{
  font-family: 'Poppins';
  font-size:250px;
  line-height:222px;
  text-align:center;
  font-weight:600;
  color:var(--darkblue);
  margin-bottom:15px;
}

.error_inr h2{
  font-family: 'Poppins';
  font-size:60px;
  line-height:70px;
  font-weight:600;
  color:var(--blue);
  text-align:center;
  margin-bottom:15px;
  letter-spacing:1.04px;
}

.error_inr p{
  font-family: 'Poppins';
  font-size:24px;
  line-height:35px;
  font-weight:400;
  letter-spacing: 0.48px;
  color:var(--darkblue);
  text-align:center;
}

.back_btn{
  margin-top:30px;
  text-align: center;
}

.back_btn a{
  display:inline-block;
  padding:16px 25px;
  font-family: 'Poppins';
  font-size:18px;
  line-height:27px;
  font-weight:500;
  letter-spacing:0.36px;
  color:var(--darkblue);
  border:1px solid var(--darkblue);
  text-transform:uppercase;
  transition:all 0.6s;
}

.back_btn a:hover{
  background:var(--darkblue);
  border:1px solid transparent;
  color:var(--white);
}
/* 404 Page Css End */

/* Thankyou Page Css Start */
.thanks_main{
  float:left;
  width:100%;
  background:#F8F8F8;
  padding:172px 0;
  position:relative;
  overflow: hidden;
}

.thanks_main:before {
  content: '';
  position: absolute;
  top:0;
  left:-9%;
  background: url(../img/404_bowling_shape_ball.png);
  width:888px;
  height:885px;
  background-repeat: no-repeat;
  background-size: contain;
}


.thanks_inr{
  max-width:900px;
  margin:0 auto;
}

.thanks_inr h1{
  font-family: 'Poppins';
  font-size:140px;
  line-height:160px;
  font-weight:600;
  color:var(--darkblue);
  margin-bottom:15px;
  letter-spacing:0.36px;
  color:var(--blue);
  text-align:center;
}

.thanks_inr p{
  font-family: 'Poppins';
  font-size:24px;
  line-height:35px;
  font-weight:400;
  letter-spacing: 0.48px;
  color:var(--darkblue);
  text-align:center;
  margin-bottom:30px;
}

.thanks_inr p a{
  color:var(--darkblue);
  text-decoration: underline;
}

.thanks_inr p:last-child{
  margin-bottom:0;
}
/* Thankyou Page Css End */

.mobile_contact_info{
  margin-top:40px;
}

.mobile_contact_info ul li {
  margin-bottom: 20px;
}

.mobile_contact_info ul li span{
  display:block;
  font-family: 'Poppins';
  font-size:22px;
  line-height:34px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--white);
  margin-bottom:10px;
}

.mobile_contact_info ul li p {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--white);
}

.mobile_contact_info ul li a {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--white);
  text-decoration: underline;
}

.mobile_contact_info ul li a.get_direction {
  color: var(--blue);
}

.mobile_social{
  margin-top:30px;
}

.mobile_social ul{
  display:flex;
  column-gap:20px;
}

.wpcf7-spinner, .wpcf7-response-output{
  display: none;
}

.wpcf7-not-valid-tip{
 font-family: 'Poppins';
 font-size:16px;
 text-align:right;
}

/* Cms Page Css Start */
.cms_dtl_main{
  float: left;
  width: 100%;
  padding: 40px 0 40px;
  position: relative;
}

.blog_dtl_inr h2 {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 38px;
  line-height:48px;
  color: var(--darkblue);
  margin-bottom: 30px;
}

.blog_dtl_inr h3 {
  font-family: 'Poppins';
  font-size: 34px;
  line-height:44px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: var(--darkblue);  
  margin-bottom:30px;
}

.blog_dtl_inr h4{
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.48px;
  color:#0E1E40;
  margin-bottom:30px;
}

.blog_dtl_inr p {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--grey);
  margin-bottom: 30px;
  text-align: left;
}

.blog_dtl_inr p strong{
  color:var(--darkblue);
}

.blog_dtl_inr p a{
  color: var(--blue);
}

.blog_dtl_inr ul{
  margin-bottom:30px;
  padding-left:20px;
}

.blog_dtl_inr ul li{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--grey);
  text-align: left;
  margin-bottom:10px;
  list-style:disc;
}

.blog_dtl_inr ul li::marker{
  color: var(--darkblue);
  padding-right: 10px;
  display: inline-block;
}

.cms_dtl_main .blog_dtl_inr table tr td{
  padding: 12px 15px;
  font-family: 'Poppins';
  font-size: 18px;
  line-height:28px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--darkblue);
  border: 1px solid #A8A8A8;
  text-align: center;
}

.cms_dtl_main .blog_dtl_inr table tr td p{
  color: var(--darkblue);
  margin-bottom:0;
}

.cms_dtl_main .blog_dtl_inr table tr:first-child td{
  background: #016EC9;
  padding: 12px 15px;
  font-family: 'Poppins';
  letter-spacing: 0.36px;
  color: var(--white);
  text-align: center;
  border:0;
  vertical-align: middle;
}

.cms_dtl_main .blog_dtl_inr table tr:nth-child(2) td{
  background:var(--darkblue);
  padding: 12px 15px;
  font-family: 'Poppins';
  letter-spacing: 0.36px;
  color: var(--white);
  text-align: center;
  border-top:0;
  vertical-align: middle;
}

.cms_dtl_main .blog_dtl_inr table td h3{
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
  margin-bottom: 0;
}

.cms_dtl_main .blog_dtl_inr table td h4{
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 0;
}
/* Cms Page Css End */

/* Whats On Calender Design Start */
/* Evewnt Calendar Css Start  */

/*.evo_j_container{
  padding:20px 0 !important;
  margin-bottom: 20px !important;
}

.eventon_events_list {
  display:flex;
  column-gap:40px;
}

.ajde_evcal_calendar .calendar_header .evo_j_dates .legend a{
  background:var(--blue) !important;
  padding:5px 10px !important;
  color:var(--white) !important;
  font-family: 'Poppins' !important;
  font-size:12px !important;
  line-height:18px !important;
  text-transform: uppercase !important;
  font-weight:500 !important;
  border-radius: 15px !important;
  margin:0 !important;
   border:1px solid transparent !important;
   transition:all 0.6s !important;
}

.ajde_evcal_calendar .calendar_header .evo_j_dates .legend a.set{
  background:transparent !important;
  color:#0E1E40 !important;
  border:1px solid #0E1E40 !important;
}

.ajde_evcal_calendar .calendar_header .evo_j_dates .legend a:hover {
  opacity:1 !important;
  background:transparent !important;
  color:#0E1E40 !important;
  border:1px solid #0E1E40 !important;
}

.ajde_evcal_calendar .calendar_header .evo_j_months.evo_j_dates {
    margin-bottom: 25px !important;
}

.featured_main .evo_cal_above{
  display:flex;
  justify-content:center;
  column-gap:15px;
}

.evo_cal_above span{
   background:var(--blue) !important;
  padding:5px 10px !important;
  color:var(--white) !important;
  font-family: 'Poppins' !important;
  font-size:12px !important;
  line-height:18px !important;
  text-transform: uppercase !important;
  font-weight:500 !important;
  border-radius: 15px !important;
  margin:0 !important;
}

.ajde_evcal_calendar .calendar_header .evo_j_dates .legend{
  display:flex;
  justify-content:center;
  flex-wrap: wrap;
  grid-row-gap:10px;
  column-gap:10px;
}

.featured_main .evo_cal_above_content .legend a{
  margin:0;
}

.featured_main .evo_header_title .evo_month_title{
  font-family: 'Poppins' !important;
  font-size: 36px !important;
  line-height:46px !important;
  font-weight: 600 !important;
  letter-spacing: 0.72px !important;
  color: var(--darkblue) !important;
  text-transform: uppercase !important;  
}


.event_calendar_inr{
  max-width:1400px;
  margin:0 auto;
}

.eventon_events_list {
  border:0 !important;
}

.eventon_events_list .eventon_list_event{
  margin:0 20px !important;
  background:#ffffff !important;
}

.eventon_events_list .eventon_list_event{
  border: 1px solid #0E1E40 !important;
  border-radius: 15px !important;
  padding:20px 20px 30px !important;
}

.eventon_events_list .eventon_list_event a{
  padding:0 !important;
  min-height:initial !important;
  display:block !important;
  border-left-width:0 !important;
}

.eventon_events_list .eventon_list_event a:hover{
  background-color:#ffffff !important;
  border-left-width:0 !important;
}

.ajde_evcal_calendar.esty_5 .eventon_list_event .evcal_list_a:hover{
  background-color:#ffffff !important;
}

.eventon_events_list .eventon_list_event a span.evo_start {
  display:flex !important;
  column-gap:5px !important;
  align-items:center;
}

.eventon_events_list .eventon_list_event a span.evo_start em.date{
  font-family: 'Poppins' !important;
  font-size:24px !important;
  line-height:35px !important;
  color:var(--blue) !important;
  font-weight:600 !important;
}

.eventon_events_list .eventon_list_event a span.evo_start em.month{
  font-family: 'Poppins' !important;
  font-size:16px !important;
  line-height:25px !important;
  color:var(--blue) !important;
  font-weight:500 !important;
}

.eventon_events_list .eventon_list_event a .evoet_title{
  font-family: 'Poppins' !important;
  font-size:20px !important;
  line-height:30px !important;
  letter-spacing: 0.4px !important;
  color: #0E1E40 !important;
  font-weight:600 !important;
  min-height:71px;
  padding-bottom: 10px !important;
  border-bottom: 1px solid #A8A8A8;
  text-transform: initial !important;
  margin-top: 20px;
}
a.desc_trig.gmaponload.evo_social.sin_val.evcal_list_a {
  background-color: transparent !important;
}

a.desc_trig.gmaponload.evo_social.sin_val.evcal_list_a:focus{
  outline:initial !important;
}

.eventon_events_list .evoet_time_expand {
  display:block !important;
  margin-bottom:0 !important;
  padding-bottom:0 !important;
}

#evcal_list p.desc_trig_outter{
  border-bottom:0 !important;
}

#evcal_list p.desc_trig_outter .evcal_desc.evo_info {
  margin-right:0 !important;
}

.eventon_events_list .event_description{
  border:0 !important;
}

.eventon_events_list .event_description .evocard_row{
  padding:0 !important;
}

.eventon_events_list{
  overflow:initial !important;
}

.eventon_events_list button{
  position:absolute;
  background:transparent;
  top:50%;
  transform:translateY(-50%);
  padding:0;
}

.eventon_events_list button img{
  max-width:28px;
}

.eventon_events_list button:focus{
  box-shadow:initial;
}

.eventon_events_list button.calnd_nxt_arw{
  right:-50px;
}

.eventon_events_list button.calnd_prv_arw{
  left:-50px;
}

.eventon_events_list .event_description{
  padding-top:15px !important;
}

.eventon_events_list .event_description .evo_metarow_time, 
.eventon_events_list .event_description .evo_metarow_time_location,
.eventon_events_list .event_description .evo_metarow_ICS {
  padding:0 !important;
}

.eventon_events_list .event_description .evocard_row{
  margin-bottom:15px;
}

.eventon_events_list .event_description .evocard_row:last-child{
  margin-bottom:0 !important;
}

.eventon_events_list .event_description .evocard_box{
  background-color:transparent !important;
  border-radius:0 !important;
  overflow:initial !important;
}

.eventon_events_list .event_description .evocard_box .evo_h3{
  font-family: 'Poppins' !important;
  font-size:16px !important;
  line-height:20px !important;
  color:#A8A8A8 !important;
  font-weight:400 !important;
  padding-bottom:5px !important;
}

.eventon_events_list .event_description .evocard_box p .evo_eventcard_time_t{
  font-family: 'Poppins' !important;
  font-size:16px !important;
  line-height:25px !important;
  color:#0E1E40 !important;
  font-weight:400 !important;
  min-height: 50px;
}

.eventon_events_list .event_description .evo_metarow_time .evcal_evdata_icons i, 
.eventon_events_list .event_description .evo_metarow_time_location .evcal_evdata_icons i, 
.eventon_events_list .event_description .evo_metarow_ICS .evcal_evdata_icons i{
  color:#A8A8A8 !important;
}

.eventon_events_list .event_description .evo_metarow_ICS p{
  display:flex !important;
    column-gap:20px;
}

.eventon_events_list .event_description .evo_metarow_ICS p a {
  font-family: 'Poppins' !important;
  font-size:16px !important;
  line-height:25px !important;
  color:#A8A8A8 !important;
  font-weight:400 !important;
  text-decoration:underline !important;
  text-transform:initial !important;
  margin-top:0 !important;
}

.eventon_events_list .event_description .evo_card_row_end{
  display:none !important;
}

.eventon_events_list .evcal_event_types{
  position: absolute;
  top: 8px;
  right: 0;
  display:block !important;
  text-align:right;
}

.eventon_events_list .evcal_event_types em{
  color:#A8A8A8 !important;
}

.eventon_events_list .evcal_event_types em i{
  font-family: 'Poppins' !important;
  font-size:12px !important;
  line-height:18px !important;
  color:#A8A8A8 !important;
  font-weight:400 !important;
  font-style: normal;
}

.eventon_events_list .evcal_event_types em:nth-child(1){display:block;}

.eventon_events_list .evcal_event_types em:nth-child(2){
  background: #FFE5E5;
  border-radius: 15px;
  font-family: 'Poppins' !important;
  font-size: 12px;
  line-height: 18px;
  color: #0E1E40 !important;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.24px;
  margin-top: 5px !important;
  display: inline-block;;
}

.eventon_events_list .slick-dots{
  display: none !important;
}

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

.ajde_evcal_calendar .calendar_header .evo_header_title{
  display:none !important;
}

.eventon_events_list p.no_events{
  font-family: 'Poppins' !important;
  font-size: 18px !important;
}

.eventon_events_list .evoet_subtitle .evcal_event_subtitle{
  font-family: 'Poppins' !important;
  font-size: 16px !important;
  line-height: 22px !important;
  letter-spacing: 0.4px !important;
  color: #0E1E40 !important;
  font-weight: 600 !important;
  margin-top: 15px !important;
  text-transform: initial !important;
}*/
/* Evewnt Calendar Css End  */
/* Whats On Calender Design End */


/*Sitemap Css Start */
.sitemap_pg{
  width:100%;
  margin-bottom:70px;
}

.sitemap_pg .sitemap-nav-list li{
  margin-bottom:20px;
}

.sitemap_pg .sitemap-nav-list li:last-child{
  margin-bottom:0px;
}

.sitemap_pg .sitemap-nav-list li a{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color:var(--darkblue);
  transition: all 0.5s;
}

.sitemap_pg .sitemap-nav-list li .sub-menu li{
  list-style:disc;
}

.sitemap_pg .sitemap-nav-list li .sub-menu li .sub-menu li a{
  font-weight:400;
}

.sitemap_pg .sitemap-nav-list li a:hover{
  color:var(--blue);
}

.sitemap_pg .sitemap-nav-list li .sub-menu{
  opacity:1;
  visibility:visible;
  display:block;
  position:initial;
  min-width:initial;
  background:transparent;
  padding:0;
  margin-left:30px;
}

.sitemap_pg .sitemap-nav-list li .sub-menu li{
  margin-bottom:10px;
}

.sitemap_pg .sitemap-nav-list li .sub-menu li a{
  font-size: 16px;
  line-height: 20px;
  color: var(--grey);
}
/*Sitemap Css Ends */

.mens_bowls_event_inr{
  display: grid;
  grid-row-gap:30px;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}
/* Venue Page Img Lightbox Css Start */
.magnific-img img {
  width: 100%;
  height: auto;
}

.magnific-img {
  display: inline-block;
  width: 32.3%;
}
a.image-popup-vertical-fit {
  cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
  border-right: none !important;
}
.mfp-arrow-right:before {
  border-left: none !important;
}

.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
  opacity: 1 !important;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  z-index: 99999999;
  background: #000;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur{
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom-out-cur .mfp-image-holder s.mfp-close {
    cursor:pointer;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity:1;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; 
}
.mfp-arrow:after {
  top: 8px;
}
.mfp-arrow:before {
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  content:'\f053';
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  font-size:36px;
  color:#ffffff;
}
.mfp-arrow-left:before {
  margin-left: 25px;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
/*  border-left: 17px solid #FFF;*/
  margin-left: 39px;
  content:'\f054';
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  font-size:36px;
  color:#ffffff;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
/* Venue Page Img Lightbox Css End */

/* 19-05-2025 Css Start */
.featured_clnd_event{
  position: relative;
  z-index: 99999;
}

.featured_clnd_event_inr{
  display:flex;
  column-gap:50px;
}

.featured_clnd_event_inr_lft{
  width:50%;
}

.featured_clnd_event_inr_lft h2 {
  font-size: 36px;
  line-height: 55px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: var(--darkblue);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.featured_clnd_event_inr_lft p{
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color:var(--darkblue);
  text-align: justify;
  margin-bottom:30px;
}

.featured_clnd_event_inr_lft p:last-of-type{
  margin-bottom:0px;
}

.featured_clnd_event_inr_lft ul{
  margin-bottom:30px;
  padding-left:20px;
}

.featured_clnd_event_inr_lft ul li {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--darkblue);
  list-style: disc;
  margin-bottom: 10px;
  text-align:justify;
}

.featured_clnd_event_inr_rgt{
  width:50%;
  background: #F8F8F8;
  padding:20px;
  border-radius: 20px;
}

.featured_clnd_event_inr_rgt_top h2{
  font-family: 'Poppins';
  font-size:36px;
  line-height:55px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--darkblue);
  text-align: left;
  margin-bottom: 30px;
}

.featured_clnd_event_inr_rgt .evo_cal_above {
  display: flex;
  justify-content: flex-start;
  column-gap: 15px;
}

.featured_clnd_event_inr_rgt .evo_cal_above span {
  background: var(--blue) !important;
  padding: 5px 10px !important;
  color: var(--white) !important;
  font-family: 'Poppins' !important;
  font-size: 12px !important;
  line-height: 18px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 15px !important;
  margin: 0 !important;
}

.featured_clnd_event_inr_rgt .eventon_events_list{
  height: 450px;
  overflow-y: auto !important;
}

.evo_j_container {
  padding: 20px 0 !important;
}
.ajde_evcal_calendar .calendar_header .evo_j_months.evo_j_dates {
  margin-bottom: 25px !important;
}

.ajde_evcal_calendar .eventon_events_list .desc_trig_outter a {
  border:0 !important;
  padding:0;
}
.ajde_evcal_calendar .eventon_events_list{
  border:0 !important;
}
.ajde_evcal_calendar .eventon_events_list p.desc_trig_outter{
  border-bottom: 0 !important;
  padding-bottom: 0;
}

.ajde_evcal_calendar .eventon_events_list .eventon_list_event{
  margin-bottom:20px !important;
}

.ajde_evcal_calendar .eventon_events_list .eventon_list_event:last-child{
  margin-bottom:0 !important;
}

.featured_clnd_event_inr_rgt .ajde_evcal_calendar.esty_5 .eventon_list_event .evcal_list_a:hover{
  background-color:transparent !important;
}

.ajde_evcal_calendar .calendar_header .evo_j_dates .legend {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  grid-row-gap: 10px;
  column-gap: 10px;
}
.ajde_evcal_calendar .calendar_header .evo_j_dates .legend a {
  background: var(--blue) !important;
  padding: 5px 10px !important;
  color: var(--white) !important;
  font-family: 'Poppins' !important;
  font-size: 12px !important;
  line-height: 18px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 15px !important;
  margin: 0 !important;
  border: 1px solid transparent !important;
  transition: all 0.6s !important;
}

.ajde_evcal_calendar .calendar_header .evo_j_dates .legend a:hover {
  opacity: 1 !important;
  background: transparent !important;
  color: #0E1E40 !important;
  border: 1px solid #0E1E40 !important;
}

.ajde_evcal_calendar .calendar_header .evo_j_dates .legend a.set {
  background: transparent !important;
  color: #0E1E40 !important;
  border: 1px solid #0E1E40 !important;
}

.ajde_evcal_calendar .calendar_header .evo_header_title .evo_month_title{
  font-family: 'Poppins';
  font-size: 36px;
  line-height: 55px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--darkblue);
  text-align: left;
}

.eventon_events_list .eventon_list_event {
  border: 1px solid #0E1E40 !important;
  border-radius: 15px !important;
  padding: 20px 20px 30px !important;
}
.ajde_evcal_calendar.color #evcal_list .eventon_list_event p .desc_trig {
  background-color: transparent !important;
  padding:0 !important;
}

.eventon_events_list .eventon_list_event a span.evo_start {
  align-items: center;
}
.eventon_events_list .eventon_list_event a span.evo_start em.date {
  font-family: 'Poppins' !important;
  font-size: 24px !important;
  line-height:28px !important;
  color: var(--blue) !important;
  font-weight: 600 !important;
}
.eventon_events_list .eventon_list_event a span.evo_start em.month {
  font-family: 'Poppins' !important;
  font-size: 16px !important;
  line-height: 25px !important;
  color: var(--blue) !important;
  font-weight: 500 !important;
}

.eventon_events_list .eventon_list_event a .evo_info .evoet_tags{
  display:none !important;
}
.eventon_events_list .eventon_list_event a .evo_info .evoet_time_expand{
  margin-bottom:0 !important;
}

.eventon_events_list .eventon_list_event a .evoet_title {
  font-family: 'Poppins' !important;
  font-size: 20px !important;
  line-height: 30px !important;
  letter-spacing: 0.4px !important;
  color: #0E1E40 !important;
  font-weight: 600 !important;
  padding-bottom: 10px !important;
  text-transform: initial !important;
}

.eventon_events_list .eventon_list_event a .evcal_time{
  font-family: 'Poppins' !important;
  font-size: 14px !important;
  line-height: 22px !important;
  color: #0E1E40 !important;
  font-weight: 400 !important;
  padding-left:2px;
}
.eventon_events_list .eventon_list_event a .evoet_location .evcal_location{
  font-family: 'Poppins' !important;
  font-size: 14px !important;
  line-height:22px !important;
  color: #0E1E40 !important;
  font-weight: 400 !important;
  padding-left:2px;
}

.eventon_events_list .evcal_event_types em i {
  font-family: 'Poppins' !important;
  font-size: 12px !important;
  line-height: 18px !important;
  color:var(--darkblue)!important;
  font-weight: 400 !important;
  font-style: normal;
}
.eventon_events_list .evcal_event_types em{
  font-size: 12px;
  line-height: 18px;
  color: var(--blue) !important;
  font-weight: 600 !important;
}
.eventon_events_list .eventon_list_event a .evo_info .evcal_event_types{
  margin-bottom:0 !important;
}
.eventon_events_list .event_description {
  padding-top: 15px !important;
  background:transparent !important;
  border:0 !important;
}
.eventon_events_list .event_description .evocard_row{
  padding:0 !important;
}
.eventon_events_list .event_description .evocard_box .evo_metarow_time,
.eventon_events_list .event_description .evocard_box .evo_metarow_time_location,
.eventon_events_list .event_description .evocard_box .evo_metarow_ICS {
  background: #ffffff;
  border: 1px solid #0E1E40 !important;
  padding:15px !important;
}
.eventon_events_list .event_description .evo_metarow_time .evcal_evdata_icons i, .eventon_events_list .event_description .evo_metarow_time_location .evcal_evdata_icons i, .eventon_events_list .event_description .evo_metarow_ICS .evcal_evdata_icons i {
  color: #A8A8A8 !important;
}
.evcal_evdata_row .evcal_evdata_icons i, .evcal_evdata_row .evcal_evdata_custometa_icons i {
  color: #202124;
  font-size: 18px;
}
.eventon_events_list .event_description .evocard_box .evo_h3 {
  font-family: 'Poppins' !important;
  font-size: 16px !important;
  line-height: 20px !important;
  color: #A8A8A8 !important;
  font-weight: 400 !important;
  padding-bottom: 5px !important;
}

.eventon_events_list .event_description .evocard_box .evcal_evdata_cell p span,
.eventon_events_list .event_description .evocard_box .evcal_evdata_cell p.evo_location_name{
  font-family: 'Poppins' !important;
  font-size: 14px !important;
  line-height: 22px !important;
  color: #0E1E40 !important;
  font-weight: 400 !important;
  margin:0 !important;
}
.eventon_events_list .event_description .evo_metarow_ICS p a {
  font-family: 'Poppins' !important;
  font-size: 16px !important;
  line-height: 25px !important;
  color: #A8A8A8 !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
  text-transform: initial !important;
  margin-top: 0 !important;
}

.eventon_events_list .event_description .evocard_row.bx2{
  column-gap:15px;
  margin-bottom:15px;
}

.eventon_events_list .event_description .evocard_box{
  margin:0;
}

.eventon_events_list .event_description .evcal_close{
  margin:15px 0 0 !important;
  background:var(--darkblue);
}

.eventon_events_list .event_description .evcal_close:before{
  color:var(--white) !important;
  font-size:20px !important;
  opacity:1;
}

.eventon_events_list .event_description .evcal_close:hover{
  background:var(--blue) !important;
}

.eventon_events_list .ftimage .evo_metarow_directimg{
  margin-bottom:15px;
  padding: 0;
}
/* 19-05-2025 Css End */
.page-id-48 .clb_program_inr a.prgm_btn{
  background:var(--darkblue);
}

a.prgm_btn {
  display: inline-block;
  background: var(--blue);
  border: 1px solid transparent;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 0.36px;
  color: var(--white);
  text-transform: uppercase;
  padding: 18px 22px;
  transition: all 0.6s;  
}

a.prgm_btn:first-child {
  margin-right:30px;
}

.mens_bowls_main a.prgm_btn:nth-child(2){
  margin-right: 30px;
}

.womens_bowls_main .bowls_pg_dtl{margin-top:0;}
.womens_bowls_main{
  padding-bottom:0 !important;
}

.clb_program_inr figure.wp-block-table{
  border-bottom:0;
  margin-bottom:0;
}

.clb_program_inr table{
  margin-bottom: 30px;
  width: 100%;
  border-collapse: collapse;
}

.clb_program_inr table tr th {
  background: #016EC9;
  padding:3px 10px;
  font-family: 'Poppins';
  font-size:16px;
  line-height:26px;
  font-weight: 600;
  letter-spacing: 0.36px;
  color: var(--white);
  text-align: center;
  vertical-align: middle;
}

.clb_program_inr table tr td {
  padding:3px 10px;
  font-family: 'Poppins';
  font-size: 16px;
  line-height:26px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: var(--darkblue);
  border: 1px solid #A8A8A8;
  text-align: center;
}

.mens_bowls_main{
  padding-bottom:0;
}

.mens_pg .bowls_pg_dtl table{
  width:70%;
}

.mens_pg .bowls_pg_dtl table td{
  padding:0;
  border:0;
  text-align:left;
  position:relative;
}

.mens_pg .bowls_pg_dtl table tr td:nth-child(1){
  padding-left:20px;
}

.mens_pg .bowls_pg_dtl table tr td:nth-child(1):before {
  content: '';
  position: absolute;
  width:6px;
  height:6px;
  border-radius: 50%;
  background: #0e1e40; 
  top: 12px;
  left:0;
}

.mens_pg .bowls_pg_dtl table tr td:nth-child(2){
  padding-right: 30px;
}

.functions_pg_bottom_txt p a.prgm_btn{
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  margin-right: 0;
  justify-content: center;
}

.functions_pg_top_txt figure.has-nested-images{
  display: flex;
  column-gap: 30px;
}

.patron_lists{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
}

.sitemap_pg .sitemap-nav-list li a img{
  display:none;
}

.page-id-842 .cms_dtl_main .blog_dtl_inr table tr td{
  background: initial;
  border: 0;
  text-decoration: initial;
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  text-align: left;
}

.page-id-842 .cms_dtl_main .blog_dtl_inr table tr td a{
  color:var(--blue);
  text-decoration: underline;
}

.page-id-842 .cms_dtl_main .blog_dtl_inr figure.wp-block-table{
  border:0 !important;
  margin-bottom:0 !important;
}

.page-id-48 .clb_program_inr figure.wp-block-gallery{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  justify-content: space-between;
  column-gap: 30px;
}

.page-id-48 .clb_program_inr figure.wp-block-gallery figure{
  text-align:center;
  width:100% !important;
}

.page-id-48 .clb_program_inr figure.wp-block-gallery figure p{
  margin-bottom:0;
  min-height: 60px;
}

.page-id-48 .clb_program_inr figure.wp-block-gallery figure img{
  margin-bottom:15px;
}

.cms_dtl_main .blog_dtl_inr figure.is-cropped, .ltst_news_pg_top_txt figure.is-cropped{
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.cms_dtl_main .blog_dtl_inr figure.is-cropped figure, .ltst_news_pg_top_txt figure.is-cropped figure{
  width:100% !important;
}

.cms_dtl_main .blog_dtl_inr figure.is-cropped figure img, .ltst_news_pg_top_txt figure.is-cropped figure img{
  object-fit:initial;
}