/*MAIN CSS*/
/*\\\\\\\\\\\\\*/
/*=================*/




/*@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

Light 300
Regular 400
Medium 500
Semi-bold 600
Bold 700
*/


a:hover,
a:focus {
    color: #00461c;
}

body,
html {
    overflow-x: visible;
}

@font-face {
    font-family: 'IowanOldStyleBT-Roman';
    src: url(../fonts/IowanOldStyleBT-Roman.otf);
    font-display: swap;
}

@font-face {
    font-family: 'Avenir-Medium';
    src: url(../fonts/Avenir-Medium.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Avenir-Black';
    src: url(../fonts/Avenir-Black.otf);
    font-display: swap;
}








body {
    background: #fff;
    position: relative;
    font-family: 'Avenir-Medium';
    font-weight: normal;
}

/* ================= normalizing =============*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
span,
p,
input {
    padding: 0;
    margin: 0;
    outline: none;
    text-decoration: none !important;
    color: #000;
    list-style: none;
}

p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

img {
    width: 100%;
}

input[type="number"] {
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    -ms-appearance: textfield;
    -o-appearance: textfield;
}

::selection {
    background: #222;
    color: #2ebddb;
}

::-moz-selection {
    background: #222;
    color: #2ebddb;
}

::-webkit-selection {
    background: #222;
    color: #2ebddb;
}

/*=========  end ===============*/






.col {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

ul.slick-dots {
    display: block !important;
}

/*      Common Styles   */
.master_wrap {
    /* max-width: 1440px; */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ease,
a,
input,
button {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.container {
    max-width: 1200px;
}

#nav-icon {
    z-index: 999;
    margin: 0;
    width: 35px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    display: none;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #1f1728;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2) {
    top: 10px;
}

#nav-icon span:nth-child(3) {
    top: 21px;
}

#nav-icon.open span:nth-child(1) {
    top: 10px;
    width: 100%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
    opacity: 0;
    width: 100%;
    right: 60px;
}

#nav-icon.open span:nth-child(3) {
    top: 10px;
    width: 100%;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

a.theme_btn,
a.theme_btn_red,
.theme_btn a.vc_general {
    position: relative;
    display: inline-block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
}

a.theme_btn strong,
a.theme_btn_red strong {
    font-weight: inherit;
    position: static;
    display: inline-block;
    z-index: 1;
    width: 100%;
    font-weight: normal;
}

a.theme_btn strong:before,
a.theme_btn_red strong:before,
.theme_btn a.vc_general:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px;

}

a.theme_btn:hover,
a.theme_btn_red:hover {

    color: #fff;
}

a.theme_btn:hover strong:before,
a.theme_btn_red:hover strong:before,
.theme_btn a.vc_general:hover:before {
    width: 100%;
}

a.theme_btn_red strong:before {
    background: #ff7d82;
}

a.theme_btn strong:after,
a.theme_btn_red strong:after,
.theme_btn a.vc_general:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

a.share_btn {
    vertical-align: middle;
    display: inline-block;
    margin-left: 10px;
}

a.share_btn img {
    width: 20px;
}

.theme_btn.vc_btn3-inline {
    margin: 0 5px;
}

/* =============== end ============*/
.header_section {
    /* display: none; */
    position: absolute;
    /*     background: #006524; */
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.header_section_inner {
    padding: 10px 15px;
    position: relative;
}

.mega_menu_open .header_section {
    background: #fff;
}

.header_wrp {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
}

.header_left {
    max-width: 63px;
    /* transform: scale(1.1); */
    position: relative;
    z-index: 99;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.header_right {
    flex-grow: 1;
    text-align: right;
}

.header_right img {
    display: inline-block;
    width: 12px;
    height: 15px;
    filter: grayscale(10) brightness(10);
    vertical-align: middle;
    margin-right: 5px;
    object-fit: contain;
    margin-top: -2px;
}

.header_right a {
    color: #fff;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
}

.botm_menu li a {
    font-size: 14px;
}

.top_menu li input {
    background: none;
    border: none;
    outline: none;
    border-bottom: 1px solid #fff;
    width: 88px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 6px;
    font-weight: normal;
    color: #fff;
}

.botm_menu {
    padding-top: 5px;
}

.top_menu li input::-webkit-input-placeholder {
    /* Edge */
    color: #fff;
    opacity: 0.7;
}

.top_menu li input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
    opacity: 0.7;
}

.top_menu li input::placeholder {
    color: #fff;
    opacity: 0.7;
}

.header_right ul li {
    display: inline-block;
    vertical-align: middle;
}

.header_right ul li button {
    display: inline-block;
    width: 15px;
    background: none;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
}

.top_menu li {
    border-left: 1px solid #fff;
    line-height: 1;
    padding-left: 10px;
    margin-left: 6px;
}

.top_menu li:first-child {
    border: none;
    margin-left: 0;
    padding-left: 0;
}

.top_menu li:nth-child(5) {
    border: none;
    /*margin-left: 0;*/
    margin-left: 0;
}

.top_menu li:last-child {
    border: none;
}

.menu_wrp a.theme_btn,
.menu_wrp a.theme_btn_red {
    display: none;
}

.mobile_header_search {
    display: none;
}

.top_menu li a {
    font-weight: normal;
    font-size: 12px;
    text-transform: uppercase;
}

.botm_menu li {
    padding-left: 22px;
}

.top_menu {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


/* =========================================================================== */
.page-id-19435 .header_section,
.page-id-19456 .header_section,
.page-id-19437 .header_section,
body .header_section {
    position: relative;
    background: #21632c;
}

.page-id-19435 .header_section .header_section_inner,
.page-id-19437 .header_section .header_section_inner,
.page-id-19456 .header_section .header_section_inner,
body .header_section .header_section_inner {
    background: #21632c;
}

.page-id-19435 .top_menu li a.theme_btn,
.page-id-19456 .top_menu li a.theme_btn,
.page-id-19437 .top_menu li a.theme_btn,
body .top_menu li a.theme_btn {
    background: #fff !important;
    color: #006524 !important;
}

.page-id-19435 .top_menu li a.theme_btn strong:after,
.page-id-19456 .top_menu li a.theme_btn strong:after,
.page-id-19437 .top_menu li a.theme_btn strong:after,
body .top_menu li a.theme_btn strong:after {
    border-color: #006524 !important;
}

.page-id-19435 .top_menu li a.theme_btn:hover,
.page-id-19456 .top_menu li a.theme_btn:hover,
.page-id-19437 .top_menu li a.theme_btn:hover,
body .top_menu li a.theme_btn:hover {
    background: #029636 !important;
    color: #fff !important;
}

.page-id-19435 .top_menu li a.theme_btn:hover,
.page-id-19437 .top_menu li a.theme_btn:hover {}

.page-id-19435.mega_menu_open .header_section,
.page-id-19456.mega_menu_open .header_section,
.page-id-19437.mega_menu_open .header_section,
body.mega_menu_open .header_section {
    position: relative;
    background: #ffffff;
    background: #21632c;
}

/* .page-id-19435.mega_menu_open .header_section a.theme_btn,
.page-id-19437.mega_menu_open .header_section a.theme_btn{
    background: #006524 !important;
    color: #fff !important;
}*/
/* .page-id-19435 .top_menu li a.theme_btn strong:after, */
.page-id-19437 .top_menu li a.theme_btn strong:after {
    border-color: #006524 !important;
}

/* .page-id-19435 .top_menu li a.theme_btn:hover strong:after, */
.page-id-19437 .top_menu li a.theme_btn:hover strong:after {
    border-color: #fff !important;
}

.page-id-19435.mega_menu_open .header_section a.theme_btn:hover,
.page-id-19456.mega_menu_open .header_section a.theme_btn:hover,
.page-id-19437.mega_menu_open .header_section a.theme_btn:hover,
body.mega_menu_open .header_section a.theme_btn:hover {
    background: #006524 !important;
    color: #ffffff !important;
}

.page-id-19435.mega_menu_open .top_menu li a.theme_btn strong:after,
.page-id-19456.mega_menu_open .top_menu li a.theme_btn strong:after,
.page-id-19437.mega_menu_open .top_menu li a.theme_btn strong:after,
body.mega_menu_open .top_menu li a.theme_btn strong:after {
    border-color: #fff !important;
}

.page-id-19435.mega_menu_open .top_menu li a.theme_btn:hover strong:after,
.page-id-19456.mega_menu_open .top_menu li a.theme_btn:hover strong:after,
.page-id-19437.mega_menu_open .top_menu li a.theme_btn:hover strong:after,
body.mega_menu_open .top_menu li a.theme_btn:hover strong:after {
    border-color: #fff !important;
}

.page-id-19435 .top_menu li a.theme_btn,
.page-id-19456 .top_menu li a.theme_btn,
.page-id-19437 .top_menu li a.theme_btn,
body .top_menu li a.theme_btn {
    font-size: 11px !important;
    line-height: 35px !important;
    padding: 0 12px;
    min-width: 138px;
}

.page-id-19435 .inner_banner_wrp,
.page-id-19456 .inner_banner_wrp,
.page-id-19437 .inner_banner_wrp,
body .inner_banner_wrp {
    padding-top: 0;
}

.page-id-19435 .menu_wrp>ul>li:hover>a,
.page-id-19456 .menu_wrp>ul>li:hover>a,
.page-id-19437 .menu_wrp>ul>li:hover>a,
body .menu_wrp>ul>li:hover>a {
    border-bottom: 2px solid rgb(210 36 42);
}

.page-id-19435 .mega_meu_wrp,
.page-id-19456 .mega_meu_wrp,
.page-id-19437 .mega_meu_wrp,
body .mega_meu_wrp {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-id-19435 .hero-banner .main-carousel .slick-slide,
.page-id-19435 .hero-banner,
.page-id-19456 .hero-banner .main-carousel .slick-slide,
.page-id-19456 .hero-banner,
{
min-height: 400px;
height: 400px;
}

body.page-template-template-sports .hero-banner .main-carousel .slick-slide,
body.page-template-template-sports .hero-banner,
body.page-template-template-dining .hero-banner .main-carousel .slick-slide,
body.page-template-template-dining .hero-banner,
body .hero-banner .main-carousel .slick-slide,
body .hero-banner {
    min-height: 550px;
    height: 550px;
}

body.page-template-template-sports .each_sport_page_section,
body.page-template-template-dining .each_sport_page_section {
    padding: 85px 0;
    padding-top: 40px;
}

body.page-template-template-dining .single_dining_page_container {
    padding-top: 130px;
}

.page-id-19435 .hero-banner,
.page-id-19435 .hero-banner .main-carousel .slick-slide {
    min-height: 500px;
    height: 500px;
}

.page-id-19435 .header_section_inner,
.page-id-19456 .header_section_inner,
.page-id-19437 .header_section_inner,
body .header_section_inner {
    padding: 5px 15px;
    /*     position: fixed;
    width: 100%;
    top: 0;
    left: 0; */
    background: #21632c;
}

/* .page-id-19435.admin-bar .header_section_inner{
    top: 32px;
}
.page-id-19435 .header_section_inner:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #21632c;
    z-index: -1;
} */
.page-id-19435 .header_section .top_menu,
.page-id-19456 .header_section .top_menu,
.page-id-19437 .header_section .top_menu,
body .header_section .top_menu {
    padding-bottom: 14px;
}

.page-id-19435.mega_menu_open .header_right a,
.page-id-19456.mega_menu_open .header_right a,
.page-id-19437.mega_menu_open .header_right a,
body.mega_menu_open .header_right a {
    color: #fff;
}

.page-id-19435.mega_menu_open .header_right a img,
.page-id-19435.mega_menu_open .header_right button img,
.page-id-19456.mega_menu_open .header_right a img,
.page-id-19456.mega_menu_open .header_right button img,
.page-id-19437.mega_menu_open .header_right a img,
.page-id-19437.mega_menu_open .header_right button img,
body.mega_menu_open .header_right a img,
body.mega_menu_open .header_right button img {
    filter: grayscale(10) brightness(10);
}

.page-id-19435.mega_menu_open .header_right li,
.page-id-19456.mega_menu_open .header_right li,
.page-id-19437.mega_menu_open .header_right li,
body.mega_menu_open .header_right li {
    border-color: #fff;
}

.page-id-19435.mega_menu_open .top_menu li input,
.page-id-19456.mega_menu_open .top_menu li input,
.page-id-19437.mega_menu_open .top_menu li input,
body.mega_menu_open .top_menu li input {
    border-bottom: 1px solid #fff;
    color: #fff;
}

.page-id-19437.mega_menu_open .top_menu li input::-webkit-input-placeholder,
.page-id-19435.mega_menu_open .top_menu li input::-webkit-input-placeholder,
.page-id-19456.mega_menu_open .top_menu li input::-webkit-input-placeholder,
body.mega_menu_open .top_menu li input::-webkit-input-placeholder {
    /* Edge */
    color: #fff;
}

.page-id-19437.mega_menu_open .top_menu li input:-ms-input-placeholder,
.page-id-19435.mega_menu_open .top_menu li input:-ms-input-placeholder,
.page-id-19456.mega_menu_open .top_menu li input:-ms-input-placeholder,
body.mega_menu_open .top_menu li input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.page-id-19437.mega_menu_open .top_menu li input::placeholder,
.page-id-19435.mega_menu_open .top_menu li input::placeholder,
.page-id-19456.mega_menu_open .top_menu li input::placeholder,
body.mega_menu_open .top_menu li input::placeholder {
    color: #fff;
}

.page-id-19437.mega_menu_open .top_menu li a.theme_btn strong:after,
.page-id-19435.mega_menu_open .top_menu li a.theme_btn strong:after,
.page-id-19456.mega_menu_open .top_menu li a.theme_btn strong:after,
body.mega_menu_open .top_menu li a.theme_btn strong:after {
    border-color: #006524 !important;
}

body .container.breadcrumbs:before,
body .container.breadcrumbs {
    background: #21632c;
    background: #f9f9f9;
}

body .container.breadcrumbs span,
body .container.breadcrumbs a {
    color: #21632c !important;
}

.page-id-19435 .header_section .header_section_inner,
.page-id-19456 .header_section .header_section_inner,
body .header_section .header_section_inner {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.admin-bar.page-id-19435 .header_section .header_section_inner,
.admin-bar.page-id-19456 .header_section .header_section_inner,
body.admin-bar .header_section .header_section_inner {
    top: 32px;
}

.header_section_inner.fixed .header_wrp {
    align-items: center;
}

.header_section_inner.fixed .header_wrp .botm_menu {
    /*  padding-top: 0; */
}

.header_section .header_section_inner.fixed .header_left {
    max-width: 50px;
}

.header_section .top_menu.hide_menu {
    margin-top: -34px;
    opacity: 0;
    visibility: hidden;
}

.page-id-19435 .header_section .header_section_inner:after,
.page-id-19456 .header_section .header_section_inner:after,
body .header_section .header_section_inner:after {
    content: "";
    background: #21632c;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header_right ul li.member-area-item {
    display: none;
    display: inline-block;
    max-width: 0px;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.header_section_inner.fixed .header_right ul li.member-area-item {
    display: inline-block;
    max-width: 200px;
    padding-left: 22px;
}

.header_right ul li.member-area-item a {
    font-size: 11px !important;
    line-height: 10px !important;
    padding: 0 12px;
    min-width: 138px;
    background: #fff !important;
    color: #006524 !important;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
}

.page-id-19435 .header_section_inner.fixed .header_right ul li.member-area-item a,
body .header_section_inner.fixed .header_right ul li.member-area-item a {
    line-height: 35px !important;
}

.header_right ul li.member-area-item a:hover {
    color: #fff !important;
    background: #006524 !important;
}

.header_right ul li.member-area-item a:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #006524;
    border-bottom: 1px solid #006524;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

.header_right ul li.member-area-item a:hover:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.header_right ul li.member-area-item a:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 0px;
}

.header_right ul li.member-area-item a:hover:before {
    width: 100%;
}


/* =========================================================================== */
.cv_submit_wrp label {
    margin: 0;
}

.subcat_sprt41+form#filter_search {
    flex-grow: 1;
    justify-content: right;
    text-align: right;
}

.hero-banner .main-carousel {
    transform: none !important;
}

.mega_meu_wrp {
    position: absolute;
    background: #fff;
    left: 0;
    width: 100%;
    top: 0;
    text-align: center;
    padding-top: 120px;
    z-index: -2;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.mega_menu_open .selected .mega_meu_wrp {
    visibility: visible;
    opacity: 1;
}

.header_right ul li.mega_menu_parent>a {
    position: relative;
    z-index: 9;
    border-bottom: 2px solid transparent;
    line-height: 1;
}

.header_right ul li {
    position: relative;
}

.header_right ul li.mega_menu_parent {
    position: static;
}

.mega_menu_open .header_right a {
    color: #006524;
}

.mega_menu_open .header_right a img,
.mega_menu_open .header_right button img {
    filter: none;
}

.mega_menu_open .header_right li {
    border-color: #006524;
}

.mega_menu_open .top_menu li input {
    border-bottom: 1px solid #006524;
    color: #006524;
}

.mega_menu_open .top_menu li input::-webkit-input-placeholder {
    /* Edge */
    color: #006524;
    opacity: 0.7;
}

.mega_menu_open .top_menu li input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #006524;
    opacity: 0.7;
}

.mega_menu_open .top_menu li input::placeholder {
    color: #006524;
    opacity: 0.7;
}

.mega_meu_wrp_inner {
    display: flex;
    max-width: 992px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: left;
    padding-top: 10px;
}

.mega_menu_dtls {
    min-width: 360px;
}

.mega_menu_dtls h4 {
    font-size: 32px;
    color: #006524;
    font-family: 'IowanOldStyleBT-Roman';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
    padding-bottom: 25px;
    max-width: 301px;
}

.mega_menu_dtls p {
    font-size: 12px;
    color: #606060;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 30px;
    max-width: 250px;
    margin: 0;
}

.mega_menu_dtls a.theme_btn {
    display: inline-block;
}

.mega_submenu {
    width: 430px;
}

.menu_img_wrp {
    flex-grow: 1;
}

.mega_submenu ul {
    width: 100%;
    /*display: flex;
    flex-wrap: wrap;*/
    column-count: 2;
    position: relative;
}

.mega_submenu ul:after {
    content: "";
    display: block;
    clear: both;
}

.mega_submenu ul li {
    /* float: left; */
    width: 100%;
    padding: 7px 5px;
    position: static !important;
}

.mega_submenu ul li a {
    display: block;
    font-size: 14px;
    color: #606060 !important;
}

.mega_submenu ul li img {
    position: absolute;
    width: 225px;
    z-index: 9;
    height: auto;
    filter: none;
    left: 100%;
    top: 0;
    opacity: 0;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.mega_submenu ul li a:hover+img {
    opacity: 1;
}

.mega_submenu ul li a:hover {
    font-weight: bold;
    color: #006524 !important;
}

.logo_wrp {
    position: relative;
    z-index: 9;
}

.header_right ul li {
    position: relative;
    z-index: 9;
}

.menu_wrp>ul>li>a {
    padding-bottom: 2px;
}

.menu_wrp>ul>li:hover>a {
    border-bottom: 2px solid rgb(210, 36, 42);
    line-height: 1;
}

.menu_wrp>ul>li>ul {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    width: 100%;
    left: 0;
    top: 100%;
    margin-top: 15px;
    min-width: 175px;
    text-align: left;
    padding: 25px 20px;
    padding-top: 35px;
    box-sizing: border-box;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    transition-delay: 0s;
}

.menu_wrp>ul>li.selected>ul {
    visibility: visible;
    margin-top: 0;
    opacity: 1;
    transition-delay: 0.15s;
}

.menu_wrp>ul>li>ul>li {
    padding: 0;
    padding: 5px 0;
    width: 100%;
}

.home_banner_wrp {
    position: relative;
}

.home_banner_inner {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    min-height: 600px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.home_banner_inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.1;
    z-index: -2;
}

.home_banner_inner:after {
    content: "";
    background: url(../images/rope.png);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 9px;
    z-index: 3;
}

.home_banner_content h1 {
    font-family: 'IowanOldStyleBT-Roman';
    color: #fff;
    padding-bottom: 50px;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 0px 10px #000;
}

.home_banner_content p {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    text-shadow: 0px 0px 10px #000;
}

.home_banner_content p:last-of-type {
    padding-bottom: 100px;
}

.home_banner_content .theme_btn {
    margin: 0 5px;
}

.banner_notice {
    position: absolute;
    bottom: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    max-width: 920px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding-bottom: 8px;
    align-items: stretch;
    z-index: 99;
}

.banner_notice_left {
    background: #006524;
    min-width: 200px;
    text-align: center;
    padding: 12px 15px;
}

.banner_notice_left h5 {
    font-size: 8px;
    color: #fff;
    font-family: 'IowanOldStyleBT-Roman';
    text-transform: uppercase;
}

.banner_notice_left h5 strong {
    font-size: 16px;
    font-weight: normal;
    display: block;
    padding-top: 3px;
}

.banner_notice_right {
    padding: 11px 15px;
    flex-grow: 1;
    text-align: left;
    background: #fff;
    position: relative;
    height: 100%;
    max-width: 720px;
}

.banner_notice .banner_notice_right p {
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 20px;
    color: #606060;
    letter-spacing: 1px;
    font-weight: normal;
}

.banner_notice .banner_notice_right .theme_btn {
    position: absolute;
    right: 15px;
    top: 11px;
}

.plyr__poster {
    background-size: cover !important;
}

.latest_news_home_section {
    padding: 30px 0;
    text-align: center;
}

.latest_news_home_section h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 25px;
    text-align: center;
}

.latest_news_home_section h3 strong {
    font-size: 12px;
    display: block;
    font-weight: normal;
}

.home_news_list ul {
    border-top: 1px solid #e5e5e5;
    padding-bottom: 50px;
}

.home_news_list li {
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 35px;
}

.home_news_list_each {
    display: flex;
    align-items: center;
}

.home_news_list {
    padding-right: 100px;
    text-align: left;
}

.home_news_list_left {
    width: 70px;
    text-align: center;
}

.home_news_list_left h4 {
    color: #21632c;
    font-size: 16px;
    font-family: 'IowanOldStyleBT-Roman';
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home_news_list_left h4 strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    padding-top: 3px;
}

.home_news_list_left h4 sup {
    font-size: 65%;
    font-weight: normal;
}

.home_news_list_right {
    flex-grow: 1;
    padding-left: 50px;
}

.home_news_list_right p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.4;
    padding-bottom: 0;
}

.home_news_list_right p a {
    color: #606060;
    font-size: 12px;
}

.home_news_list_right a {
    color: #606060;
    font-size: 12px;
}

.home_news_list_right a:hover,
.home_news_list_right a:hover p {
    color: #006524;
}

.upcoming_event_section {
    padding: 100px 0;
    padding-bottom: 50px;
    text-align: center;
}

.upcoming_event_section h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 25px;
    text-align: center;
}

.upcoming_event_section h3 strong {
    font-size: 12px;
    display: block;
    font-weight: normal;
    position: relative;
    margin-bottom: 5px;
}

.upcoming_event_section h3 strong:before,
.upcoming_event_section h3 strong:after {
    content: "";
    display: inline-block;
    background: #006524;
    height: 1px;
    width: 45px;
    vertical-align: middle;
    margin: 5px;
}

.upcoming_event_section h3 strong:after {
    content: "";
}

.upcoming_event_each {
    padding: 15px 65px;
    text-align: left;
}

.upcoming_event_slider.slick-initialized.slick-slider {
    margin: 0 -65px;
}

.upcoming_event_inner .event_img img {
    height: 190px;
    object-fit: cover;
}

.upcoming_event_inner {
    position: relative;
}

.event_date {
    justify-content: center;
    width: 65px;
    height: 65px;
    text-align: center;
    background: #d2232a;
    border-radius: 520%;
    display: flex;
    flex-wrap: wrap;
    font-family: 'IowanOldStyleBT-Roman';
    align-items: center;
    align-content: center;
    position: absolute;
    left: -30px;
    top: -30px;
    font-size: 17px;
    color: #fff;
    line-height: 1.4;
    z-index: 9;
    padding: 0 5px;
}

.event_date strong {
    display: block;
    color: #fff;
    font-weight: normal;
    width: 100%;
    font-size: 20px;
}

.event_date strong sup {
    font-size: 65%;
}

.upcoming_event_section .slick-list.draggable {
    padding-top: 0;
    margin-top: -25px;
}

.upcoming_event_each {
    margin-top: 25px;
}

.upcoming_event_inner h4 {
    color: #21632c;
    font-size: 16px;
    text-transform: uppercase;
    padding-top: 25px;
    padding-bottom: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.upcoming_event_inner p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.4;
    padding-bottom: 14px;
}

.all_event_link {
    text-align: right;
    padding-top: 50px;
}

.recreation_section h3 {
    padding-bottom: 25px;
}

.recreation_section h3 strong {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
}

.recreation_section h3 strong:before,
.recreation_section h3 strong:after {
    content: "";
    display: inline-block;
    background: #006524;
    height: 1px;
    width: 45px;
    vertical-align: middle;
    margin: 0 5px;
    margin-bottom: 5px;
}

.recreation_section p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 14px;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 1.7;
}

.recreation_section ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 915px;
    margin: 0 auto;
    padding-bottom: 35px;
    padding-top: 25px;
    justify-content: center;
}

.recreation_section {
    text-align: center;
    padding: 50px 0;
}

.recreation_section+.recreation_section {
    padding-bottom: 150px;
}

.recreation_section ul li {
    width: 14.28%;
    padding: 15px 15px;
}

.sports_item_icon {
    width: 90px;
    position: relative;
    border-radius: 50%;
    border: 2px solid #006524;
    max-width: 90px;
    margin: 0 auto;
    height: 90px;
    background: #f5f5f5;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.sports_item_icon img {
    position: absolute;
    left: 25%;
    top: 25%;
    width: 50%;
    height: 50%;
    object-fit: contain;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.eact_sports_item h5 {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-top: 25px;
    line-height: 1.4;
}

.development_progrm_each {
    padding: 125px 0;
}

.development_progrm_content {
    background: #fff;
    padding: 35px;
}

.development_progrm_content h4 {
    color: #21632c;
    font-size: 24px;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 2px;
}

.development_progrm_content h4 {
    min-height: 93px;
}

.development_progrm_content p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.7;
    letter-spacing: 1px;
    padding-bottom: 30px;
}

.development_progrm_content p strong {
    display: block;
}

.plate_image,
.sand_image,
.ball_image,
.stumps_image,
.cricket_bat_image {

    max-width: initial;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.dining_section {
    background: #fefdf6;
    overflow: hidden;
    padding: 120px 0;
}

.dining_content_wrp {
    display: flex;
    align-items: center;
    padding-left: 135px;
    align-items: stretch;
}

.dining_content {
    background: #fff;
    box-shadow: 0px 0px 25px -5px rgb(0 0 0 / 33%);
    padding: 20px;
    max-width: 445px;
}

.dining_content_inner {
    border: 1px solid #006524;
    padding: 25px 35px;
    text-align: center;
}

.dining_content_inner ul {
    text-align: left;
    padding-bottom: 25px;
    padding-top: 15px;
}

.dining_content_inner li {
    color: #006524;
    font-size: 16px;
    text-transform: uppercase;
    margin: 5px 0;
    width: 100%;
    display: block;
    padding: 7px 0;
    padding-left: 35px;
    position: relative;
}

.dining_content_inner li img {
    width: 22px;
    position: absolute;
    left: 0;
    top: 7px;
}

.dining_content_inner h3 {
    color: #21632c;
    font-size: 24px;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 15px;
}

.dining_content_inner p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: left;
}

.dining_content_inner .theme_btn {
    min-width: 235px;
    margin: 7px 0;
}

.dining_content_inner_img {
    flex-grow: 1;
    margin-right: -127px;
    /* height: 100%; */
    padding: 50px 0;
}

.dining_content_inner_img img {
    height: 100%;
    object-fit: cover;
}

.upcoming_event_section.dining_promotions {
    padding-bottom: 120px;
}

.club_magazine_section {
    padding: 250px 0;
}

.club_magazine_wrp {
    position: relative;
    padding: 35px 25px;
    padding-right: 50px;
    background: #fff;
    padding-left: 450px;
    max-width: 992px;
    margin: 0 auto;
}

img.magazine_pic {
    position: absolute;
    left: -25px;
    width: 450px;
    top: 50%;
    transform: translateY(-50%);
}

.club_magazine_wrp h4 {
    font-size: 24px;
    font-family: 'IowanOldStyleBT-Roman';
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #006524;
    padding-bottom: 20px;
}

.club_magazine_wrp p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: left;
    padding-bottom: 20px;
}

.club_magazine_wrp .theme_btn {
    margin-right: 10px;
    vertical-align: middle;
}

.club_magazine_wrp a.share_btn {
    margin-left: 0;
}

.club_story_content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.club_story_content * {
    color: #fff;
}

.club_story_section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.club_story_section:after {
    content: "";
    background: #000;
    opacity: 0.7;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.club_story_content h3 {
    padding-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
}

.club_story_content h3 strong {
    color: #fff;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    margin-bottom: 5px;
}

.club_story_content h3 strong:before,
.club_story_content h3 strong:after {
    content: "";
    display: inline-block;
    background: #fff;
    height: 1px;
    width: 45px;
    vertical-align: middle;
    margin: 0 5px;
    margin-bottom: 5px;
}

.club_story_content p {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: center;
    padding-bottom: 20px;
}

.club_galry_slider {
    padding: 35px 0;
    padding-bottom: 50px;
}

.club_galry_slider {
    padding: 35px 0;
    padding-bottom: 50px;
    position: relative;
    width: 101vw;
    left: 50%;
    transform: translateX(-50%);
}

.club_galry_each {
    padding: 0 25px;
}

.club_galry_each a {
    display: block;
    position: relative;
    padding: 30% 0;
    border-radius: 20px;
    overflow: hidden;
}

.club_galry_each a img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.club_story_section .slick-list {
    overflow: visible;
}

.club_story_section .club_galry_slider {
    padding-right: 0%;
}

.club_story_section .slick-track {
    background: url(../images/film_reel.png);
    background-size: auto 100%;
    background-position: top center;
    padding: 5% 0;
}

.become_member_section {
    padding: 100px 0;
    text-align: center;
    padding-bottom: 150px;
}

.become_member_wrp {
    border: 4px solid #4e9459;
    padding: 50px;
    margin-bottom: 50px;
}

.become_member_wrp h3 {
    padding-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
}

.become_member_wrp h3 strong {
    color: #21632c;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    margin-bottom: 5px;
}

.become_member_wrp h3 strong:before,
.become_member_wrp h3 strong:after {
    content: "";
    display: inline-block;
    background: #21632c;
    height: 1px;
    width: 45px;
    width: 5px;
    vertical-align: middle;
    margin: 0 5px;
    margin-bottom: 5px;
    opacity: 0;
}

.become_member_wrp ul li {
    position: relative;
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: left;
    padding-bottom: 50px;
    padding-left: 65px;
    padding-top: 25px;
}

.become_member_wrp ul li img {
    width: 45px;
    position: absolute;
    left: 0;
    top: 30px;
}

footer {
    background: #21632c;
    padding: 100px 0;
    padding-bottom: 50px;
}

.footer_adrs p {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.footer_adrs p a {
    color: #fff;
}

.footer_adrs p img {
    width: 18px;
    filter: grayscale(10) brightness(10);
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
    vertical-align: middle;
}

.footer_logo {
    max-width: 105px;
}

.footer_logo img {
    width: 100%;
}

.col.footer_col_1 {
    max-width: 165px;
}

.col.footer_col_3 {
    max-width: 300px;
}

footer h5 {
    color: #fff;
    font-size: 16px;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.app_dwnld li {
    display: inline-block;
    padding-right: 15px;
}

.app_dwnld li img {
    max-width: 135px;
}

ul.footer_logos {
    padding-top: 20%;
    text-align: center;
}

ul.footer_logos li {
    display: inline-block;
    padding: 0 15px;
}

ul.footer_logos li img {
    width: auto;
    max-width: 100%;
    height: 50px;
}

ul.footer_terms {
    text-align: center;
    padding-top: 50px;
}

ul.footer_terms li {
    display: inline-block;
    line-height: 0;
    border-right: 1px solid #fff;
    padding: 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
}

ul.footer_terms li a {
    padding: 0;
    line-height: 0.7;
    padding-top: 2px;
    color: #fff;
}

ul.footer_terms li:last-child {
    border: none;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
    width: 100px;
    height: 100px;
    text-align: center;
    background: none !important;
}

.plyr__control--overlaid svg {
    width: 75px;
    height: 75px;
}

.plyr.plyr--video.plyr--paused .plyr__controls,
.plyr.plyr--video.plyr--stopped .plyr__controls {
    opacity: 0;
}

.container {
    position: relative;
}

img.sand_image {
    display: block;
    position: absolute;
    width: 100%;
    right: -535px;
    z-index: -1;
    bottom: 7%;
}

img.ball_image {
    display: block;
    position: absolute;
    width: 350px;
    bottom: 55%;
    left: -287px;
}

img.plate_image,
.plate_image img {
    display: block;
    position: absolute;
    width: auto;
    height: 155%;
    top: 53%;
    transform: translateY(-50%);
    left: -63%;
}

img.stumps_image,
.stumps_image img {
    position: absolute;
    display: block;
    width: 335px;
    right: -227px;
    bottom: -265px;
}

img.cricket_bat_image,
.cricket_bat_image img {
    position: absolute;
    display: block;
    width: auto;
    height: 415px;
    bottom: -135px;
    left: -555px;
    z-index: 9;
}

.eact_sports_item {
    display: block;
    cursor: pointer;
}

.eact_sports_item:hover .sports_item_icon {
    background: #006524;
}

.eact_sports_item:hover .sports_item_icon img {
    filter: grayscale(10) brightness(10);
}

.slick-dots li button {
    background: #006524;
    padding: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.3;
    margin: 0 !important;
}

.slick-dots li {
    width: auto;
    padding: 0 3px;
    margin: 0;
}

.slick-dots li button:before {
    font-size: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

.upcoming_event_section .slick-dots {
    bottom: -80px;
}

.development_progrm_section .slick-dots {
    bottom: 30px;
}

.upcoming_event_section.dining_promotions ul.slick-dots {
    position: static;
    margin-top: 85px;
}

img.bails_image {
    display: none;
}

.banner_notice_slider {
    max-width: 100%;
}

.recreation_section.for_mobile {
    display: none;
}

.development_progrm_each img {
    display: none;
}

.banner_notice_slider .slick-slide {
    padding: 0 !important;
}

.share_btn {
    display: inline-block;
    margin-left: 10px;
}

a.addtoany_share img {
    width: 30px !important;
}

.slick-slide {
    padding: 0 !important;
}

.home_banner_section+strong {
    display: block;
    font-weight: normal;
}

.recreation_section.for_mobile a.theme_btn {
    display: none;
}

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

.club_magazine_wrp .share_btn {
    margin-left: 0;
    vertical-align: middle;
    line-height: 1;
    padding-top: 3px;
}

.club_magazine_wrp a.addtoany_share img {
    width: 26px !important;
}

.home_banner_section h1,
.home_banner_section p,
.home_banner_section .home_btn_wrp {
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    margin-bottom: -50px;
    opacity: 0;
}

.home_banner_section.aos-init.aos-animate h1,
.home_banner_section.aos-init.aos-animate p,
.home_banner_section.aos-init.aos-animate .home_btn_wrp {
    margin-bottom: 0;
    transition-delay: 0.5s;
    opacity: 1;
}

.banner_notice {
    opacity: 0;
    bottom: 20px;
    -webkit-transition: .8s ease-in-out;
    -moz-transition: .8s ease-in-out;
    -o-transition: .8s ease-in-out;
    transition: .8s ease-in-out;
}

.home_banner_section.aos-init.aos-animate .banner_notice {
    opacity: 1;
    bottom: 0;
    transition-delay: 0.8s;
}

.recreation_section ul li {
    position: relative;
    top: 15px;
    opacity: 0;
    list-style: none;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.recreation_section ul li:before {
    display: none;
}

.recreation_section .aos-init.aos-animate ul li {
    top: 0;
    opacity: 1;
}

.recreation_section ul li:nth-child(1),
.recreation_section .wpb_start_animation.animated ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.recreation_section ul li:nth-child(2),
.recreation_section .wpb_start_animation.animated ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.recreation_section ul li:nth-child(3),
.recreation_section .wpb_start_animation.animated ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.recreation_section ul li:nth-child(4),
.recreation_section .wpb_start_animation.animated ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.recreation_section ul li:nth-child(5),
.recreation_section .wpb_start_animation.animated ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.recreation_section ul li:nth-child(6),
.recreation_section .wpb_start_animation.animated ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.recreation_section ul li:nth-child(7),
.recreation_section .wpb_start_animation.animated ul li:nth-child(7) {
    transition-delay: 0.7s;
}

.recreation_section ul li:nth-child(8),
.recreation_section .wpb_start_animation.animated ul li:nth-child(8) {
    transition-delay: 0.8s;
}

.recreation_section ul li:nth-child(9),
.recreation_section .wpb_start_animation.animated ul li:nth-child(9) {
    transition-delay: 0.9s;
}

.recreation_section ul li:nth-child(10),
.recreation_section .wpb_start_animation.animated ul li:nth-child(10) {
    transition-delay: 1s;
}

.recreation_section ul li:nth-child(11),
.recreation_section .wpb_start_animation.animated ul li:nth-child(11) {
    transition-delay: 1.1s;
}

.recreation_section ul li:nth-child(12),
.recreation_section .wpb_start_animation.animated ul li:nth-child(12) {
    transition-delay: 1.2s;
}

.recreation_section ul li:nth-child(13),
.recreation_section .wpb_start_animation.animated ul li:nth-child(13) {
    transition-delay: 1.3s;
}

.recreation_section ul li:nth-child(14),
.recreation_section .wpb_start_animation.animated ul li:nth-child(14) {
    transition-delay: 1.4s;
}

.recreation_section ul li:nth-child(15),
.recreation_section .wpb_start_animation.animated ul li:nth-child(15) {
    transition-delay: 1.5s;
}

.recreation_section ul li:nth-child(16),
.recreation_section .wpb_start_animation.animated ul li:nth-child(16) {
    transition-delay: 1.6s;
}

.recreation_section ul li:nth-child(17),
.recreation_section .wpb_start_animation.animated ul li:nth-child(17) {
    transition-delay: 1.7s;
}

.recreation_section ul li:nth-child(18),
.recreation_section .wpb_start_animation.animated ul li:nth-child(18) {
    transition-delay: 1.8s;
}

.recreation_section .theme_btn {
    /*opacity: 0;*/
}

.recreation_section .aos-init.aos-animate .theme_btn {
    opacity: 1;
    transition-delay: 1.8s;
}

.development_progrm_content {
    position: relative;
    right: -50px;
    opacity: 0;
    -webkit-transition: .8s ease-in-out;
    -moz-transition: .8s ease-in-out;
    -o-transition: .8s ease-in-out;
    transition: .8s ease-in-out;
}

.development_progrm_slider .slick-current.slick-active .development_progrm_content {
    right: 0;
    opacity: 1;
    margin-top: 0;
}

.become_member_wrp li {
    top: 15px;
    opacity: 0;
    transition-delay: 0.2s;
    -webkit-transition: .8s ease-in-out;
    -moz-transition: .8s ease-in-out;
    -o-transition: .8s ease-in-out;
    transition: .8s ease-in-out;
}

.become_member_wrp.aos-init.aos-animate li {
    top: 0;
    opacity: 1;
    transition-delay: 0.3s;
}

.become_member_wrp.aos-init.aos-animate li:nth-child(2),
.animated.wpb_start_animation .become_member_wrp li:nth-child(2) {
    transition-delay: 0.4s;
}

.become_member_wrp.aos-init.aos-animate li:nth-child(3),
.animated.wpb_start_animation .become_member_wrp li:nth-child(3) {
    transition-delay: 0.5s;
}

.become_member_wrp.aos-init.aos-animate li:nth-child(4),
.animated.wpb_start_animation .become_member_wrp li:nth-child(4) {
    transition-delay: 0.6s;
}

.become_member_wrp.aos-init.aos-animate li:nth-child(5),
.animated.wpb_start_animation .become_member_wrp li:nth-child(5) {
    transition-delay: 0.7s;
}

.latest_news_home_section {
    z-index: 2;
    position: relative;
}

.home_banner_slider.slick-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
}

.home_banner_slider_each {
    /*height: 600px;*/
}

.home_banner_slider.slick-slider div {
    height: 100%;
}

#cookie-law-info-bar span {
    vertical-align: middle;
    font-family: 'Avenir-Medium';
    font-weight: normal;
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
}

a#cookie_action_close_header {
    position: relative;
    display: inline-block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 30px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
}

a#cookie_action_close_header:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 6px;
}

a#cookie_action_close_header:hover:before {
    width: 100%;
}

.container.breadcrumbs {
    position: relative;
    background: #21632c;
    color: #fff;
    padding: 15px 0;
    font-family: 'IowanOldStyleBT-Roman';
    font-size: 0px !important;
    margin-top: -2px;
    z-index: 9;
}

.container.breadcrumbs:before {
    position: absolute;
    background: #21632c;
    width: 102vw;
    height: 100%;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

.container.breadcrumbs span,
.container.breadcrumbs a {
    color: #fff !important;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: 400 !important;
    font-size: 12px !important;
    letter-spacing: 2px;
}

.container.breadcrumbs a.post.post-page.current-item,
.container.breadcrumbs a.post.post-page.current-item * {
    font-size: 12px !important;
}

.container.breadcrumbs span[typeof="ListItem"]:nth-child(1) {
    display: none;
}

.container.breadcrumbs span[typeof="ListItem"]:after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid !important;
    display: inline-block;
    margin: 0 10px;
    transform: rotate(-45deg);
    margin-bottom: 1px;
}

.container.breadcrumbs span[typeof="ListItem"]:last-child:after {
    display: none;
}

.inner_banner_wrp {
    position: absolute;
    z-index: 9;
    top: 50%;
    text-align: center;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 20px;
    padding-top: 50px;
}

.hero-banner {
    min-height: 500px;
    z-index: 1;
}

.hero-banner .main-carousel .slick-slide {
    min-height: 500px;
}

.hero-banner:before {
    content: "";
    /*     background: rgb(0,0,0); */
    /*     background: linear-gradient(0deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.4) 100%); */
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0;
}

.inner_banner_content h1 {
    font-family: 'IowanOldStyleBT-Roman';
    color: #fff;
    padding-bottom: 0;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 0px 10px #000;
    max-width: 636px;
    margin: 0 auto;
    line-height: 1.25;
}

.inner_banner_content p {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-top: 35px;
    text-shadow: 0px 0px 5px #000;
}

.inner_banner_content p:empty,
.inner_banner_content a.theme_btn_1:empty {
    display: none;
}

a.theme_btn_1 {
    position: relative;
    display: inline-block;
    background: #006524;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 30px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    margin-top: 35px;
    overflow: hidden;
}

a.theme_btn_1:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 6px;
}

a.theme_btn_1:hover:before {
    width: 100%;
}

a.theme_btn_1:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

.wpb_single_image.wpb_content_element.cricket_bat_image {
    position: relative;
}

.wpb_single_image.wpb_content_element.cricket_bat_image figure,
.wpb_single_image.wpb_content_element.cricket_bat_image .vc_single_image-wrapper {
    width: 100%;
}

.vc_row.wpb_row.vc_row-fluid.become_member_section>.wpb_column.vc_column_container>.vc_column-inner {
    padding: 0 15px;
}

.vc_separator.wpb_content_element {
    justify-content: center;
}

.vc_separator.wpb_content_element h4,
.vc_separator.wpb_content_element h3 {
    color: #21632c;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    margin-bottom: 0;
    padding: 0 5px;
    letter-spacing: 2px;
}

.vc_separator.wpb_content_element span.vc_sep_holder {
    width: 45px;
    max-width: 45px;
    min-width: 45px;
    margin-bottom: 3px;
}

.vc_separator.wpb_content_element .vc_sep_holder .vc_sep_line {
    background: #21632c;
    border-color: #21632c;
    margin-bottom: 0;
    width: 45px;
}

.dining_content_inner li:before {
    display: none;
}

.dining_content>.vc_column-inner {
    padding: 20px;
}

.dining_content_inner {
    margin: 0;
}

.dining_content_inner_img .wpb_single_image.wpb_content_element {
    margin: 0;
}

.dining_content_inner_img>.vc_column-inner {
    padding: 0;
}

.recreation_section .wpb_text_column.wpb_content_element {
    margin: 0;
}

.vc_row.wpb_row.vc_row-fluid.recreation_section .sports_item_icon {
    background: none;
}

.vc_row.wpb_row.vc_row-fluid.recreation_section .eact_sports_item:hover .sports_item_icon {
    background: #006524;
}

.recreation_section .wpb_start_animation.animated .theme_btn {
    opacity: 1;
    transition-delay: 1.4s;
}

.vc_row.wpb_row.vc_row-fluid.recreation_section {
    padding: 100px 0;
}

.uvc-heading {
    letter-spacing: 2px;
}

.uvc-heading h2,
.uvc-heading h3,
.uvc-heading h4 {
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    position: relative;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px !important;
}

.uvc-heading .uvc-sub-heading {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 25px;
    text-align: center;
}

.uvc-heading h2:before,
.uvc-heading h3:before,
.uvc-heading h4:before,
.uvc-heading h2:after,
.uvc-heading h3:after,
.uvc-heading h4:after {
    content: "";
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #006524;
    vertical-align: middle;
    margin: 0 7px;
}

.vc_row.wpb_row.vc_row-fluid.browse_photo_gallery {
    padding: 100px 0;
}

.vc_row.wpb_row.vc_row-fluid.browse_photo_gallery>.wpb_column.vc_column_container>.vc_column-inner {
    padding: 0 15px;
}

.browse_photo_gallery .uvc-heading {
    padding-bottom: 30px;
}

.browse_photo_gallery .wpb_single_image {
    margin-bottom: 25px;
}

.browse_photo_gallery h4.vc_custom_heading {
    font-size: 22px;
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    letter-spacing: 2px;
    line-height: 1.3;
}

.browse_photo_gallery h4.vc_custom_heading a {}

.browse_photo_gallery .vc_row.wpb_row.vc_inner.vc_row-fluid {
    margin: 0 -25px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.browse_photo_gallery .vc_row.wpb_row.vc_inner.vc_row-fluid .vc_col-sm-4 {
    padding: 45px 25px;
}

.browse_photo_gallery .vc_row.wpb_row.vc_inner.vc_row-fluid img.vc_single_image-img {
    height: 215px;
    width: 100%;
    object-fit: cover;
}

.vc_row.wpb_row.vc_row-fluid.about_story {
    padding: 10px 0;
    padding-bottom: 100px;
}

.vc_row.wpb_row.vc_row-fluid.about_story .uvc-heading {
    padding-bottom: 50px;
}

.vc_row.wpb_row.vc_row-fluid.about_story p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
    padding-right: 10px;
}

.vc_row.wpb_row.president_message_title {
    padding-top: 130px;
}

.president_message_title h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 25px;
    text-align: left;
}

.vc_row.wpb_row.vc_row-fluid.about_story .president_message p {
    padding-bottom: 25px;
}

.vc_row.wpb_row.vc_row-fluid.about_story .president_message p:last-of-type {
    padding-bottom: 0;
}

.vc_row.wpb_row.vc_row-fluid.about_story h5 {
    color: #606060;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 5px;
}

.vc_row.wpb_row.vc_row-fluid.about_story h5 strong {
    color: #21632c;
    font-size: 10px;
    display: block;
    padding-top: 7px;
    font-family: 'IowanOldStyleBT-Roman';
}

.vc_row.wpb_row.vc_row-fluid.about_story .president_message .vc_col-sm-9>.vc_column-inner {
    padding-left: 60px;
}

.vc_row.wpb_row.about_story .president_message .vc_col-sm-3 {
    text-align: center;
}

.vc_row.wpb_row.about_story .president_message .vc_col-sm-3 h4 {
    color: #606060;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 5px;
}

.vc_row.wpb_row.about_story .president_message .vc_col-sm-3 h5 {
    color: #21632c;
    font-size: 10px;
    display: block;
    padding-top: 7px;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: 900;
}

.vc_row.wpb_row.about_story .wpb_single_image {
    margin-bottom: 25px;
}

.vc_row.wpb_row.about_story .theme_btn {
    text-align: center;
    padding: 0 15px;
}

.vc_row.wpb_row.about_story .theme_btn a.vc_general {
    width: 100%;
    padding: 0 15px;
}

.why_kcc_section .upb_row_bg.vcpb-default {
    filter: grayscale(1);
}

.why_kcc_section .upb_row_bg.vcpb-default:after {
    content: "";
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    top: 0;
    left: 0;
}

.why_kcc_section *,
.why_kcc_section .vc_separator.wpb_content_element h4 {
    color: #fff;
}

.why_kcc_section .vc_separator.wpb_content_element .vc_sep_holder .vc_sep_line {
    background: #fff;
    border-color: #fff;
}

.why_kcc_section {
    text-align: center;
    padding: 100px 0;
    padding-bottom: 200px;
}

.why_kcc_section:after {
    content: "";
    background: url(../images/rope.png);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 9px;
    z-index: 3;
}

.why_kcc_section .vc_separator.wpb_content_element {
    padding-bottom: 65px;
}

.why_kcc_section_cols .vc_col-sm-3 {
    text-align: center;
}

.why_kcc_section_cols img.vc_single_image-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-top: 12px;
}

.why_kcc_section_cols figure.wpb_wrapper.vc_figure {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #006524;
    line-height: 90px;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.why_kcc_section_cols h4 {
    font-family: 'IowanOldStyleBT-Roman';
    letter-spacing: 2px;
    font-size: 16px;
    padding-bottom: 10px;
}

.why_kcc_section_cols p {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 2px;
    padding: 0 13px;
}

.explore_club a.vc_general {
    position: absolute;
    bottom: -193px;
    font-size: 25px;
    display: block;
    height: auto;
    padding: 0;
    line-height: 55px;
    background: #006524 !important;
    border: none !important;
    vertical-align: initial;
    top: auto;
    color: #fff !important;
    padding: 0 70px;
    border-radius: 25px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'IowanOldStyleBT-Roman';
    left: 50%;
    transform: translateX(-50%);
}

.vc_row.wpb_row.vc_row-fluid.browse_photo_gallery p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

.container {
    max-width: 1200px;
    width: 1200px;
    padding-top: 0;
}

.container.block>.inner-content {
    margin: 0 -15px;
    width: auto;
}

.vc_row.vc_row-fluid.history_slider_section {
    padding: 65px 0;
}

.history_slider_section .vc_separator.wpb_content_element h4,
.history_slider_section .vc_separator.wpb_content_element h3 {
    color: #fff;
}

.history_slider_section .vc_separator.wpb_content_element .vc_sep_holder .vc_sep_line {
    background: #fff;
    border-color: #fff;
}

.history_slider {
    text-align: center;
    color: #fff;
}

.history_slider h3 {
    color: #fff;
    padding: 10px 10px;
    text-align: center;
    font-size: 25px;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: bold;
    padding-bottom: 20px;
}

.history_slider_content {
    color: #fff;
    padding-top: 60px;
    margin: 0 -25px;
    opacity: 0;
    bottom: -15px;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.slick-current.slick-active .history_slider_content {
    opacity: 1;
    bottom: 0px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    transition-delay: 0.3s;
}

.history_slider_content p {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 2;
    letter-spacing: 1px;
}

.history_slider_content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    padding-bottom: 5px;
}

.history_slider_nav h4 {
    color: #fff;
}

.history_slider {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.history_slider .slick-list {
    padding: 0 100px;
}

.history_slider .slick-list:after {
    content: "";
    background: url(../images/film.png);
    height: 453px;
    width: 100%;
    position: absolute;
    top: 48px;
    left: 0;
    z-index: -1;
    background-size: 100% 100%;
}

.history_slider_nav h4 {
    color: #fff;
    padding: 10px 10px;
    text-align: center;
    font-size: 25px;
    font-family: 'IowanOldStyleBT-Roman';
}

.history_slider_nav .slick-slide.slick-current h4 {
    font-weight: bold;
}

.history_slider_each img {
    height: 302px;
    object-fit: cover;
    border-radius: 18px;
    margin: 65px 0;
    max-width: 500px;
    margin: 65px auto;
    position: static !important;
}

.history_slider_nav {
    margin-top: 50px;
}

.history_slider_wrp button.prev.slick-arrow {
    position: absolute;
    left: -25px;
    top: 50%;
    border: none;
    background: no-repeat;
    padding: 0;
}

.history_slider_wrp button.next.slick-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    border: none;
    background: no-repeat;
    padding: 0;
}

.history_slider_wrp button.slick-arrow:after {
    content: "";
    width: 20px;
    height: 20px;
    background: no-repeat;
    display: block;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.history_slider_wrp button.slick-arrow {
    transform: translateY(-50%);
}

.history_slider_wrp button.prev.slick-arrow:after {
    transform: rotate(135deg);
}

.history_slider_wrp .history_slider button.slick-arrow {
    margin-top: -30px;
}

.vc_row.wpb_row.vc_row-fluid.history_slider_section.history_page {
    padding-bottom: 120px;
}

.vc_row.wpb_row.vc_row-fluid.history_slider_section.history_page:after {
    content: "";
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    width: 100%;
    height: 220px;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.history_slider_section.history_page .wpb_column.vc_column_container {
    z-index: 9;
}

.history_details_section>.vc_column_container>.vc_column-inner {
    padding-top: 0 !important;
}

.history_details_section p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 25px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

.history_details_section h3 {
    color: #006524;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 50px;
    font-weight: bold;
}

.page.page-id-18416 main.master_wrap {
    /*     padding-top: 112px; */
}

.vc_row.wpb_row.vc_row-fluid.faq_top_section {
    padding: 50px 0;
}

.faq_top_section .vc_separator.wpb_content_element span.vc_sep_holder {
    opacity: 0;
}

.faq_top_section p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 14px;
    max-width: 850px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
    padding-right: 10px;
}

.faq_nav_btns .wpb_single_image .vc_figure {
    width: 90px;
    height: 90px;
    border: 2px solid #006524;
    border-radius: 50%;
    position: relative;
    background: #f5f5f5;
}

.faq_nav_btns .wpb_single_image .vc_figure img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-top: 12px;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.faq_nav_btns {
    padding-top: 25px;
}

.faq_nav_btns .vc_btn3-container {
    width: 100%;
    text-align: center;
}

.faq_nav_btns .vc_btn3-container a.vc_general {
    padding: 0;
    background: none !important;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    border-bottom: 1px solid transparent;
    border-radius: 0;
}

.faq_nav_btns .wpb_single_image {
    margin-bottom: 20px;
}

.faq_list_wrp.vc_row {
    padding: 65px 0;
}

.faq_list_wrp.vc_row h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    color: #21632c;
    font-weight: bold;
    letter-spacing: 3px;
}

.vc_toggle.vc_toggle_default {
    border-top: 1px solid #21632c;
    padding: 50px;
    margin: 0;
}

.vc_toggle.vc_toggle_default:last-of-type {
    border-bottom: 1px solid #21632c;
}

.vc_toggle_title h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    color: #21632c;
    letter-spacing: 2px;
}

.vc_toggle_content p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 14px;
    letter-spacing: 1px;
    line-height: 2;
}

.vc_toggle_content p:last-of-type {
    padding-bottom: 0;
}

.vc_toggle_content {
    padding-top: 10px;
    margin: 0 !important;
}

.vc_toggle .vc_toggle_title i.vc_toggle_icon {
    left: auto !important;
    right: 20px;
    width: 18px;
    height: 18px;
    border: 1px solid #21632c;
    border-radius: 50%;
    background: #f5f5f5;
    text-align: center;
}

.vc_toggle .vc_toggle_title i.vc_toggle_icon:after {
    content: "";
    width: 6px;
    height: 6px;
    background: none;
    border-bottom: 1px solid #21632c;
    border-right: 1px solid #21632c;
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    margin: 0;
    top: auto;
    left: auto;
    margin-left: 1px;
    margin-bottom: 3px;
    visibility: visible;
}

.vc_toggle .vc_toggle_title i.vc_toggle_icon:before {
    opacity: 0 !important;
}

.vc_toggle.vc_toggle_active .vc_toggle_title i.vc_toggle_icon:after {
    transform: rotate(-135deg);
    margin-bottom: 2px;
}

.vc_row.wpb_row.vc_row-fluid.faq_list_section {
    padding-bottom: 100px;
}

.faq_nav_btns .vc_btn3-container a.vc_general.active,
.faq_nav_btns .vc_btn3-container a.vc_general:hover {
    border-color: #21632c;
}

.vc_row.wpb_row.vc_row-fluid.kcc_store_section {
    padding-top: 80px;
}

.vc_row.wpb_row.vc_inner.kcc_store_items_cols {
    max-width: 800px;
    margin: 0 auto;
}

.kcc_store_items_cols .wpb_column.vc_column_container.vc_col-sm-2 {
    width: 33.33%;
    text-align: center;
    padding: 15px 35px;
}

.vc_row.wpb_row.vc_inner.kcc_store_items_cols .vc_single_image-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    display: block;
}

.kcc_store_items_cols .wpb_single_image .vc_figure {
    width: 100%;
}

.vc_row.wpb_row.vc_inner.kcc_store_items_cols .vc_single_image-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    display: block;
    border: 2px solid #21632c;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
}

.vc_inner.kcc_store_items_cols .vc_single_image-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-top: 18px;
}

.kcc_store_items_cols .wpb_single_image.wpb_content_element {
    margin-bottom: 20px;
}

.kcc_store_items_cols .vc_btn3-container a.vc_general.vc_btn3 {
    background: none !important;
    border: none !important;
    text-transform: uppercase;
    font-size: 12px;
    padding: 0 10px;
    position: static;
}

.kcc_store_items_cols .wpb_wrapper {
    position: relative;
}

.kcc_store_items_cols .vc_btn3-container a.vc_general.vc_btn3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.vc_row.wpb_row.vc_row-fluid.about_kcc_store_section {
    padding-top: 100px;
    padding-bottom: 150px;
}

.about_kcc_store_section p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 14px;
    max-width: 865px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

.kcc_facilities_top_section {
    padding: 80px 0;
}

.kcc_facilities_top_section .wpb_text_column p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 14px;
    max-width: 865px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
    text-align: center;
}

.kcc_facilities_top_section .wpb_text_column.wpb_content_element {
    margin: 0;
}

.page-template-template-staff h2.block-title {
    display: none;
}

.header_spacer {
    background: #21632c;
    height: 0;
}

.committee_section .row {
    justify-content: center;
}

.committee_section {
    padding: 100px 0;
    background-size: cover !important;
}

.page-template-template-staff .committee_section .staff .photo {
    transform: none !important;
    width: 100%;
    height: auto;
    padding: 60% 0;
    background-size: cover;
    background-position: top center;
    margin: 0;
}

.committee_section .staff_img_wrp {
    padding: 0 25px;
}

.staff_content_wrp {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 25%);
}

.staff_content_wrp_inner {
    border: 1px solid #21632c;
    padding: 20px 15px;
    position: relative;
    padding-bottom: 40px;
    min-height: 185px;
}

.vc_row.wpb_row.committee_section_top {
    padding-bottom: 30px;
}

.vc_row.wpb_row.committee_section_top p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
    text-align: center;
}

.page-template-template-staff .staff .staff_content_wrp_inner .name {
    color: #21632c;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 5px;
}

.page-template-template-staff .staff .staff_content_wrp_inner .position {
    color: #21632c;
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 8px;
}

.page-template-template-staff .staff .staff_content_wrp_inner .email {
    position: absolute;
    bottom: 20px;
    left: 0;
    text-align: center;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
}

.page-template-template-staff .staff .staff_content_wrp_inner .phone {
    text-align: center;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
}

.page-id-54.page-template-template-staff .staff .staff_content_wrp_inner .phone {
    /* position: absolute; */
    /* bottom: 20px; */
    /* left: 0; */
    padding: 10px 0;
}

.page-id-54.page-template-template-staff .staff .staff_content_wrp_inner .email {
    position: static;
}

.page-template-template-staff .staff .staff_content_wrp_inner h4 {
    color: #606060;
    font-size: 11px;
}

.page-template-template-staff .staff .staff_content_wrp_inner .email a,
.page-template-template-staff .staff .staff_content_wrp_inner .phone a {
    color: #606060;
}

.page-template-template-staff .staff .staff_content_wrp_inner .email i,
.page-template-template-staff .staff .staff_content_wrp_inner .phone i {
    color: #21632c;
    font-size: 20px;
    vertical-align: middle;
    line-height: 1;
    margin-top: -2px;
    margin-right: 4px;
}

.page-template-template-staff .committee_section .staff {
    margin-bottom: 60px;
}

.dining_section.facility_page .dining_content_wrp {
    align-items: flex-end;
}

.dining_section.facility_page .dining_content_inner_img {
    margin-right: -165px;
    left: -150px;
}

.dining_section.facility_page .dining_content {
    padding: 1px;
    z-index: 9;
    right: -50px;
    bottom: -35px;
}

.dining_section.facility_page .dining_content_inner {
    padding-bottom: 100px;
}

.facility_page .dining_content .vc_btn3-container.theme_btn {
    position: absolute;
    bottom: 50px;
    width: 100%;
    left: 0;
    padding: 0 20px;
    margin: 0;
    padding-left: 55px;
}

.facility_page .dining_content_inner h3 {
    padding-bottom: 20px;
    text-align: left;
}

.facility_list_section {}

.facility_item_each h4 img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -17px;
}

.facility_item_each h4 {
    position: relative;
    padding-left: 50px;
    color: #21632c;
    font-size: 24px;
    font-family: 'IowanOldStyleBT-Roman';
    margin-bottom: 35px;
}

.facility_item_each p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: left;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.facility_item_each {
    display: flex;
    align-items: center;
    padding-bottom: 150px;
    margin: 0 -25px;
}

.facility_item_each .wpb_single_image.wpb_content_element {
    margin: 0;
}

.facility_item_each .wpb_column.vc_col-sm-6 {
    padding: 0 15px;
}

.facility_item_each .theme_btn.vc_btn3-inline {
    margin: 0;
}

.facility_item_each .wpb_text_column {
    margin-bottom: 20px;
}

.vc_row.wpb_row.vc_row-fluid.career_section_top {
    padding-top: 65px;
    text-align: center;
}

.career_section_top p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 20px;
    letter-spacing: 1px;
    line-height: 2;
}

.page-id-18416 .header_right a {
    /*     color: #606060; */
}

.page-id-18416 .header_right img {
    /*     filter: grayscale(10) brightness(1.8) !important; */
}

.page-id-18416 .top_menu li input {
    /*     border-bottom: 1px solid #606060;
    color: #606060; */
}

.page-id-18416 .top_menu li input::-webkit-input-placeholder {
    /* Edge */
    /*   color: #606060  !important;
  opacity: 0.7; */
}

.page-id-18416 .top_menu li input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    /*   color: #606060  !important;
  opacity: 0.7; */
}

.page-id-18416 .top_menu li input::placeholder {
    /*   color: #606060  !important;
  opacity: 0.7; */
}

.page-id-18416 .top_menu li {
    /*     border-color: #606060; */
}

.vc_row.wpb_row.vc_row-fluid.career_listing_wrp h3 {
    text-align: center;
    color: #006524;
    font-size: 16px;
    font-weight: bold;
}

.career_section_top .wpb_text_column.wpb_content_element {
    margin-bottom: 15px;
}

.career_listing_each {
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0px 0px 12px 6px rgb(0 0 0 / 28%);
    border-radius: 10px;
    z-index: 1;
}

.career_listing_each:after {
    content: "";
    background: rgb(33, 99, 44);
    background: linear-gradient(0deg, rgba(33, 99, 44, 1) 0%, rgba(81, 152, 92, 1) 100%);
    position: absolute;
    left: -3px;
    top: -3px;
    bottom: -3px;
    right: -3px;
    z-index: -1;
    border-radius: 10px;
}

.career_listing_each_inner {
    padding: 25px;
    padding-top: 30px;
    background-color: #fff;
    border-radius: 8px;
}

.career_btn_wrp {
    text-align: right;
    padding-top: 25px;
}

.career_btn_wrp a.theme_btn {
    margin-left: 15px;
}

.career_listing_items {
    padding-top: 50px;
}

.career_listing_each_inner h4 {
    color: #21632c;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    position: relative;
    padding-left: 45px;
    padding-bottom: 25px;
}

.career_listing_each_inner h4 img {
    width: 30px;
    position: absolute;
    left: 0;
    top: 0px;
}

.career_listing_each_inner p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 20px;
    letter-spacing: 1px;
    line-height: 2;
}

.career_listing_each:last-child {
    margin: 0;
}

.career_listing_wrp .wpb_text_column.wpb_content_element {
    margin: 0;
}

.single_career_page_wrp {
    padding: 65px 0;
}

.single_career_each {
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0px 0px 12px 6px rgb(0 0 0 / 28%);
    border-radius: 10px;
    z-index: 1;
}

.single_career_each:after {
    content: "";
    background: rgb(33, 99, 44);
    background: linear-gradient(0deg, rgba(33, 99, 44, 1) 0%, rgba(81, 152, 92, 1) 100%);
    position: absolute;
    left: -3px;
    top: -3px;
    bottom: -3px;
    right: -3px;
    z-index: -1;
    border-radius: 10px;
}

.single_career_each_inner {
    padding: 25px;
    padding-top: 30px;
    background-color: #fff;
    border-radius: 8px;
}

.single_career_each_inner h3 {
    color: #21632c;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    position: relative;
    padding-bottom: 25px;
}

.single_career_each_inner ul li {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
}

.single_career_each_inner ul li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    background: #606060;
}

.single_career_form h2 {
    color: #21632c;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    margin-bottom: 0;
    padding: 0 5px;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.single_career_form h2:before,
.single_career_form h2:after {
    background: #21632c;
    border-color: #21632c;
    margin-bottom: 0;
    width: 45px;
    content: "";
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    margin-bottom: 5px;
}

.single_career_form {
    padding-top: 25px;
}

.single_career_form .wpcf7 span.wpcf7-form-control-wrap input,
.single_career_form .wpcf7 span.wpcf7-form-control-wrap textarea,
.contact_form_wrp_right .wpcf7 span.wpcf7-form-control-wrap textarea,
.contact_form_wrp_right .wpcf7 span.wpcf7-form-control-wrap input,
.contact_form_wrp_right .wpcf7 span.wpcf7-form-control-wrap select {
    width: 100%;
    padding: 12px 15px;
    height: auto;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 13px;
    margin-bottom: 20px;
    resize: none;
    border-radius: 0;
    max-height: 115px;
}

.single_career_form .wpcf7 label,
.contact_form_wrp_right .wpcf7 label {
    font-weight: 100;
    font-size: 13px;
    text-transform: uppercase;
    color: #606060;
}

.vc_row.wpb_row.vc_row-fluid.contact_top_section {
    padding-top: 65px;
}

.vc_row.wpb_row.vc_row-fluid.contact_top_section p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
    text-align: center;
}

.vc_row.wpb_row.vc_row-fluid.contact_form_wrp {}

.contact_form_wrp_left h4 {
    color: #21632c;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: bold;
    letter-spacing: 1px;
}

.contact_form_wrp_left h4 i {}

.contact_form_wrp_left p {
    color: #21632c;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    padding-bottom: 35px;
    padding-top: 5px;
}

.contact_form_wrp_right h4 {
    color: #21632c;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    letter-spacing: 1px;
}

.contact_form_wrp_left.wpb_column.vc_column_container {
    padding-top: 60px;
}

.single_career_form .wpcf7 .attach_cv span.wpcf7-form-control-wrap input {}

.single_career_form .wpcf7 .attach_cv .notes {
    display: inline-block;
}

.single_career_form .wpcf7 .attach_cv span.wpcf7-form-control-wrap.cv {
    display: inline-block;
    position: relative;
}

.single_career_form .wpcf7 .attach_cv span.wpcf7-form-control-wrap.cv:before {
    content: "Choose File";
    border: 1px solid #21632c;
    border-radius: 6px;
    padding: 5px 8px;
    display: inline-block;
    position: absolute;
    background: #fff;
    text-transform: uppercase;
    font-size: 10px;
    top: 2px;
    color: #21632c;
    font-weight: bold;
}

.history_slider_wrp {
    max-height: 735px;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails {
    width: auto !important;
    max-width: initial !important;
    margin: 0 -45px !important;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item {
    width: 33.33% !important;
    max-width: 33.33%;
    padding: 35px 40px;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item1 {
    padding-top: 66%;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item2 {
    margin: 0 !important;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item0 {
    border: none;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item>a {
    margin-right: 5px;
    margin-bottom: 5px;
    margin: 0;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-title2 {
    font-size: 22px;
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    letter-spacing: 2px;
    line-height: 1.3;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg_back {
    position: relative;
    display: inline-block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
    padding: 0 !important;
    vertical-align: middle;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg_back:after {}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg_back:after {
    /*     content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    height: 112%;
    width: 50%;
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px; */
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg_back:hover:after {
    /*     width: 100%; */
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg_back i.bwg-icon-arrow-left {
    vertical-align: middle;
    margin-bottom: 2px;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails {
    width: auto !important;
    max-width: initial !important;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {
    width: 25% !important;
    max-width: 25%;
    padding: 1px;
    overflow: hidden;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item0 {
    border: none;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item>a {
    margin: 0;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 {
    margin-top: 25px;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a,
.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 input.bwg_current_page {
    width: 30px;
    padding: 0;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    line-height: 28px;
    font-size: 14px;
    color: #21632c !important;
    border-color: #21632c;
    border-radius: 50%;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 span {
    color: #21632c !important;
}

.gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 input.bwg_current_page {
    background: #21632c;
    color: #fff !important;
}

.vc_row.wpb_row.vc_row-fluid.browse_photo_gallery .wpb_text_column {
    margin: 0;
}

.cv_submit_wrp {
    min-width: 115px;
    position: relative;
    display: block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 0;
    width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    margin: 0 auto;
    /* overflow: hidden; */
}

.cv_submit_wrp input.wpcf7-form-control.wpcf7-submit {
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    padding: 0;
    width: 100%;
    background-color: transparent !important;
}

.cv_submit_wrp:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px;
}

.cv_submit_wrp:hover:before {
    width: 100%;
}

.cv_submit_wrp span.ajax-loader {
    position: absolute;
    left: 100%;
    top: 25%;
}

.wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

span.wpcf7-not-valid-tip {
    position: absolute;
    bottom: 3px;
    left: 0;
    font-size: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #006524;
    text-align: center;
    padding: 15px;
}

.kcc_store_items_cols .vc_btn3-container a.vc_general.vc_btn3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.contact_form_wrp_right br {
    display: none;
}

.contact_form_wrp_right .wpcf7 .wpcf7-form-control.wpcf7-select {}

.intl-tel-input.allow-dropdown .flag-container,
.intl-tel-input.separate-dial-code .flag-container {
    right: 0;
    left: auto;
    padding-bottom: 11px;
}

.contact_form_wrp_right .wpcf7 .wpcf7-form-control {
    margin-bottom: 10px !important;
}

.cv_submit_wrp input.wpcf7-form-control.wpcf7-submit {
    margin: 0 !important;
}

.vc_row.wpb_row.vc_row-fluid.mail_id_wrp {
    padding: 50px 0;
    padding-bottom: 100px;
}

.vc_row.wpb_row.vc_row-fluid.contact_form_wrp {
    padding-bottom: 65px;
}

.vc_row.wpb_row.vc_row-fluid.mail_id_wrp .vc_row.wpb_row.vc_inner.vc_row-fluid .wpb_column.vc_column_container.vc_col-sm-6 {
    padding: 0 50px;
}

.vc_row.wpb_row.vc_row-fluid.mail_id_wrp .vc_row.wpb_row.vc_inner.vc_row-fluid {
    margin: 0 -50px;
    display: flex;
    flex-wrap: wrap;
}

.mail_id_wrp .vc_row.wpb_row.vc_inner.vc_row-fluid .vc_col-sm-6 .vc_column-inner {
    padding: 55px 35px;
    border: 5px solid #3d8349;
    height: 100%;
}

.mail_id_wrp .vc_col-sm-6 .vc_column-inner h5 {
    color: #006524;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: bold;
    letter-spacing: 1px;
    padding-top: 35px;
    padding-bottom: 5px;
}

.mail_id_wrp .vc_col-sm-6 .vc_column-inner p,
.mail_id_wrp .vc_col-sm-6 .vc_column-inner p a {
    color: #006524;
    font-size: 16px;
}

.mail_id_wrp .vc_col-sm-6 .vc_column-inner p i {
    margin-right: 5px;
}

.gmap_title h3 img {
    width: 35px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gmap_title h3 {
    text-align: center;
}

.vc_row.gmap_section {
    padding: 50px;
    padding-bottom: 100px;
}

.vc_row.gmap_section .wpb_gmaps_widget.wpb_content_element {
    padding-top: 35px;
}

.list_magzine {
    width: 100%;
}

.list_magzine a h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    margin-bottom: 25px;
    letter-spacing: 2px;
    height: 28px;
    overflow: hidden;
}

.list_magzine a img {
    box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.3);
}

.list_magzine .col-md-3 {
    padding-bottom: 65px;
}

.list_magzine a img {
    box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.3);
    height: 490px;
    width: 100%;
    object-fit: cover;
}

.list_magzine .magzn_img {
    position: relative;
    padding: 63% 0px;
}

.magazin_top_section {
    padding: 85px 0;
    padding-bottom: 25px;
    text-align: center;
}

.list_magzine .magzn_img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.magazin_top_section p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
    padding-right: 10px;
}

.magazin_flteritem_wrp_col {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    align-items: center;
}

.magazin_flteritem_wrp_col[style="display: inline-block;"] {
    display: flex !important;
}

.magazin_flteritem_wrp {
    position: relative;
    z-index: 99;
    margin-right: 15px;
}

.magazin_flteritem {
    position: absolute;
    left: -15px;
    top: 100%;
    margin-top: 20px;
    min-width: 100px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    background: #006524;
    padding: 20px 35px;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.magazin_flteritem_wrp_col form img {
    width: 12px;
    vertical-align: middle;
    margin-bottom: 2px;
}

button.magazin_flter_btn img {
    width: 15px;
    vertical-align: middle;
    margin-right: 3px;
}

button.magazin_flter_btn {
    border: none;
    padding: 10px 15px;
    background: none;
    cursor: pointer;
    color: #006524;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    vertical-align: middle;
    letter-spacing: 1px;
    margin-left: -15px;
}

button.magazin_flter_btn.active {
    background: #006524;
    color: #fff;
}

button.magazin_flter_btn.active img {
    filter: grayscale(10) brightness(10);
}

button.magazin_flter_btn span {
    color: inherit;
}

li.magzine_filter a {
    color: #006524;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    display: block;
    margin: 3px 0;
}

.magazin_flteritem_wrp_col form input {
    border: none;
    color: #006524;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    letter-spacing: 2px;
}

.magazin_flteritem_wrp_col form input::-webkit-input-placeholder {
    /* Edge */
    color: #006524;
}

.magazin_flteritem_wrp_col form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #006524;
}

.magazin_flteritem_wrp_col form input::placeholder {
    color: #006524;
}

.magazin_flteritem.active {
    margin: 0;
    visibility: visible;
    opacity: 1;
}

.magazin_flteritem_wrp_col:after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background: #e6e6e6;
    margin-top: 5px;
}

.list_magzine {
    width: 100%;
    margin-top: 50px;
}

a.load_magazine {
    position: relative;
    display: block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 100px;
}

a.load_magazine:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

a.load_magazine:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px;
}

a.load_magazine:hover:before {
    width: 100%;
}

.page-template-template-magazine #loadingIndicator {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    z-index: 999;
}

.page-template-template-magazine .layer-1.paper-spinner {
    border-color: #21632c;
}

.magazin_top_section .wpb_text_column.wpb_content_element {
    margin: 0;
}

button.magazin_flter_btn span.year_added {
    font-size: 14px;
    bottom: -1px;
    display: inline-block;
    position: relative;
}

.vc_row.dining_single_page_wrp {}

.single_dining_page_col {
    width: 75%;
    padding: 0 15px;
}

.single_dining_page_col+.single_dining_page_col {
    width: 25%;
}

.single_dining_page_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    position: relative;
}

.single_dining_page_container {
    padding: 100px 0;
}

.single_dining_page_col .col-md-4 {
    width: 100%;
    padding: 0;
    float: none;
}

.single_dining_page_col .col-md-4 img {}

.single_dining_page_col .col-md-4 h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    padding-bottom: 15px;
}

.vc_row.dining_single_page_row {
    padding-bottom: 50px;
}

.vc_row.dining_single_page_row h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: normal;
    padding-bottom: 20px;
}

.dining_single_page_row.dining_single_top {
    padding-bottom: 80px;
}

.vc_row.dining_single_page_row p,
.vc_row.dining_single_page_row li {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
    padding-right: 10px;
}

.vc_row.dining_single_page_row li {
    padding-bottom: 10px;
}

.vc_row.dining_single_page_row p:last-of-type,
.vc_row.dining_single_page_row li:last-of-type {
    padding-bottom: 0;
}

.vc_row.dining_single_page_row.dining_single_dress_code p img {
    position: absolute;
    left: 0;
    width: 60px;
}

.vc_row.dining_single_page_row.dining_single_dress_code p {
    position: relative;
    padding-left: 75px;
}

.dining_single_contact p a {
    color: #006524;
    font-size: 13px;
}

.single_dining_page_col .dining_widget,
.single_dining_page_col .col-md-4 {
    padding: 30px 0;
    border-bottom: 1px solid #e6e6e6;
    clear: both;
}

.single_dining_page_col .dining_widget:last-of-type {
    border-bottom: none;
    /*border-top: 1px solid #e6e6e6;
    margin-top: 35px;*/
}

div#text-2 {}

.single_dining_page_col .dining_widget h5 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    padding-bottom: 15px;
}

.single_dining_page_col .dining_widget h5 a {
    color: #006524;
}

.ourMoments_widget ul li {
    list-style: none;
    padding: 0;
}

.ourMoments_widget ul li.slick-slide {
    position: relative;
    height: 200px;
}

.ourMoments_widget .slick-initialized .slick-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.ourMoments_widget ul li:before {
    display: none;
}

.ourMoments_widget .slick-arrow {
    z-index: 9;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
}

.ourMoments_widget .slick-arrow:before {
    content: "";
}

.ourMoments_widget .slick-arrow.slick-next {
    right: 10px;
}

.ourMoments_widget .slick-arrow.slick-prev {
    left: 10px;
    transform: rotate(135deg);
}

.single_dining_page_col .dining_widget:first-of-type {
    padding-top: 0;
}

.single_dining_page_col .col-md-4 {
    border: none;
    padding-bottom: 15px;
    padding-top: 0;
}

.single_dining_page_col .theme_btn {
    width: 100%;
    max-width: 235px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.dining_single_page_row.dining_single_top .vc_btn3-container.theme_btn {
    width: auto;
    margin: 0;
    max-width: initial;
    display: inline-block;
    margin-right: 10px;
}

.magazin_flteritem li {}

.magazin_flteritem li label span {
    white-space: nowrap;
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    position: relative;
    display: block;
    padding-left: 25px;
    cursor: pointer;
    letter-spacing: 1px;
}

.magazin_flteritem li label span:before {
    content: "";
    width: 15px;
    height: 15px;
    background: #006524;
    position: absolute;
    left: 2px;
    top: 0;
    border-radius: 2px;
    box-shadow: 0px 0px 0px 1.5px #fff;
}

.magazin_flteritem li label input:checked+span:before {
    background: #fff;
    border: 2px solid #006524;
}

.magazin_flteritem li label input.filter_check {
    position: absolute;
    opacity: 0;
    z-index: -99;
}

.magazin_flteritem li label {
    display: block;
    margin: 10px 0;
}

.magazin_flteritem li:before {
    display: none;
}

.single_dining_page_col .magazin_flteritem_wrp_col {
    padding: 15px 0;
    padding-bottom: 0;
}

.single_dining_page_row .listing_content .each_listing {
    position: relative;
    padding: 40px 0;
    padding-left: 370px;
    min-height: 280px;
    border-bottom: 1px solid #e6e6e6;
}

.single_dining_page_row .listing_content .each_listing img {
    position: absolute;
    left: 0;
    top: 40px;
    height: 200px;
    width: 315px;
    object-fit: cover;
}

.single_dining_page_row .listing_content .each_listing a.addtoany_share img {
    position: static;
    width: 30px !important;
    height: auto;
}

.single_dining_page_row .listing_content .each_listing a.theme_btn {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    padding: 0 15px;
    min-width: 140px;
    margin-right: 15px;
}

.single_dining_page_row .listing_content .each_listing .share_btn {
    margin-left: 0;
}

.single_dining_page_row .listing_content .each_listing h4 {
    color: #21632c;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}

.single_dining_page_row .listing_content .each_listing h4:after {
    content: "";
    display: block;
    background: #21632c;
    height: 7px;
    width: 40px;
    margin: 20px 0;
}

.single_dining_page_row .listing_content .each_listing p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 25px;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 1.7;
}

.single_dining_page_row .listing_content a.load_more {
    position: relative;
    display: inline-block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
    display: block;
    width: 150px;
    margin: 0 auto;
    margin-top: 50px;
}

.single_dining_page_row .listing_content a.load_more:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px;
}

.single_dining_page_row .listing_content a.load_more:hover:before {
    width: 100%;
}

.single_dining_page_row .listing_content a.load_more:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

.upcoming_event_each a.event_img {
    display: block;
    padding: 33.33%;
    position: relative;
}

.upcoming_event_each a.event_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.upcoming_event_each .share_btn .addtoany_shortcode a img {
    position: static;
    height: auto;
}

.upcoming_event_each a.theme_btn,
.upcoming_event_each .share_btn {
    vertical-align: middle;
}

.upcoming_event_each .share_btn {
    margin-top: 0px;
}

.home_banner_section {
    z-index: 99;
    position: relative;
}

.single_dining_page_container {
    padding-top: 235px;
}

.page-id-18640 .single_dining_page_container,
.page-id-18677 .single_dining_page_container {}

.vc_row.wpb_row.vc_row-fluid.single_dining_title {
    position: relative;
    margin-top: -65px;
    top: -50px;
    margin-right: -350px;
}

.vc_row.wpb_row.vc_row-fluid.single_dining_title .vc_separator.wpb_content_element {
    justify-content: flex-start;
}

.single_dining_page_col p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
    padding-right: 10px;
}

.dining_single_page_row.dining_single_dress_code ul {
    list-style: none;
    padding-left: 75px;
    position: relative;
}

.dining_single_page_row.dining_single_dress_code ul img {
    width: 50px;
    position: absolute;
    left: 0;
    top: 0;
}

.dining_single_page_row.dining_single_dress_code li {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
    padding-right: 10px;
}

.dining_single_page_row.dining_single_dress_code li:before {}

.single_dining_page_col:first-child {
    padding-right: 75px;
}

.single_dining_page_col:first-child .theme_btn {
    display: inline-block;
    width: auto;
    margin-right: 10px;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.browse_outlet_wrp {
    padding: 60px;
    margin: 0 0px;
    background: #fff;
    box-shadow: 0px 0px 30px 5px rgb(0 0 0 / 18%);
    position: relative;
    margin-top: 50px;
    align-content: center;
    display: flex;
    align-items: center;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.browse_outlet_wrp:before {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: block;
    border: 1px solid #21632c;
}

.browse_outlet_wrp .wpb_single_image,
.dining_menu_right .wpb_single_image {
    display: flex;
    align-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.browse_outlet_wrp .wpb_single_image .vc_single_image-wrapper:after,
.dining_menu_right .wpb_single_image .vc_single_image-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 6;
}

.browse_outlet_wrp .wpb_single_image .wpb_singleimage_heading,
.dining_menu_right .wpb_single_image .wpb_singleimage_heading {
    order: 2;
    color: #006524;
    font-size: 17px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-left: 10px;
    padding-top: 4px;
}

.browse_outlet_wrp .wpb_single_image figure.wpb_wrapper.vc_figure,
.dining_menu_right .wpb_single_image figure.wpb_wrapper.vc_figure {
    width: 25px;
}

.browse_outlet_wrp h4 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-top: 4px;
    text-align: left;
    padding-bottom: 30px;
}

.browse_outlet_wrp .uvc-heading h2 {
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    position: relative;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px !important;
}

.browse_outlet_wrp .wpb_text_column.wpb_content_element {
    text-align: center;
    margin: 0;
}

.browse_outlet_wrp .wpb_text_column.wpb_content_element a {
    color: #006524;
    font-size: 12px;
    text-transform: uppercase;
}

.browse_outlet_wrp .wpb_text_column.wpb_content_element p {
    padding: 0;
}

.browse_outlet_wrp .wpb_text_column.wpb_content_element p:first-child {
    padding-top: 30px;
    padding-bottom: 15px;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.browse_outlet_wrp .vc_col-sm-6 {
    width: 55%;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.browse_outlet_wrp .vc_col-sm-6:first-child {
    width: 45%;
}

.browse_outlet_wrp .uvc-heading h2:before,
.browse_outlet_wrp .uvc-heading h3:before,
.browse_outlet_wrp .uvc-heading h4:before,
.browse_outlet_wrp .uvc-heading h2:after,
.browse_outlet_wrp .uvc-heading h3:after,
.browse_outlet_wrp .uvc-heading h4:after {
    display: none;
}

.browse_outlet_wrp .uvc-sub-heading.ult-responsive {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px !important;
}

.browse_outlet_wrp .uvc-sub-heading.ult-responsive:after {
    content: "";
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #006524;
    vertical-align: middle;
    margin: 0 7px;
}

.browse_outlet_wrp .uvc-sub-heading.ult-responsive:before {
    content: "";
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #006524;
    vertical-align: middle;
    margin: 0 7px;
}

.browse_outlet_wrp .uvc-heading {
    padding-top: 50px;
}

.dining_promotion_wrp {
    padding-top: 50px;
}

.dining_promotion_wrp h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-top: 4px;
    text-align: left;
    padding-bottom: 30px;
}

.dining_promotion_wrp p {}

.dining_menu_row {}

.dining_menu_row .vc_col-sm-3 {
    width: 40%;
}

.dining_menu_row .vc_col-sm-9 {
    width: 60%;
}

.dining_menu_right p {
    padding: 0;
}

.dining_menu_right .wpb_text_column.wpb_content_element {
    margin-bottom: 20px;
}

.dining_menu_row {
    position: relative;
    margin: 35px -15px;
    display: flex;
}

.dining_menu_row:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    background: #ebebeb;
    left: 15px;
    right: 15px;
    display: block;
}

.snr_listing_section {
    padding: 85px 0;
}

.snr_listing_top {
    text-align: center;
    padding-bottom: 65px;
}

.snr_listing_top h2 {
    color: #006524;
    font-size: 25px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 50px;
    position: relative;
}

.snr_listing_top h2 strong {
    display: flex;
    justify-content: center;
    font-weight: normal;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
}

.snr_listing_top h2 strong:after,
.snr_listing_top h2 strong:before {
    content: "";
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #006524;
    vertical-align: middle;
    margin: 0 7px;
    margin-bottom: 2px;
}

.snr_listing_top h2 strong:after {
    content: "";
}

.snr_listing_top h2 strong:before {
    content: "";
}

.snr_listing_wrp_inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -50px;
}

.snr_listing_wrp_inner ul li {
    width: 50%;
    padding: 0 50px;
    margin-bottom: 150px;
}

.snr_listing_content h4 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 25px;
    padding-left: 42px;
    position: relative;
}

.snr_listing_content p,
.snr_listing_top p {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

.snr_listing_top p {
    padding-bottom: 50px;
}

.snr_listing_top .theme_btn {
    margin: 0 8px;
}

.snr_listing_content h4 img {
    width: 30px;
    position: absolute;
    left: 0;
    top: 0;
}

.snr_listing_content {
    position: relative;
    padding: 35px;
    border-radius: 7px;
    z-index: 1;
}

.snr_listing_content .theme_btn {
    margin-right: 15px;
    margin-top: 15px;
}

.snr_listing_content_wrp:after {
    content: "";
    background: rgb(33, 99, 44);
    background: linear-gradient(0deg, rgba(33, 99, 44, 1) 0%, rgba(81, 152, 92, 1) 100%);
    position: absolute;
    left: -3px;
    top: -3px;
    bottom: -3px;
    right: -3px;
    z-index: -1;
    border-radius: 8px;
}

.snr_listing_content_wrp {
    position: relative;
    z-index: 1;
    margin-top: -85px;
    right: -25px;
    box-shadow: 0px 0px 12px 6px rgb(0 0 0 / 28%);
    border-radius: 8px;
}

.snr_listing_image {
    margin-left: -50px;
    margin-right: 15px;
}

.snr_listing_image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.snr_listing_image {
    margin-left: -50px;
    margin-right: 15px;
    position: relative;
    padding: 30% 0;
}

.snr_listing_wrp_inner ul li:nth-child(2) {
    margin-top: 320px;
}

.snr_listing_wrp_inner ul li:nth-child(odd) {
    margin-top: -320px;
}

.snr_listing_wrp_inner ul li:nth-child(even) {}

.snr_listing_wrp_inner ul li:first-child {
    margin-top: 0;
}

.snr_listing_wrp_inner ul li:nth-child(even) .snr_listing_image {
    margin-left: 15px;
    margin-right: -50px;
}

.snr_listing_wrp_inner ul li:nth-child(even) .snr_listing_content_wrp {
    right: auto;
    left: -25px;
}

.each_sport_page_section {
    padding: 85px 0;
}

.sports_page_tabs_wrp {
    padding-top: 25px;
}

.sports_page_tabs_wrp ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
    justify-content: center;
}

.sports_page_tabs_wrp li.sports_page_tabs_item {
    width: 16.66%;
    padding: 15px 25px;
}

.sports_page_tabs_wrp li.sports_page_tabs_item a {
    display: block;
    position: relative;
}

.sports_page_tabs_img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #21632c;
    line-height: 88px;
    background: #f5f5f5;
    margin: 0 auto;
    text-align: center;
    background: #f5f5f5;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.sports_page_tabs_img img {
    width: auto;
    height: 50px;
    object-fit: contain;
    max-width: 65px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.sports_page_tabs_wrp li.sports_page_tabs_item h5 {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0 10px;
    max-width: 200px;
    color: #606060;
}

.sports_page_tabs_wrp li.sports_page_tabs_item a:hover .sports_page_tabs_img {
    background: #006524;
}

.sports_page_tabs_wrp li.sports_page_tabs_item a:hover .sports_page_tabs_img img {
    filter: grayscale(10) brightness(10);
}

.about_sport_comitte_wrp {
    padding: 100px 0;
}

.about_sport_comitte_wrp h2 {}

.sport_comitte_wrp_inner li img {
    width: 40px;
}

.sport_comitte_wrp_inner h3 {
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    position: relative;
    margin-bottom: 5px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-bottom: 25px !important;
}

.sport_comitte_wrp_inner h3:before,
.sport_comitte_wrp_inner h3:after {
    content: "";
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #006524;
    vertical-align: middle;
    margin: 0 7px;
}

.sport_comitte_wrp_inner h4:after {}

.sports_item_about_img_wrp img {
    width: 100%;
    margin-bottom: 25px;
}

.sport_comitte_wrp_inner {
    padding: 50px;
    padding-bottom: 0;
}

.sport_comitte_wrp {
    position: relative;
    z-index: 1;
    border-top: 5px solid #51985d;
    border-bottom: 5px solid #21632c;
}

.sport_comitte_wrp:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 5px;
    z-index: -1;
    border-radius: 0;
    background-size: 100% 100%;
    background: rgb(33, 99, 44);
    background: linear-gradient(0deg, rgba(33, 99, 44, 1) 0%, rgba(81, 152, 93, 1) 100%);
}

.sport_comitte_wrp:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 5px;
    z-index: -1;
    border-radius: 0;
    background-size: 100% 100%;
    background: rgb(33, 99, 44);
    background: linear-gradient(0deg, rgba(33, 99, 44, 1) 0%, rgba(81, 152, 93, 1) 100%);
}

.sport_comitte_wrp_inner ul {
    padding-left: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.sport_comitte_wrp_inner ul li {
    position: relative;
    padding-left: 55px;
    min-height: 65px;
    width: 50%;
}

.sport_comitte_wrp_inner ul ul {
    display: block;
}

.sport_comitte_wrp_inner ul ul li {
    padding: 0;
    width: 100%;
    margin-bottom: 15px;
}

.sport_comitte_wrp_inner ul li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 37px;
    height: 50px;
    object-fit: contain;
    margin-top: -7px;
}

.sport_comitte_wrp_inner ul li h4 {
    font-size: 16px;
    color: #606060;
    font-family: 'Avenir-Medium';
    font-weight: normal;
}

.sport_comitte_wrp_inner ul li h4 strong {
    display: block;
    font-size: 11px;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: normal;
    color: #006524;
    padding-bottom: 2px;
}

.sports_training_dates_wrp {}

.about_sport_comitte_wrp h4 {
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 25px;
    letter-spacing: 1px;
}

.sports_training_dates_wrp ul {
    background: #fff;
    border: 0px solid transparent;
    box-shadow: 0px 0px 0px 3px #21632c;
    margin: 3px;
}

.sports_training_dates_wrp ul li {}

.sports_training_dates_wrp .sports_training_each_wrp {}

.sports_training_each_inner {
    display: flex;
    flex-wrap: wrap;
}

.sports_training_each_inner>div {
    flex-grow: 1;
}

.sports_training_dates_wrp {}

.sports_training_each_inner h5 {
    background: #21632c;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    display: flex;
    width: 100%;
    align-items: center;
    display: none;
}

.sports_training_dates_wrp ul li:first-child .sports_training_each_inner h5 {
    display: flex;
}

.sports_training_each_inner h5 img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    top: -1px;
    margin-right: 6px;
}

.sports_training_each_inner p {
    padding: 15px;
    font-size: 16px;
    height: 100%;
}

.sports_training_dates_wrp ul li:nth-child(even) .sports_training_each_inner p {

    background: #f5f5f5;
}

.sports_training_time {
    width: 180px;
}

.sports_training_day {
    width: 125px;
}

.sports_training_date {
    width: 150px;
}

.sports_training_location {
    width: 200px;
}

.sports_training_name {
    width: 300px;
}

.sports_training_cost {
    width: 185px;
}

.about_sport_rule_time_wrp .row {
    padding: 40px 0;
}

.about_sport_rule_time_wrp {
    padding-top: 40px;
}

.sports_rules_wrp ul {
    padding-left: 17px;
}

.sports_rules_wrp ul li {
    list-style: decimal;
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

.sports_timing_wrp ul li {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 7px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

.sports_timing_wrp ul {}

.sports_timing_wrp ul li strong {
    display: inline-block;
    vertical-align: middle;
    min-width: 125px;
    padding-right: 15px;
}

.sports_links_wrp {}

.sports_links_wrp li {
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 7px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

.sports_links_wrp li a {
    text-decoration: underline !important;
}

.sports_n_recreation_top .uvc-main-heading h2 {}

.sports_n_recreation_top .uvc-main-heading h2:before,
.sports_n_recreation_top .uvc-main-heading h2:after,
.membership_page_contaciner .uvc-main-heading h2:before,
.membership_page_contaciner .uvc-main-heading h2:after {
    display: none;
}

.sports_n_recreation_top .uvc-sub-heading strong,
.membership_page_contaciner .uvc-sub-heading strong {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px !important;
    font-weight: normal;
}

.sports_n_recreation_top .uvc-sub-heading strong:after,
.sports_n_recreation_top .uvc-sub-heading strong:before,
.membership_page_contaciner .uvc-sub-heading strong:after,
.membership_page_contaciner .uvc-sub-heading strong:before {
    content: "";
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #006524;
    vertical-align: middle;
    margin: 0 7px;
}

.sports_n_recreation_top p {
    padding-bottom: 15px;
}

.about_sports_content {}

.about_sports_content h3 {
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: bold;
    padding-bottom: 25px;
}

.about_sports_content p {
    padding-bottom: 25px;
}

.about_sports_content a.theme_btn {
    margin-right: 10px;
    margin-top: 15px;
}

.about_sport_item_wrp {
    padding: 85px 0;
    padding-bottom: 40px;
}

.about_sports_captn {}

.about_sports_captn img {
    width: 100%;
    margin-bottom: 25px;
}

.about_sports_captn h4 {
    font-size: 17px;
    letter-spacing: 2px;
    color: #606060;
    padding-bottom: 15px;
}

.about_sports_captn h4 strong {
    color: #21632c;
    display: block;
    font-size: 11px;
    padding-bottom: 3px;
    font-family: 'IowanOldStyleBT-Roman';
    letter-spacing: 1px;
}

.about_sports_captn a {
    font-size: 11px;
}

.comitte_container .col:first-child {
    min-width: 60%;
}

.about_sport_news_wrp .listing_content .each_listing {
    width: 33.33%;
    padding: 15px 50px;
}

.about_sport_news_wrp .listing_content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -50px;
}

.about_sport_news_wrp .magazin_flteritem_wrp_col {
    padding: 15px 0;
    margin-top: 25px;
}

.about_sport_news_wrp .listing_content .each_listing .each_listing_img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    margin-bottom: 15px;
}

.about_sport_news_wrp a.load_more {
    position: relative;
    display: block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
    margin: auto;
    margin-top: 75px;
}

.about_sport_news_wrp a.load_more:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px;

}

.about_sport_news_wrp a.load_more:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

.about_sport_news_wrp a.load_more:hover:before {
    width: 100%;
}

.about_sport_news_wrp {
    padding: 85px 0;
    padding-top: 40px;
    text-align: center;
}

.about_sport_news_wrp h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 35px;
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
}

.about_sport_news_wrp h4:after,
.about_sport_news_wrp h4:before {
    content: "";
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #006524;
    vertical-align: middle;
    margin: 0 7px;
}

.about_sport_news_wrp .each_listing_content {
    text-align: left;
}

.about_sport_news_wrp .each_listing_content h3 {
    font-size: 16px;
    color: #21632c;
    letter-spacing: 1px;
    padding-top: 10px;
    line-height: 1.4;
}

.about_sport_news_wrp .each_listing_content h3:after {
    content: "";
    height: 6px;
    display: block;
    margin: 15px 0;
    width: 42px;
    background: #21632c;
}

.about_sport_news_wrp .each_listing_content span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
    color: #606060;
    letter-spacing: 1px;
}

.about_sport_news_wrp .each_listing_content p {
    padding: 10px 0;
    padding-bottom: 25px;
}

.about_sport_news_wrp .each_listing_content p:empty {
    padding: 0;
}

.about_sport_news_wrp .each_listing_content .theme_btn {
    vertical-align: middle;
}

.about_sport_galry_wrp {
    padding-top: 85px;
    text-align: center;
}

.about_sport_galry_wrp h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    color: #006524;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
}

.spider_popup_close_fullscreen span,
a#spider_popup_right span,
a#spider_popup_left span {
    color: #fff;
}

.about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {
    width: 25% !important;
    max-width: 25%;
    padding: 1px;
    overflow: hidden;
    padding: 20px 30px;
}

.about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item>a {
    margin: 0;
    overflow: hidden;
}

.about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item0 {
    border: none;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails {
    width: auto !important;
    max-width: initial !important;
    margin: 0 -30px !important;
}

.about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item1 {
    padding-top: 65%;
}

.about_sport_galry_wrp .bwg_thumbnail.bwg_container {
    margin: 0;
}

.page-id-88 .hero-banner .main-carousel .slick-slide {}

.page-template-template-sports-php .inner_banner_content .theme_btn_1 {
    display: none;
}

.each_listing_img {
    height: 225px;
}

.about_sport_news_wrp .magazin_flteritem_wrp_col:after {
    opacity: 0;
    margin: 0;
}

.about_sport_news_wrp .magazin_flteritem_wrp_col {
    padding-bottom: 0;
    margin-bottom: -15px;
}

.page_title_cstm {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    margin-bottom: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.single_page_wrp .page_title_cstm {
    font-size: 24px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 50px;
    justify-content: left;
    display: inline-flex;
    align-items: center;
}

.page_title_cstm:before,
.page_title_cstm:after {
    content: "";
    display: inline-block;
    background: #006524;
    height: 1px;
    width: 45px;
    min-width: 35px;
    vertical-align: middle;
    margin: 0 5px;
    margin-bottom: 5px;
}

.page-template-template-news .single_dining_page_container {
    padding-top: 65px;
}

.page-template-template-news .page-news-nav {
    padding-bottom: 10px;
}

.page-template-template-news .page-news-nav .theme_btn {
    border: 2px solid #006524 !important;
    background: #fff !important;
    color: #006524 !important;
    font-weight: 900 !important;
    line-height: 40px !important;
    margin-bottom: 0;
}

.page-template-template-news .page-news-nav .theme_btn:hover,
.page-template-template-news .page-news-nav .theme_btn.active {
    background: #006524 !important;
    color: #fff !important;
}

.page-template-template-news .page-news-nav .theme_btn strong {
    font-weight: bold;
}

.page-template-template-news .page-news-nav .theme_btn strong:after {
    border-color: #006524;
}

.page-template-template-news .page-news-nav .theme_btn:hover strong:after,
.page-template-template-news .page-news-nav .theme_btn.active strong:after {
    border-color: #fff;
}

.page-template-template-news .page-news-nav .theme_btn strong:before {
    background: #006524 !important;
    border-radius: 0px;
}

.page-template-template-news .listing_content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.page-template-template-news .listing_content .each_listing {
    width: 50%;
    padding: 20px;
    border: none;
}

.page-template-template-news .listing_content .each_listing .each_listing_content {
    padding: 25px;
    border: 1px solid #f1f1f1;
    height: 100%;
}

.page-template-template-news .listing_content .each_listing .each_listing_content span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
    color: #606060;
    letter-spacing: 1px;
}

.page-template-template-news .listing_content .each_listing .each_listing_content h3 {
    font-size: 16px;
    color: #21632c;
    letter-spacing: 1px;
    padding-top: 10px;
    line-height: 1.4;
}

.page-template-template-news .listing_content .each_listing .each_listing_content h3:after {
    content: "";
    height: 6px;
    display: block;
    margin: 15px 0;
    width: 42px;
    background: #21632c;
}

.page-template-template-news .listing_content .each_listing .each_listing_content p {
    padding: 10px 0;
    padding-bottom: 25px;
}

.page-template-template-news .listing_content .each_listing .each_listing_content p:empty {
    padding: 0 !important;
}

.page-template-template-news .magazin_flteritem_wrp_col:after {
    margin: 0;
    height: 0px;
}

.magazin_flteritem_wrp_col h4.magazin_flter_title {
    width: 100%;
    padding-bottom: 10px;
    color: #006524;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
}

.magazin_flteritem_wrp_col h4.magazin_flter_title img {
    width: auto;
    max-width: 17px;
}

.inner-content ul.slick-dots li::before {
    display: none;
}

.page-template-template-events .single_dining_page_container,
.archive.category .single_dining_page_container,
.post-type-archive-event .single_dining_page_container {
    padding-top: 80px;
}

.page-template-template-events .single_dining_page_row {
    padding-top: 65px;
}

.event_filter_wrp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.event_filter_wrp_right {
    flex-grow: 1;
    text-align: right;
}

.single_dining_page_col .event_filter_wrp .magazin_flteritem_wrp_col {
    padding: 0;
}

.event_filter_wrp .magazin_flteritem_wrp_col:after {
    display: none;
}

.event_filter_wrp_right ul {}

.event_filter_wrp_right ul li {
    display: inline-block;
    padding-left: 10px;
    vertical-align: middle;
}

.event_filter_wrp_right li button {
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.event_filter_wrp_right li button img {
    width: 23px;
    height: 20px;
    object-fit: contain;
    filter: grayscale(1) brightness(2.5);
    opacity: 0.7;
}

.event_filter_wrp_right li button.active img {
    filter: none;
    opacity: 1;
}

.notice_listing {}

.notice_listing .each_listing p:empty {
    padding: 0;
}

.notice_listing .each_listing {
    position: relative;
    padding: 15px 0;
    padding-right: 235px;
    min-height: 150px;
}

.notice_listing .each_listing .each_listing_right {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 223px;
    text-align: center;
}

.notice_listing .each_listing .each_listing_right span {
    display: block;
    width: 100%;
    max-width: 160px;
    padding-bottom: 10px;
    color: #006524;
    font-size: 17px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
}

.notice_listing .each_listing .each_listing_right a.theme_btn {
    vertical-align: middle;
    margin-bottom: 4px;
    margin-right: 0;
}

.notice_listing .each_listing h3 {
    font-size: 16px;
    color: #21632c;
    letter-spacing: 1px;
    padding-top: 10px;
    line-height: 1.4;
}

.notice_listing .each_listing h3:after {
    content: "";
    height: 6px;
    display: block;
    margin: 15px 0;
    width: 42px;
    background: #21632c;
}

.notice_listing .each_listing p {
    line-height: 2.2;
    padding-bottom: 0;
}

.single_dining_page_container.single_event_section h1.page_title_cstm {
    /* margin: 0;
    text-align: left;*/
}

.single_dining_page_col a.theme_btn.event_calndr_btn {
    max-width: initial;
    background: none !important;
    color: #006524 !important;
    font-weight: bold;
}

.single_event_section .single-event-info p {
    padding-bottom: 6px;
}

.single_event_section .single-event-info p strong {
    font-weight: bold;
    color: #006524 !important;
}

.single_event_section .single-event-info {
    padding-bottom: 25px;
}

.single_dining_page_container.single_event_section .single_event_media {
    padding: 25px 0;
}

.single_dining_page_container.single_page_wrp {
    padding-top: 85px;
}

.single_page_wrp ul ul {
    margin-left: 15px !important;
}

.single_page_wrp li {
    position: relative;
    padding-left: 15px;
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 2;
    margin-bottom: 3px;
}

.single_page_wrp li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #606060;
    left: 0;
    top: 8px;
    position: absolute;
}

.single_page_wrp h4 {
    color: #006524;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 15px;
}

.page-template-template-news .listing_content .each_listing.list_notice {
    width: 100%;
    margin-left: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.listing_content .each_listing.list_notice h3 {
    font-size: 16px;
    color: #21632c;
    letter-spacing: 1px;
    padding-top: 10px;
    line-height: 1.4;
}

.listing_content .each_listing.list_notice p:empty {
    padding: 0;
}

.listing_content .each_listing.list_notice h3:after {
    content: "";
    height: 6px;
    display: block;
    margin: 15px 0;
    width: 42px;
    background: #21632c;
}

.listing_content .each_listing.list_notice p {
    color: #606060;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 25px;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 1.7;
}

.listing_content .each_listing.list_notice .each_listing_right {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 223px;
    text-align: center;
}

.listing_content .each_listing.list_notice .each_listing_right span {
    display: block;
    width: 100%;
    max-width: 160px;
    padding-bottom: 10px;
    color: #006524;
    font-size: 17px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
}

.listing_content .each_listing.list_notice .each_listing_right a.theme_btn {
    vertical-align: middle;
    margin-bottom: 4px;
    margin-right: 0;
}

.listing_content .each_listing.list_notice {
    position: relative;
    padding: 15px 0;
    padding-right: 235px;
    min-height: 150px;
}

.single_dining_page_col .magazin_flteritem_wrp_col {
    width: 100%;
}

.single_dining_page_col .magazin_flteritem_wrp_col .magazin_flteritem_wrp {
    display: inline-block;
}

.single_dining_page_col .magazin_flteritem_wrp_col form#search {
    display: inline-block;
}

div#calendar {
    position: absolute;
    visibility: hidden;
    width: 100%;
    margin-top: 30px;
    transition: none;
    animation: none;
    opacity: 0;
}

div#calendar.active {
    position: relative;
    visibility: visible;
    opacity: 1;
}

div#calendar table.fc-scrollgrid-sync-table,
div#calendar .fc-daygrid-body {
    max-width: 100%;
}

#calendar.fc .fc-button-primary {
    color: #006524;
    background-color: #fff;
    border-color: #006524;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 5px;
    border-radius: 8px !important;
    padding: 10px 7px;
    padding-top: 12px;
    min-width: 85px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

#calendar.fc .fc-button-primary:not(:disabled).fc-button-active,
#calendar.fc .fc-button-primary:not(:disabled):active {
    color: #fff;
    background-color: #006524;
    border-color: #006524;
}

#calendar.fc .fc-button-primary span {
    color: #fff;
}

button.fc-today-button.fc-button.fc-button-primary {
    display: none !important;
}

.fc .fc-toolbar-title {
    color: #006524;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    position: absolute;
    width: 200px;
    left: 20px;
    top: 8px;
    text-align: center;
}

a.fc-daygrid-event.fc-daygrid-block-event.fc-h-event.fc-event,
a.fc-daygrid-event.fc-daygrid-dot-event.fc-event {
    cursor: pointer;
}

#calendar.fc button.fc-prev-button.fc-button.fc-button-primary {
    margin: 0;
    top: 0;
    border: none;
    background: none;
    padding: 0;
    min-width: auto;
    left: 0;
    outline: none !important;
    box-shadow: none !important;
}

#calendar.fc button.fc-next-button.fc-button.fc-button-primary {
    border: none;
    background: none;
    padding: 0;
    min-width: auto;
    left: 180px;
    outline: none !important;
    box-shadow: none !important;
}

.fc-toolbar-chunk:last-child .fc-button-group {
    flex-direction: row-reverse;
}

#calendar.fc button.fc-next-button.fc-button.fc-button-primary span {
    color: #006524;
    font-size: 26px;
}

.fc .fc-button-group {
    position: static;
    display: inline-flex;
}

#calendar.fc button.fc-prev-button.fc-button.fc-button-primary span {
    color: #006524;
    font-size: 26px;
}

.event_filter_wrp {
    padding-bottom: 15px;
}

.listing_content.sort_in_list,
.listing_content[style="display: block;"] {
    display: flex !important;
    flex-wrap: wrap !important;
}

.listing_content_layout_togle.sort_in_list .each_listing {
    width: 50%;
    min-height: initial;
    padding: 0 20px;
}

.listing_content_layout_togle.sort_in_list .each_listing .each_listing_content {
    padding: 35px 0px;
}

.listing_content_layout_togle .each_listing_content {}

.listing_content_layout_togle .each_listing_content h3 {
    font-size: 16px;
    color: #21632c;
    letter-spacing: 1px;
    padding-top: 10px;
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 75px;
}

.listing_content_layout_togle .each_listing_content h3:after {
    content: "";
    height: 6px;
    display: block;
    margin-top: 15px;
    width: 42px;
    background: #21632c;
}

.listing_content_layout_togle.sort_in_list a.event_img,
.listing_content_layout_togle.sort_in_list .event_date {
    display: none;
}

.listing_content.sort_in_list,
.listing_content[style="display: block;"] {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -20px;
}

.grid_img_wrp .event_date {
    top: -25px;
    padding: 0 5px;
}

button#reset_filter {
    position: relative;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    bottom: -15px;
    padding: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

button#reset_filter:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

.magazin_flteritem li>ul {
    display: none;
}

.magazin_flteritem li>strong {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    width: 100%;
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
}

.magazin_flteritem li>strong:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(45deg);
    margin-left: 5px;
    margin-bottom: 1px;
    position: absolute;
    right: -15px;
    top: 12px;
}

.magazin_flteritem li>strong.active:after {
    transform: rotate(-135deg);
    top: 16px;
}

.listing_content_layout_togle.sort_in_grid .listing_content {
    padding: 0 20px;
}

.listing_content_layout_togle.sort_in_grid .each_listing {
    padding-left: 0;
    width: 100%;
    display: flex;
}

.listing_content_layout_togle.sort_in_grid .each_listing .grid_img_wrp {
    max-width: 320px;
    width: 45%;
    position: relative;
    min-height: 150px;
    /*     background: #f0f0f0; */
}

.listing_content_layout_togle.sort_in_grid .each_listing .grid_img_wrp img {
    position: static;
}

.listing_content_layout_togle.sort_in_grid .each_listing .each_listing_content {
    position: relative;
    flex-grow: 1;
    padding-left: 35px;
}

.listing_content_layout_togle.sort_in_grid .each_listing .each_listing_content h3 {
    padding-top: 0;
    min-height: auto;
}

.dining_content {
    z-index: 9;
}

.dining_content_inner_img {
    z-index: 8;
}

.search-results .container.block.green-text-block,
.search-no-results .container.block.green-text-block {
    padding: 65px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.search-results .container.block.green-text-block h1,
.search-no-results .container.block.green-text-block h1 {
    padding-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    color: #21632c;
    text-align: center;
    width: 100%;
}

.search-results .container.block.green-text-block h1:before,
.search-results .container.block.green-text-block h1:after,
.search-no-results .container.block.green-text-block h1:before,
.search-no-results .container.block.green-text-block h1:after {
    content: "";
    display: inline-block;
    background: #21632c;
    height: 1px;
    width: 45px;
    vertical-align: middle;
    margin: 0 5px;
    margin-bottom: 5px;
}

.search-results .search-results-list,
.search-no-results .search-results-list {
    width: 31%;
    margin: 1%;
    padding: 20px;
    background: #fff;
    border: 1px solid #e4e4e4;
}

.search-results nav.navigation.posts-navigation,
.search-no-results nav.navigation.posts-navigation {
    width: 100%;
    text-align: center;
    padding-top: 35px;
}

.search-results .search-results-list a,
.search-no-results .search-results-list a {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    color: #21632c;
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.search-results .search-results-list a i,
.search-no-results .search-results-list a i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 14px;
}

.search-results nav.navigation.posts-navigation a,
.search-no-results nav.navigation.posts-navigation a {
    position: relative;
    display: inline-block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
}

.search-results nav.navigation.posts-navigation a:before,
.search-no-results nav.navigation.posts-navigation a:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px;
}

.search-results nav.navigation.posts-navigation a:hover:before,
.search-no-results nav.navigation.posts-navigation a:hover:before {
    width: 100%;
}

.search-results nav.navigation.posts-navigation a:after,
.search-no-results nav.navigation.posts-navigation a:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

.search-no-results .alert.alert-warning {
    font-size: 26px;
    color: #21632c;
    background: none;
    border: none;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: 400 !important;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

.search-no-results .container.block.green-text-block {
    padding: 132px 15px;
}

.search-no-results .asp_w {}

.search-no-results .asp_w {
    max-width: 640px;
}

.modal.fade.in {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.page-template-template-events .modal-footer {
    display: none;
}

.modal .modal-header {
    padding: 0;
    border-bottom: none;
}

.modal-header .close {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    opacity: 1;
    line-height: 30px;
    font-weight: normal;
    z-index: 9;
}

.modal-body {
    position: relative;
    padding: 50px 35px;
}

.modal-body h2 {
    color: #006524;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-weight: normal;
    padding-bottom: 15px;
}

.modal-body a {
    position: relative;
    display: inline-block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
}

.modal-body a:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

.modal-body a:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px;
}

.modal-body a:hover:before {
    width: 100%;
}

.fc-event-future {
    border: 1px solid #006524 !important;
    background-color: #006524 !important;
    font-size: 12px;
    font-weight: normal;
    padding: 10px 10px;
    border-radius: 10px;
}

.fc-daygrid-block-event .fc-event-time {
    font-weight: normal;
}

.fc-event-future * {
    color: #fff;
}

.fc-theme-standard td,
.fc-theme-standard th {
    padding: 5px;
    border: none;
}

.fc-theme-standard .fc-scrollgrid-sync-inner {
    background: #fafafa;
}

.fc-theme-standard .fc-daygrid-day-frame.fc-scrollgrid-sync-inner {}

td.fc-daygrid-day,
tbody tr {}

.fc .fc-daygrid-day-top {
    flex-direction: unset;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.faq_nav_btns .vc_column-inner .wpb_wrapper {
    position: relative;
}

.faq_nav_btns .vc_btn3-container a.vc_general:after {
    content: "";
}

.faq_nav_btns .vc_btn3-container a.vc_general:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.faq_nav_btns .vc_btn3-container a.vc_general {
    position: static;
}

.fc .fc-scrollgrid-section-liquid>td {
    height: 100%;
    border: 1px solid #006524;
    border-radius: 8px;
}

.fc .fc-scrollgrid-liquid {
    border: none;
}

table.fc-scrollgrid-sync-table {
    max-height: 625px;
}

.fc .fc-daygrid-day-number {
    color: #777;
    padding: 8px;
}

.fc .fc-day-other .fc-daygrid-day-top .fc-daygrid-day-number {
    /*     opacity: 0; */
}

th.fc-col-header-cell .fc-scrollgrid-sync-inner {
    background: none;
}

th.fc-col-header-cell .fc-scrollgrid-sync-inner a.fc-col-header-cell-cushion {
    color: #006524;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 0;
}

.fc .fc-daygrid-day.fc-day-today {
    background: none;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
    box-shadow: 0px 0px 10px 0px rgb(0 101 36 / 31%);
}

.fc-view-harness.fc-view-harness-active {
    max-height: 700px;
}

.archive.category .listing_content {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -20px;
}

.archive.category .each_listing {
    width: 50%;
    min-height: initial;
    padding: 20px 20px;
}

.archive.category .each_listing_content span {
    text-transform: uppercase;
    font-size: 12px;
    color: #006524;
    display: block;
    padding-bottom: 5px;
}

.archive.category .each_listing_content h3 {
    font-size: 16px;
    color: #21632c;
    letter-spacing: 1px;
    padding-top: 10px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.archive.category .each_listing_content h3:after {
    content: "";
    height: 6px;
    display: block;
    margin-top: 15px;
    width: 42px;
    background: #21632c;
}

.archive.category .each_listing_content p:empty {
    padding: 0;
    min-height: 0;
}

.archive.category .each_listing_content p {
    min-height: 100px;
}

.tax-event-categories .single_dining_page_container {
    padding-top: 85px;
}

.page-id-18416 #nav-icon span {
    /*     background: #757575; */
}

.page-template-template-news .listing_content .each_listing .each_listing_content>img {
    position: static;
    margin: 10px 0;
    width: 100%;
}

.browse_photo_gallery .bwg_thumbnail.bwg_container .bwg-album-thumbnails,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails {
    width: 100% !important;
}

body .browse_photo_gallery .bwg_thumbnail.bwg_container .bwg-album-thumbnails .bwg-item,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {
    min-width: 33.33% !important;
    padding: 15px 50px;
}

.browse_photo_gallery .bwg_thumbnail.bwg_container {
    margin: 0 -50px;
}

body .browse_photo_gallery .bwg_thumbnail.bwg_container .bwg-album-thumbnails .bwg-item .bwg-item1,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item1,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item1 {
    padding-top: 0 !important;
    padding: 65%;
}

body .browse_photo_gallery .bwg_thumbnail.bwg_container .bwg-album-thumbnails .bwg-item .bwg-item0,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item0,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item0 {
    border: none !important;
    box-shadow: none !important;
}

body .browse_photo_gallery .bwg_thumbnail.bwg_container .bwg-album-thumbnails .bwg-item a.bwg-a.bwg-album.bwg_album_0,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item>a,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item>a {
    margin: 0 !important;
}

body .browse_photo_gallery .bwg_thumbnail.bwg_container .bwg-album-thumbnails .bwg-item .bwg-title2,
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-title2 {
    font-size: 22px !important;
    color: #006524 !important;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman' !important;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: none !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg_back_0 {
    position: relative;
    display: block !important;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px !important;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px !important;
    width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium' !important;
    letter-spacing: 1px;
    text-align: center !important;
    z-index: 5;
    border: none !important;
    overflow: hidden;
    margin: 0 auto;
}

#bwg_container1_0 #bwg_container2_0 .bwg_back_0:before {
    content: "";
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* height: 112%; */
    /* width: 50%; */
    background: #029636;
    display: block;
    height: 100%;
    width: 0px;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 9px;
}

#bwg_container1_0 #bwg_container2_0 .bwg_back_0:hover:before {
    width: 100%;
}

#bwg_container1_0 #bwg_container2_0 .bwg_back_0:after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    margin-bottom: 1px;
}

#bwg_container1_0 #bwg_container2_0 .bwg_back_0 i {
    display: none !important;
}

.magazin_flteritem_wrp.news_filter .magazin_flteritem {
    visibility: visible;
    opacity: 1;
    background: none;
    position: relative;
    margin: 0;
    padding: 0 15px;
    padding-right: 0;
}

.single_dining_page_col .magazin_flteritem_wrp.news_filter {
    margin-right: 0;
}

.post-type-archive-event form#filter_search,
.page-template-template-news form#filter_search,
.page-template-template-events form#filter_search {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: right;
}

.post-type-archive-event form#filter_search img,
.page-template-template-news form#filter_search img,
.page-template-template-events form#filter_search img {
    order: 2;
}

.post-type-archive-event form#filter_search input,
.page-template-template-news form#filter_search input,
.page-template-template-events form#filter_search input {
    width: 100px;
}

form#filter_search button#reset_filter,
form#filter_search h5#reset_filter {
    display: none;
}

h5#reset_filter {
    cursor: pointer;
}

.post-type-archive-event form#filter_search button#reset_filter,
.page-template-template-news form#filter_search button#reset_filter,
.page-template-template-events form#filter_search button#reset_filter,
.page-template-template-events form#filter_search h5#reset_filter {
    display: block;
    position: static;
    opacity: 1;
    color: #006524;
    padding: 0;
    width: auto;
    margin-right: 17px;
}

.post-type-archive-event form#filter_search button#reset_filter:after,
.page-template-template-news form#filter_search button#reset_filter:after,
.page-template-template-events form#filter_search button#reset_filter:after {
    display: none;
}

.magazin_flteritem_wrp.news_filter button.magazin_flter_btn {
    display: none;
}

.magazin_flteritem_wrp.news_filter .magazin_flteritem ul {
    display: block;
}

.magazin_flteritem_wrp.news_filter .magazin_flteritem ul li.magzine_filter {
    display: inline-block;
    vertical-align: top;
}

.magazin_flteritem_wrp.news_filter .magazin_flteritem ul li.magzine_filter span {
    color: #006524;
    margin-right: 13px;
    padding-left: 20px;
}

.magazin_flteritem_wrp.news_filter button#reset_filter {
    display: none;
}

.magazin_flteritem_wrp.news_filter .magazin_flteritem ul li.magzine_filter span:before {
    background: #ffffff;
    border: 1px solid #006524;
    width: 12px;
    height: 12px;
    left: 2px;
    top: 1px;
}

.magazin_flteritem_wrp.news_filter .magazin_flteritem li label input:checked+span:before {
    background: #ffffff;
    border: 4px solid #006524;
}

.category .listing_content .each_listing img {
    position: static;
    margin: 15px 0;
    width: 100%;
    height: 250px;
}

.page-id-18416 .hero-banner.aos-init.aos-animate {
    display: none;
}

.header_right ul li.mega_menu_parent:nth-child(4) .mega_meu_wrp .mega_submenu ul {
    column-count: 1;
}

.page-id-25 .inner_banner_content h1 {
    margin-top: -75px;
}

.page-id-17 .block {
    padding: 0;
}

.membership_page_contaciner {
    padding: 65px 0;
    padding-bottom: 200px;
    text-align: left;
}

.membership_page_contaciner>.vc_column_container {
    border: 4px solid #2c6f37;
    padding: 0;
    padding-bottom: 50px;
    margin-top: 100px;
}

.membership_page_contaciner .theme_btn.vc_btn3-inline {
    margin: 5px 0;
    z-index: 999;
    position: relative;
}

.membership_page_contaciner h3 {
    color: #21632c;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    padding-bottom: 25px;
    max-width: 335px;
}

.membership_page_contaciner h5 {
    color: #606060;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 1px;
    padding-bottom: 2px;
    font-size: 16px;
}

.membership_page_contaciner h5 strong {
    color: #21632c;
    font-weight: normal;
}

.membership_page_contaciner h5 em {
    font-style: normal;
    font-weight: bold;
}

.membership_page_contaciner h5:first-of-type {
    padding-top: 35px;
}

.membership_page_contaciner .wpb_row .vc_col-sm-6 .vc_column-inner {
    padding: 45px;
}

.membership_page_contaciner .wpb_row .vc_col-sm-12 .vc_column-inner {
    padding: 0 45px;
}

.membership_page_contaciner .wpb_row .vc_col-sm-6 .vc_column-inner .wpb_wrapper {
    position: relative;
}

.membership_page_contaciner .wpb_row .vc_col-sm-6+.vc_col-sm-6 .vc_column-inner .wpb_wrapper:before {
    content: "";
    position: absolute;
    background: #aeaeae;
    height: 100%;
    width: 1px;
    left: -45px;
    top: 0;
}

.membership_page_contaciner .cricket_bat_image img {
    bottom: -210px;
}

.membership_page_contaciner .vc_separator {
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
}

.membership_page_contaciner .uvc-main-heading h2 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
}

.development_progrm_slider button.slick-arrow {
    width: 40px;
    height: 40px;
    z-index: 99;
    border-radius: 50%;
    background: #006524;
}

.development_progrm_slider button.slick-prev {
    left: 25px;
}

.development_progrm_slider button.slick-next {
    right: 25px;
}

.development_progrm_slider button.slick-next:before {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-bottom: 1px;
    margin-top: 2px;
    margin-right: 3px;
}

.development_progrm_slider button.slick-prev:before {
    content: '';
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
    margin-bottom: 1px;
    margin-top: 2px;
    margin-left: 3px;
}

.search-results .hero-banner,
.search-no-results .hero-banner {
    display: none;
}

.search-results .header_section,
.search-no-results .header_section {
    position: relative;
    background: #006524;
    margin-bottom: 3px;
}

.page-template-template-sports .search_line.bwg_tag_select_view,
.page-template-template-sports .bwg_gal_title_0.bwg_gal_title_0 {
    display: none !important;
}

body.banner_img_bottom_view .hero-banner .slick-slide {
    background-position: bottom center !important;
}

body.banner_img_center_view .hero-banner .slick-slide {
    background-position: center center !important;
}

body.banner_img_top_view .hero-banner .slick-slide {
    background-position: top center !important;
}

.page-template-template-events .event_filter_wrp_right,
.post-type-archive-event .event_filter_wrp_right {
    width: 50%;
    padding-bottom: 10px;
}

.page-template-template-events .magazin_flteritem_wrp_col h4.magazin_flter_title,
.post-type-archive-event .magazin_flteritem_wrp_col h4.magazin_flter_title {
    width: 50%;
}

.page-template-template-sports .sports_up_events .home_news_list h3 {
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-size: 22px;
    letter-spacing: 1px;
    /*     font-weight: bold; */
    padding-bottom: 25px;
    position: relative;
    padding-left: 48px;
    text-align: left;
}

.page-template-template-sports .sports_up_events .home_news_list h3 strong {
    display: block;
    font-size: 13px;
    font-weight: 100;
}

.page-template-template-sports .sports_up_events .home_news_list h3 img {
    position: absolute;
    left: 0;
    width: 36px;
}

.page-template-template-sports .sports_up_events {
    padding-bottom: 65px;
}

.parent-pageid-25 .sports_news {
    /*     display: none; */
}

.page-id-19484 .sports_page_tabs_wrp,
.page-id-19475 .sports_page_tabs_wrp {
    display: none;
}

.page-id-19484 .about_sport_item_wrp,
.page-id-19475 .about_sport_item_wrp {
    padding-top: 40px;
}

.page-id-19484 .about_sports_content a.theme_btn~a.theme_btn,
.page-id-19475 .about_sports_content a.theme_btn~a.theme_btn {
    display: none;
}

.listing_content>div {
    width: 100%;
}

.magzn_img a {
    position: relative;
    display: block;
    z-index: 1;
    padding: 62% 0;
}

.magzn_img a img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.list_magzine {
    padding-bottom: 75px;
}

.bwg_container .pagination-links a.bwg-a,
.bwg_container .pagination-links .bwg_current_page {
    border-color: #21632c !important;
    color: #21632c !important;
    width: 30px !important;
    display: inline-block;
    line-height: 25px !important;
    padding: 0 !important;
    margin: 0 3px !important;
    padding-bottom: 2px !important;
}

.bwg_container span.pagination-links_col2,
.bwg_container span.total-pages_0 {
    color: #21632c !important;
}

.container.breadcrumbs span[typeof="ListItem"]:after {
    border-right: 1px solid #21632c !important;
    border-bottom: 1px solid #21632c !important;
}

.bwg_container .pagination-links .bwg_current_page {
    background: #21632c !important;
    color: #fff !important;
}

.home_banner_content.for_mobile {
    display: none;
}

.single_dining_page_row .listing_content .each_listing a.addtoany_share img,
a.addtoany_share img {
    width: 20px !important;
}

#calendar.fc button.fc-next-button.fc-button.fc-button-primary,
#calendar.fc button.fc-prev-button.fc-button.fc-button-primary {
    z-index: 1000;
}

paper-spinner#loadingIndicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
}

paper-spinner#loadingIndicator div#spinnerContainer {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

paper-spinner#loadingIndicator[style="display: block;"] {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.cv_submit_wrp span.wpcf7-spinner {
    position: absolute;
    left: 0;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    margin-top: 10px;
}

.contact_form_wrp_right span.wpcf7-not-valid-tip {
    position: static;
    margin-top: -10px;
}

.single_career_form .wpcf7 .attach_cv span.wpcf7-form-control-wrap input {
    padding: 5px 0;
    display: inline-block;
    width: auto;
    margin-bottom: 2px;
}

.attach_cv span.wpcf7-form-control-wrap {
    display: inline-block;
}

.attach_cv {
    padding-bottom: 15px;
}

span.wpcf7-form-control-wrap[data-name="phone"] span.wpcf7-not-valid-tip {
    position: static;
    padding-top: 2px;
}

.page-template-template-single-career .intl-tel-input {
    margin-bottom: 20px;
}

.page-template-template-single-career .intl-tel-input input.wpcf7-validates-as-phonetext {
    /*     margin-bottom: 20px !important; */
}

.page-template-template-single-career .intl-tel-input .selected-flag .iti-flag {
    /*     margin: 14px 0; */
}

.page-template-template-single-career .intl-tel-input.allow-dropdown .flag-container,
.page-template-template-single-career .intl-tel-input.separate-dial-code .flag-container {

    padding-bottom: 0;
}

.vc_row.wpb_row.vc_row-fluid.reciprocal_top_section {
    padding: 65px 0;
    padding-bottom: 35px;
}

.page-id-45 .hero-banner {
    overflow: visible;
}

.page-id-45 .hero-banner .main-carousel .slick-dots {
    left: 0;
    text-align: center;
    bottom: -55px;
    z-index: 9;
}

.club_listing_wrp div.uvc-heading {
    text-align: left !important;
}

.club_listing_wrp div.uvc-heading .uvc-main-heading h2 {
    display: block;
    text-align: left;
    font-weight: bold !important;
    padding: 0 !important;
}

.club_listing_wrp div.uvc-heading .uvc-main-heading h2:before,
.club_listing_wrp div.uvc-heading .uvc-main-heading h2:after {
    display: none;
}

.club_listing_wrp .uvc-heading .uvc-sub-heading {
    text-align: left;
    font-family: 'Avenir-Medium';
    color: #006524;
    line-height: 1;
}

.club_listing_wrp .uvc-heading .uvc-sub-heading a {
    color: #006524;
    font-size: 13px;
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.club_listing_wrp .uvc-heading .uvc-sub-heading a:before {
    content: "";
    background: url(../images/glob.png);
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: -2px;
    background-size: contain;
}

.club_listing_wrp div.uvc-heading {
    padding-bottom: 10px;
}

.club_listing_wrp h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
}

.club_listing_wrp .vc_column-inner .vc_row.wpb_row.vc_inner.vc_row-fluid {
    padding: 45px 0;
    border: 4px solid #4f955b;
    border-radius: 6px;
    background: url(../images/reciprocal_bg.jpg);
    margin: 0;
    margin-bottom: 100px;
    box-shadow: 0px 0px 15px -2px rgb(0 0 0 / 59%);
}

.club_listing_wrp .wpb_text_column.wpb_content_element {
    margin-bottom: 20px;
}

.club_listing_wrp .vc_column-inner .vc_row.wpb_row.vc_inner.vc_row-fluid .wpb_column.vc_column_container.vc_col-sm-6 {
    padding: 0 35px;
}

.select_country_wrp p {
    font-family: 'Avenir-Medium';
    font-weight: bold;
    color: #006524;
    font-size: 14px;
}

.select_country_wrp .wpb_column.vc_column_container.vc_col-sm-12 .wpb_text_column {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.select_country_wrp p br {
    display: none;
}

.select_country_wrp p select {
    border: 1px solid #006524;
    height: 40px;
    padding: 0 15px;
    border-radius: 10px;
    margin-left: 25px;
    min-width: 200px;
    font-family: 'Avenir-Medium';
    font-weight: normal;
}

.menu_for_mobile {
    display: none;
}

.development_progrm_each iframe {
    max-width: 100%;
}

.development_progrm_each .development_progrm_content iframe.for_mob {
    display: none;
}

.hero-banner .main-carousel .slick-dots {
    z-index: 999;
    transform: none;
}

.page-id-18838 div.about_sport_item_wrp .col-md-9 {
    /*     min-width: 100%; */
}

.page-id-18838 .about_sports_content p br {
    display: none;
}

.sports_page_tabs_wrp ul.more_list {
    flex-wrap: nowrap;
}

.sports_page_tabs_wrp ul.more_list li.sports_page_tabs_item {
    width: auto;
    padding: 15px 10px;
}

.sports_page_tabs_wrp ul.more_list .sports_page_tabs_img {
    width: 80px;
    height: 80px;
    line-height: 78px;
}

.sports_page_tabs_wrp ul.more_list .sports_page_tabs_img img {
    height: 40px;
    max-width: 50px;
}

.page-id-88 .sports_page_tabs_wrp {
    order: -1;
    padding: 0;
    padding-bottom: 50px;
    width: 100%;
}

.page-id-88 .each_sport_page_section>.container .col {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-id-88 .about_sport_item_wrp {
    padding-top: 40px;
}

.cricket_committee_members img {
    width: 200px;
    margin-bottom: 20px;
}

.cricket_committee_members {
    padding-top: 15px;
    padding-bottom: 50px;
}

.cricket_committee_members h4 {
    font-size: 16px;
    letter-spacing: 2px;
    color: #606060;
    padding-bottom: 15px;
}

.cricket_committee_members .col-md-6 {
    padding: 15px;
}

.additional_tabs .row {
    justify-content: unset;
}

.additional_tabs .row>* {
    width: 100%;
}

.additional_tabs .row h3 {
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: bold;
    padding-bottom: 25px;
}

.additional_tabs {
    padding-bottom: 50px;
}

.page-id-88 .sports_page_tabs_wrp ul.more_list li.sports_page_tabs_item:nth-child(1),
.page-id-88 .sports_page_tabs_wrp ul.more_list li.sports_page_tabs_item:nth-child(8) {
    display: none !important;
}

.each_sport_page_section th,
.each_sport_page_section td {
    padding: 8px 12px;
    color: #606060;
    font-size: 11px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 2;
}

.each_sport_page_section table {
    width: 100%;
    margin-top: 50px;
    border-color: rgb(156 156 156 / 39%);
    border-collapse: collapse;
}

.each_sport_page_section th,
.each_sport_page_section tr:first-child td {
    background: #006524;
    color: #fff;
    font-weight: normal;
}

img.cricket_captn_img {
    width: 100%;
    padding: 35px 0;
}

.each_sport_page_section th *,
.each_sport_page_section td * {
    padding: 0;
}

.each_sport_page_section th *,
.each_sport_page_section tr:first-child td * {
    color: #fff;
}

.each_sport_page_section p span {
    color: #606060;
}

.page-id-20633 div.block {
    padding: 50px 0;
    text-align: center;
}

.page-id-20633 div.block h1 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    padding-bottom: 30px;
}

.page-id-20633 div.block iframe {
    margin-bottom: 15px;
    padding: 20px;
    padding-right: 0;
    background: #F5f5f5;
}

div#additional_tab6 iframe {
    height: 650px;
}

div.additional_tabs iframe.yotu-video-placeholder {
    height: 100% !important;
}

.yotu-playlist.yotuwp .yotu-wrapper-player {
    display: none;
}

.additional_tabs .yotu-playlist.yotuwp {
    padding-top: 0;
}

div#additional_tab6 img.alignnone {
    height: 650px;
    background: #ddd;
}

div#additional_tab5 iframe {
    height: 500px;
}

.page-id-88 .each_sport_page_section {
    padding-bottom: 0 !important;
    margin-bottom: -1px;
}

.additional_tabs h6 em {
    display: block;
    background: #ededed;
    padding: 50px 15px;
    font-style: normal;
    margin-bottom: 35px;
}

.page-template-template-sports .development_progrm_section {
    opacity: 1 !important;
    transform: none !important;
}

.additional_tabs h5 strong {
    color: #006524;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    display: block;
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight: bold;
}

.club_magazine_section .club_magazine_wrp {
    opacity: 1 !important;
    transform: none !important;
}

.club_story_content {
    opacity: 1 !important;
    transform: none !important;
}

.yotu-videos.yotu-mode-grid ul {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    margin: 0 -10px;
}

.yotu-videos.yotu-mode-grid li {
    margin: 0 !important;
    padding: 10px !important;
}

.yotu-videos.yotu-column-1 li {
    width: 100%;
}

.yotu-videos.yotu-column-2 li {
    width: 50%;
}

.yotu-videos.yotu-column-3 li {
    width: 33.33%;
}

.yotu-videos.yotu-column-4 li {
    width: 25%;
}

.yotu-videos.yotu-column-5 li {
    width: 200%;
}

#sb_instagram #sbi_load a.sbi_load_btn span.sbi_btn_text {
    color: #fff;
}

#sb_instagram #sbi_load a.sbi_load_btn {
    position: relative;
    display: inline-block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 !important;
}

#sbi_load span.sbi_follow_btn.sbi_custom {
    margin: 0 !important;
    margin-left: -4px !important;
}

#sbi_load span.sbi_follow_btn.sbi_custom a {
    position: relative;
    display: inline-block;
    background: #006524 !important;
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 40px !important;
    padding: 0 22px;
    min-width: 155px;
    border-radius: 9px;
    font-family: 'Avenir-Medium';
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
    border: none !important;
    overflow: hidden;
    margin: 0 !important;
}

#sbi_load span.sbi_follow_btn.sbi_custom a span {
    margin: 0 !important;
    background: none !important;
    color: #fff;
}

#sb_instagram #sbi_load a.sbi_load_btn,
#sb_instagram #sbi_load .sbi_follow_btn,
div#sbi_load a.insta_btn.theme_btn {
    display: inline-block;
    vertical-align: middle;
    /* margin: 0 10px !important; */
    margin-right: 5px !important;
}

#sb_instagram #sbi_load {
    padding-top: 20px;
}

.home .development_progrm_content {
    background: none;
}

.home .development_progrm_content h4 {
    text-shadow: 0px 0px 12px #000;
    color: #fff;
}

#sb_instagram .sb_instagram_header .sbi_header_img_hover,
.sb_instagram_header .sbi_header_img_hover {
    opacity: 1;
    background: #006524;
}

.table_overflow {
    max-width: 100%;
    overflow: auto;
}

.about_sport_item_wrp .col-md-12 {
    max-width: 100%;
}

.page-id-88 div#about_sport_item_wrp a.theme_btn {
    display: none;
}

.read_more_content {
    display: none;
}

.about_sport_galry_wrp {
    padding-bottom: 50px;
}

.footer_social {
    padding-top: 50px;
}

.footer_social ul {
    display: flex;
    flex-wrap: wrap;
}

.footer_social ul li {
    margin-right: 15px;
}

.footer_social ul li a {
    width: 45px;
    height: 45px;
    background: #fff;
    line-height: 46px;
    text-align: center;
    padding: 0;
    color: #006524 !important;
    font-size: 22px;
    border-radius: 50%;
}

.footer_social ul li a i {}

.footer_social ul li a i:before {
    padding: 0;
    font-size: inherit;
    color: inherit;
}

.footer_social ul li a i.fab.fa-facebook-f:before {
    content: "\f39e";

}

.footer_social ul li a:hover {
    background: #029636;
    color: #ffffff !important;
}

.page-template-template-news .listing_content .each_listing .each_listing_content a img {
    position: static;
    width: 100%;
    max-width: 100%;
}

.each_listing_content a.each_listing_img {
    display: block;
    line-height: initial;
    height: auto;
    margin-bottom: 25px;
}

.single-promotions article.promotions header {
    position: absolute;
    top: -85px;
    background: none;
    border: none;
    left: 0;
    justify-content: left;
}

.single-promotions article.promotions header h3 {
    color: #006524;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'IowanOldStyleBT-Roman';
    text-align: center;
    font-weight: normal;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 0;
}

.single-promotions article.promotions header h3:before,
.single-promotions article.promotions header h3:after {
    content: "";
    display: inline-block;
    background: #006524;
    height: 1px;
    width: 45px;
    min-width: 35px;
    vertical-align: middle;
    margin: 0 5px;
    margin-bottom: 5px;
}

.single.single-promotions .single_dining_page_container {
    padding-top: 165px;
}

.col.footer_col_4 .footer_social {
    padding: 0;
}

.fb3d-modal.visible {
    z-index: 999999 !important;
}

.vc_row.gmap_section .wpb_gmaps_widget.wpb_content_element .wpb_map_wraper {
    position: relative;
    padding: 50% 0;
}

.vc_row.gmap_section .wpb_gmaps_widget.wpb_content_element .wpb_map_wraper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.fb3d-modal .cmd-close span.fa.fa-times {
    color: #fff !important;
    font-weight: 100;
    font-size: 54px;
    line-height: 1;
}

.fb3d-modal .cmd-close span.fa.fa-times:before {
    color: #fff !important;
    content: "+";
}

.fb3d-modal .cmd-close {
    font-size: 16pt;
    color: #ccc;
    position: absolute;
    right: 2%;
    top: 5%;
    z-index: 1;
    transform: rotate(45deg);
}

body.page-template-template-sports .each_sport_page_section,
body.page-template-template-dining .each_sport_page_section {
    padding-bottom: 0;
}

.page-template-template-gallery .vc_row.wpb_row.vc_row-fluid.browse_photo_gallery {
    width: 100%;
}

.single-event-calendars .share_btn {
    margin: 0;
    color: #006524 !important;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Avenir-Medium';
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
}

.single-event-calendars>* {
    vertical-align: middle;
    margin: 0 !important;
    margin-right: 15px !important;
}

.single-event-calendars .share_btn .addtoany_shortcode {
    margin-left: 5px;
}

.single-post .single_dining_page_col .share_btn {
    margin: 0;
    color: #006524 !important;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Avenir-Medium';
    font-size: 12px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.single-post .single_dining_page_col h2.page_title_cstm {
    margin-bottom: 30px;
}

.single-post .single_dining_page_col .share_btn .addtoany_shortcode {
    margin-left: 5px;
}

.hero-banner .main-carousel {
    /*     display: none; */
}

.hero-banner .main-carousel.for_mobile_slider {
    /*     display: block !important; */
}

body.page-template-template-sports .hero-banner .main-carousel .slick-slide,
body.page-template-template-sports .hero-banner,
body.page-template-template-dining .hero-banner .main-carousel .slick-slide,
body.page-template-template-dining .hero-banner {
    /*     min-height: 215px; */
}

label.input_file_wrp {
    display: inline-block;
    cursor: pointer;
}






.ease,
a,
input,
button {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

/*

    font-family: 'IowanOldStyleBT-Roman';


    font-family: 'Avenir-Medium';


    font-family: 'Avenir-Black';


*/


/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/

.css-11aywtz {
    appearance: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0px;
    border: 0px solid black;
    box-sizing: border-box;
    font: 14px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    margin: 0px;
    padding: 0px;
    resize: none;
}

.css-1dbjc4n {
    -moz-box-align: stretch;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    align-items: stretch;
    border: 0px solid black;
    box-sizing: border-box;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-shrink: 0;
    margin: 0px;
    min-height: 0px;
    min-width: 0px;
    padding: 0px;
    position: relative;
    z-index: 0;
}

.r-1ipicw7 {
    width: 300px;
}

.r-117bsoe {
    margin-bottom: 20px;
}

.r-1ffoksr {
    padding: 7px;
}

.r-1ffoksr {
    padding: 7px;
}

.r-1phboty {
    border-style: solid;
}

.r-rs99b7 {
    border-width: 1px;
}

.r-ry2h4h {
    border-color: rgb(204, 204, 204);
}

#Alert7 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    display: none;
    justify-content: center;
}

#Alert7 .alert7-container {
    max-width: 240px;
    width: 80%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
}

#Alert7 .alert7-title {
    padding-top: 20px;
    font-size: 1.1em;
    font-weight: bolder;
    line-height: 2em;
}

#Alert7 .alert7-title,
#Alert7 .alert7-message {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.3em;
}

#Alert7 .alert7-message {
    padding-bottom: 14px;
    font-size: 0.8em;
}

#Alert7 .alert7-title,
#Alert7 .alert7-message {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.3em;
}

#Alert7 .alert7-actions button.alert7-action-item:last-of-type {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

#Alert7 .alert7-actions button.alert7-action-item {
    padding-top: 12px;
    padding-bottom: 12px;
    width: 100%;
    background: 0;
    border: 0;
    border-top: 1px solid #E7E7E7;
    outline: 0;
    color: #59F;
}

@media (max-height: 760px) {

    /* body.page-template-template-sports .hero-banner .main-carousel .slick-slide, body.page-template-template-sports .hero-banner, body.page-template-template-dining .hero-banner .main-carousel .slick-slide, body.page-template-template-dining .hero-banner {
    min-height: 375px;
} */
    .single_dining_title div.uvc-heading {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .single_dining_page_col {
        opacity: 1 !important;
        transform: none !important;
    }


}

@media(min-width: 1700px) {

    img.plate_image,
    .plate_image img {
        height: 138%;
    }

    .home_banner_content {
        padding-top: 100px;
    }

    .home_banner_content h1 {
        padding-bottom: 25px;
    }

    .home_banner_content p:last-of-type {
        padding-bottom: 25px;
    }
}



@media(max-width: 1700px) {
    .home_banner_content {
        padding-top: 0;
        padding-bottom: 50px;
    }

    .home_banner_content h1 {
        padding-bottom: 0;
    }

    .home_banner_content p:last-of-type {
        padding-bottom: 25px;
        padding-top: 100px;
    }
}



@media(max-width: 1600px) {
    .home_banner_content h1 {
        padding-bottom: 0;
    }

    .home_banner_content p:last-of-type {
        padding-bottom: 25px;
        padding-top: 100px;
    }

    .home_banner_content {
        padding-top: 0;
        padding-bottom: 0;
    }
}



@media(max-width: 1500px) {
    .home_banner_content {
        padding-top: 70px;
        padding-bottom: 0;
    }
}




@media(max-width: 1400px) {
    img.ball_image {
        left: -250px;
    }

    img.stumps_image {
        right: -160px;
    }

    .sports_page_tabs_img {
        width: 75px;
        height: 75px;
        line-height: 72px;
    }

    .sports_page_tabs_img img {
        height: 40px;
        max-width: 48px;
    }

    .sports_page_tabs_wrp li.sports_page_tabs_item h5 {
        font-size: 12px;
    }

    div#australia {
        margin: 0;
    }

    div#canada {
        margin: 0;
    }

    .vc_row.wpb_row.vc_row-fluid.reciprocal_top_section {
        margin: 0;
    }

    .vc_row.wpb_row.vc_row-fluid.select_country_wrp {
        margin: 0;
    }

}

/*=========================================================================================*/




@media(max-width: 1300px) {
    .container {
        max-width: 100%;
    }

    .upcoming_event_each {
        padding: 15px 35px;
    }

    .upcoming_event_slider.slick-initialized.slick-slider {
        margin: 0 -35px;
    }

    img.ball_image {
        left: -195px;
    }

    .home_banner_content {
        padding: 0 25px;
    }

    .snr_listing_image {
        margin-left: 0;
        margin-right: 0;
    }

    .snr_listing_wrp_inner ul li:nth-child(even) .snr_listing_image {
        margin-left: 0;
        margin-right: 0;
    }

    .snr_listing_content_wrp {
        right: -40px;
    }

    .snr_listing_wrp_inner ul li:nth-child(even) .snr_listing_content_wrp {
        right: auto;
        left: -40px;
    }

    .snr_listing_wrp_inner ul li {
        margin-bottom: 175px;
    }

    .history_slider_nav.slick-slider {
        padding: 0 30px;
    }

    .history_slider_wrp button.prev.slick-arrow {
        left: 3px;
    }

    .history_slider_wrp button.next.slick-arrow {
        right: 3px;
    }

    .history_slider_nav h4 {
        font-size: 20px;
    }

    .become_member_wrp {
        margin: 0;
        margin-bottom: 50px;
    }

    .inner_banner_content h1 {
        font-size: 34px;
    }

    .development_progrm_slider .slick-current.slick-active .development_progrm_content {
        right: 50px;
    }

    .development_progrm_slider button.slick-prev {
        left: 10px;
    }

    .development_progrm_slider button.slick-next {
        right: 10px;
    }

}

/*=========================================================================================*/




@media(max-width: 1200px) {
    .upcoming_event_slider.slick-initialized.slick-slider {
        padding-left: 30px;
    }

    .dining_promotions .upcoming_event_slider.slick-initialized.slick-slider {
        padding-left: 0;
    }

    img.magazine_pic {
        width: 385px;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        margin-bottom: -60px;
    }

    .club_magazine_wrp {
        padding-right: 35px;
        padding-left: 385px;
    }

    .club_magazine_wrp {
        padding-right: 35px;
        padding-left: 35px;
        margin: 0 -15px;
        text-align: center;
        margin-top: 450px;
        padding-top: 75px;
    }

    .club_magazine_section {
        padding: 100px 0;
        padding-bottom: 0;
    }

    .home_banner_content p:last-of-type {
        padding-bottom: 25px;
        padding-top: 25px;
    }

    .home_banner_content {
        padding-bottom: 50px;
    }

    .hero-banner .main-carousel .slick-track .slick-slide {
        background-size: cover !important;
    }

    .container.breadcrumbs {
        padding: 15px 15px;
    }

    .sports_page_tabs_wrp ul.more_list {
        flex-wrap: wrap;
    }

    .sports_page_tabs_wrp li.sports_page_tabs_item {
        padding: 15px 10px;
    }

    .sports_page_tabs_wrp li.sports_page_tabs_item h5 {
        padding: 0 0px;
    }

    .sports_page_tabs_wrp ul {
        margin: 0 -10px;
    }

    .about_sport_news_wrp .listing_content .each_listing {
        padding: 15px 25px;
    }

    .about_sport_news_wrp .listing_content {
        margin: 0 -25px;
    }

    .single_dining_page_row {
        margin: 0 0px;
    }

    .single_dining_page_col:first-child {
        padding-right: 15px;
    }

    .vc_row.wpb_row.vc_row-fluid.mail_id_wrp .vc_row.wpb_row.vc_inner.vc_row-fluid .wpb_column.vc_column_container.vc_col-sm-6 {
        padding: 0 15px;
    }

    .vc_row.wpb_row.vc_row-fluid.mail_id_wrp .vc_row.wpb_row.vc_inner.vc_row-fluid {
        margin: 0 -15px;
    }

    .career_listing_items {
        padding: 0 15px;
        padding-top: 50px;
    }

    .browse_photo_gallery .vc_row.wpb_row.vc_inner.vc_row-fluid {
        margin: 0;
    }

    .vc_row.wpb_row.vc_row-fluid.browse_photo_gallery .wpb_text_column.gallery_listing_wrp {
        margin: 0;
        padding: 0 15px;
    }

    .gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails {
        margin: 0px -10px !important;
    }

    .gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item {
        padding: 15px 10px;
    }

    .gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-title2 {
        font-size: 18px;
    }

    .vc_row.wpb_row.vc_row-fluid.browse_photo_gallery {
        padding: 60px 0;
    }

    .page-template-template-news form#filter_search,
    .page-template-template-events form#filter_search,
    .post-type-archive-event form#filter_search {
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-right: -100px;
    }

    .page-template-template-news form#filter_search button#reset_filter,
    .page-template-template-events form#filter_search button#reset_filter,
    .post-type-archive-event form#filter_search button#reset_filter,
    .post-type-archive-event form#filter_search h5#reset_filter {
        position: absolute;
        top: 22px;
        height: 25px;
        margin: 0;
    }

    .page-template-template-news form#filter_search input {
        width: 150px;
    }

    .single_dining_page_col .magazin_flteritem_wrp_col,
    .single_dining_page_col .event_filter_wrp .magazin_flteritem_wrp_col {
        width: 100%;
        padding-right: 100px;
        position: relative;
    }

    .membership_page_contaciner {
        padding: 65px 20px !important;
        padding-bottom: 200px !important;
    }

    .page-template-template-events .event_filter_wrp_right,
    .post-type-archive-event .event_filter_wrp_right {
        width: 50%;
        padding-bottom: 17px;
        margin-right: -100px;
    }

    .page-template-template-events .event_filter_wrp_left {
        width: 100%;
    }

    .page-template-template-events form#filter_search button#reset_filter,
    .post-type-archive-event form#filter_search button#reset_filter {
        top: 35px;
    }

    .page-id-19435 .botm_menu li a {
        font-size: 12px;
    }

    .page-id-19435 .botm_menu li {
        padding-left: 15px;
    }

    .additional_tabs {
        padding: 0 15px;
        padding-bottom: 50px;
    }


}

/*=========================================================================================*/








@media(max-width: 1024px) {

    .snr_listing_wrp_inner ul li {
        width: 100%;
        margin-bottom: 60px;

    }

    .snr_listing_content_wrp {
        right: auto;
        margin-top: -35px;
    }

    .snr_listing_wrp_inner ul li:nth-child(even) .snr_listing_content_wrp {
        right: auto;
        left: auto;
    }

    .snr_listing_wrp_inner ul li:nth-child(odd) {
        margin-top: 0;
    }

    .snr_listing_inner {
        padding: 0;
    }

    .snr_listing_wrp_inner ul li .snr_listing_image {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .snr_listing_wrp_inner ul li:nth-child(2) {
        margin-top: 0;
    }

    .about_sport_news_wrp .listing_content .each_listing .each_listing_img img {
        height: 175px;
    }

    .cricket_bat_image img {
        bottom: -125px;
        left: -465px;
    }

    .development_progrm_each {
        min-height: 600;
    }

}

/*=========================================================================================*/

@media(max-width: 992px) {
    .home_banner_content h1 {
        font-size: 32px;
    }

    .banner_notice {
        position: static;
        transform: none;
        text-align: center;
        display: block;
        width: 100%;
        max-width: 100%;
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .banner_notice_left {
        background: none;
        min-width: 100%;
    }

    .banner_notice_left h5 {
        font-size: 12px;
        color: #006524;
    }

    .banner_notice_left h5 strong {
        font-size: 24px;
    }

    .banner_notice_right {
        text-align: center;
        margin: 0 auto;
    }

    .banner_notice_right ul.slick-dots {
        position: static;
        padding: 10px 0;
        display: block !important;
        padding-right: 38px;
    }

    .banner_notice .banner_notice_right .theme_btn {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 35px;
    }

    img.bails_image {
        position: absolute;
        display: block;
        width: 130px;
        left: -1px;
        bottom: 0;
    }

    .home_news_list {
        padding-right: 0;
        text-align: center;
    }

    .home_news_list li {
        text-align: left;
        border-bottom: 1px solid #e5e5e5;
        padding: 20px 0px !important;
    }

    .home_news_list_right {
        padding-left: 25px;
        text-align: left;
    }

    .recreation_section ul li {
        width: 20%;
    }

    .sports_item_icon {
        width: 75px;
        height: 75px;
    }

    img.sand_image {
        width: 130%;
        right: -450px;
        z-index: -1;
        bottom: 44%;
    }

    .dining_content_wrp {
        padding-left: 0;
    }

    .home_news_list ul {
        max-width: 450px;
        margin: 0 auto;
    }

    .banner_notice_right {}

    .banner_notice_slider {
        max-width: 100%;
        max-width: 500px;
        margin: 0 auto;
        text-align: left;
        padding-left: 38px;
    }

    .banner_notice_slider:before {
        position: absolute;
        content: "\f0f3";
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        color: #006524;
        font-size: 30px;
        left: 0;
        top: 2px;
    }

    #nav-icon {
        display: inline-block;
        width: 26px;
    }

    #nav-icon span {
        background: #fff;
    }

    .top_menu ul {
        display: inline-block;
        text-align: right;
        vertical-align: middle;
    }

    .top_menu li:last-child,
    .top_menu li:nth-child(2),
    .top_menu li:nth-child(5) {
        display: none;
    }

    .header_right img {
        width: 19px;
        height: 25px;
        margin-top: 0;
    }

    .top_menu li {
        border: none;
        margin: 0 !important;
        padding: 0 4px !important;
    }

    .header_right .top_menu li a {
        display: block;
        text-align: center;
        color: #fff !important;
    }

    .menu_active .header_right .top_menu li a {
        color: #006524 !important;
    }

    .top_menu li a img {
        margin: 0 auto;
    }

    .header_wrp {
        align-items: center;
    }

    .botm_menu {
        display: block;
        position: absolute;
        width: 100vw;
        height: 100vh;
        padding-bottom: 200px;
        overflow: auto;
        left: 0;
        top: 0;
        background: #fff;
        padding-top: 95px !important;
        opacity: 0;
        z-index: -2;
        visibility: hidden;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .botm_menu .menu_wrp {
        display: block;
    }

    .botm_menu.active {
        opacity: 1;
        visibility: visible;
    }

    .menu_active .top_menu li a img {
        filter: none;
    }

    .page-id-19435.menu_active .header_section .header_section_inner .top_menu li a img,
    .page-id-19456.menu_active .header_section .header_section_inner .top_menu li a img,
    body.menu_active .header_section .header_section_inner .top_menu li a img {
        filter: grayscale(10) brightness(10);
    }

    .menu_active #nav-icon span {
        background: #006524;
    }

    .page-id-19435.menu_active #nav-icon span,
    .page-id-19456.menu_active #nav-icon span,
    body.menu_active #nav-icon span {
        background: #fff;
    }

    .header_right a {
        color: #006524 !important;
    }

    .botm_menu .menu_wrp li {
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

    .botm_menu .menu_wrp>ul ul {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        text-align: left;
        padding: 10px 0;
        margin: 0;
        display: none;
    }

    .mega_submenu ul {
        column-count: 1;
    }

    .botm_menu .menu_wrp>ul li {
        padding: 8px 0;
    }

    .botm_menu .menu_wrp>ul li a {
        padding: 5px 20px;
        font-size: 20px;
        display: block;
    }

    .mega_menu_dtls {
        display: none;
    }

    .menu_img_wrp {
        display: none;
    }

    .mega_submenu {
        width: 100%;
    }

    .mega_meu_wrp_inner {
        display: flex;
        max-width: 100%;
        margin: 0 auto;
        padding: 100px 0;
        text-align: left;
        padding-top: 10px;
        width: 100%;
        display: block;
    }

    .mega_submenu ul li img {
        display: none;
    }

    .header_section_inner:after {
        content: "";
        background: #fff;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 90;
        opacity: 0;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .menu_active .header_section_inner:after {
        opacity: 1;
    }

    .logo_wrp {
        position: relative;
        z-index: 99;
    }

    .top_menu {
        position: relative;
        z-index: 99;
    }

    .menu_wrp a.theme_btn,
    .menu_wrp a.theme_btn_red {
        display: block;
        margin: 10px 15px !important;
        display: block;
        width: auto !important;
        font-size: 16px !important;
        position: relative;
        z-index: 88;
        color: #fff !important;
    }

    a.theme_btn_red {
        line-height: 50px !important;
        background: #d2232a !important;
        border-radius: 12px;
    }

    a.theme_btn_red strong:before {
        background: #ff7d82;
        border-radius: 12px;
    }

    .menu_wrp>ul {
        padding: 15px 0;
    }

    .mobile_header_search {
        display: block;
        padding: 15px;
        padding-bottom: 25px;
    }

    .mobile_header_search form {
        display: flex;
        flex-wrap: wrap;
    }

    .mobile_header_search form input {
        flex-grow: 1;
        border: none;
        text-align: center;
        font-size: 18px;
        text-transform: uppercase;
        border-bottom: 1px solid #006524;
    }

    .mobile_header_search form button {
        order: -1;
        background: none;
        border: none;
        outline: none;
    }

    .mobile_header_search form button img {
        filter: none;
    }

    .mobile_header_search form input::-webkit-input-placeholder {
        /* Edge */
        color: #006524;
    }

    .mobile_header_search form input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #006524;
    }

    .mobile_header_search form input::placeholder {
        color: #006524;
    }

    .botm_menu .menu_wrp>ul>li {
        position: relative;
    }

    .botm_menu .menu_wrp>ul>li button.submenu_togl {
        position: absolute;
        width: 50px;
        height: 50px;
        right: 15px;
        top: 0;
        padding-right: 10px;
        text-align: right;
        z-index: 9;
        display: none;
    }

    .botm_menu .menu_wrp ul li.mega_menu_parent button.submenu_togl {
        display: block;
    }

    .botm_menu .menu_wrp>ul>li button.submenu_togl:after {
        content: "";
        width: 12px;
        height: 12px;
        border-right: 2px solid #006524;
        display: inline-block;
        border-bottom: 2px solid #006524;
        transform: rotate(-45deg);
        margin: 0 auto;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .menu_wrp>ul>li:hover>a {
        border-bottom: none;
        line-height: inherit;
    }

    .botm_menu .menu_wrp>ul ul {
        transition: none;
    }

    .botm_menu .menu_wrp>ul>li button.submenu_togl.active:after {
        transform: rotate(45deg);
    }

    .mega_meu_wrp {
        position: static;
        opacity: 1;
        visibility: visible;
        padding: 0;
        display: none;
        transition: none;
    }

    .mega_meu_wrp_inner {
        padding: 0;
    }

    .botm_menu .menu_wrp .mega_submenu ul {
        display: block !important;
        max-height: auto !important;
        height: auto !important;
        padding: 10px 0 !important;
    }

    .botm_menu .menu_wrp .mega_submenu ul li a {
        display: block;
        color: #006524 !important;
    }

    .botm_menu .menu_wrp>ul ul {
        background: #f7f7f7;
    }

    body.menu_active {
        overflow: hidden;
    }

    .inner_banner_content h1 {
        font-size: 28px;
    }

    .snr_listing_section {
        padding: 60px 0;
    }

    .snr_listing_top h2 {
        font-size: 20px;
    }

    .uvc-heading .uvc-sub-heading {
        font-size: 20px;
    }

    .about_sport_item_wrp .col-md-3 {
        order: -1;
        text-align: center;
        padding-bottom: 35px;
        width: 100%;
    }

    .about_sport_item_wrp {
        padding: 50px 0;
        padding-bottom: 40px;
    }

    .about_sports_captn {
        max-width: 350px;
        margin: 0 auto;
    }

    .comitte_container .col {
        min-width: 100%;
    }

    .comitte_container .col:first-child {
        min-width: 100%;
        order: 2;
        margin-top: 35px;
    }

    .about_sport_comitte_wrp {
        padding: 65px 0;
    }

    .about_sport_news_wrp {
        padding: 65px 0;
        padding-top: 40px;
        text-align: center;
    }

    .sports_training_each_inner>div {
        flex-grow: 1;
        min-width: 33.33%;
        max-width: 33.33%;
    }

    .sports_training_each_inner h5 {
        display: block;
    }

    .sports_training_dates_wrp ul li {
        border: 3px solid #21632c;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .sports_training_dates_wrp ul {
        background: #fff;
        border: none;
        box-shadow: none;
    }

    .about_sport_rule_time_wrp .row {
        padding: 20px 0;
    }

    .about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {
        width: 33.33% !important;
        max-width: 33.33%;
        padding: 1px;
        overflow: hidden;
        padding: 10px 15px;
    }

    .about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails {
        width: auto !important;
        max-width: initial !important;
        margin: 0 -15px !important;
        padding-left: 0;
    }

    .single_dining_page_col {
        width: 100%;
        padding: 0 15px;
    }

    .vc_row.wpb_row.vc_row-fluid.single_dining_title {
        position: relative;
        top: 0;
        margin: 0;
    }

    .single_dining_page_container {
        padding-top: 65px;
    }

    .dining_single_page_row.dining_single_top .vc_btn3-container.theme_btn {
        width: 100%;
        margin: 10px 0;
        max-width: initial;
        display: inline-block;
        margin-right: 0;
        text-align: center;
    }

    .single_dining_page_col+.single_dining_page_col {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .single_dining_page_col .theme_btn {
        max-width: 100%;
    }

    .page-template-template-dining-php .container.breadcrumbs+.container.visible-xs {
        display: none !important;
    }

    .single_dining_page_container {
        padding: 65px 0;
    }

    .dining_single_page_row.dining_single_top {
        padding-bottom: 50px;
    }

    .page-template-template-dining-php .single_dining_page_col .wpb_text_column.wpb_content_element {
        margin-bottom: 15px;
    }

    .single_dining_page_col .listing_content {
        margin-bottom: 90px;
    }

    .vc_row.wpb_row.vc_row-fluid.mail_id_wrp .vc_row.wpb_row.vc_inner.vc_row-fluid .wpb_column.vc_column_container.vc_col-sm-6 {
        padding: 15px;
        width: 100%;
    }

    .career_listing_each_inner h4 {
        font-size: 20px;
        padding-left: 35px;
    }

    .container.breadcrumbs+.container.visible-xs {
        display: none !important;
    }

    .career_listing_each_inner h4 img {
        width: 24px;
    }

    .vc_row.wpb_row.vc_row-fluid.career_listing_wrp h3 {
        line-height: 1.5;
    }

    .faq_nav_btns .vc_btn3-container a.vc_general {
        font-size: 14px;
    }

    .faq_nav_btns .wpb_single_image .vc_figure {
        width: 70px;
        height: 70px;
    }

    .faq_nav_btns .wpb_single_image .vc_figure img {
        width: 43px;
        height: 40px;
    }

    .staff_content_wrp_inner {
        padding: 15px 10px;
    }

    .staff_content_wrp {
        padding: 15px;
    }

    .page-template-template-staff .staff .staff_content_wrp_inner .name {
        font-size: 18px;
    }

    .page-template-template-staff .staff .staff_content_wrp_inner .position {
        font-size: 13px;
    }

    .page-template-template-staff .staff .staff_content_wrp_inner .email a {
        font-size: 13px;
    }

    .vc_row.wpb_row.vc_inner.kcc_store_items_cols {
        display: flex;
        flex-wrap: wrap;
    }

    .kcc_store_items_cols .wpb_column.vc_column_container.vc_col-sm-2 {
        width: 33.33%;
        padding: 15px;
    }

    .gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {
        width: 33.33% !important;
        max-width: 33.33%;
        padding: 1px;
        overflow: hidden;
    }

    .gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item {
        width: 50% !important;
        max-width: 50%;
        padding: 15px 10px;
    }

    .gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-title2 {
        font-size: 16px;
        padding: 20px 10px;
    }

    .list_magzine .col-md-3 {
        width: 50%;
    }

    .list_magzine {
        display: flex;
        flex-wrap: wrap;
    }

    .dining_section.facility_page .dining_content_wrp {
        z-index: 9;
    }

    .vc_row.wpb_row.vc_row-fluid.dining_section.facility_page {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .dining_section.facility_page .dining_content {
        padding: 1px;
        z-index: 9;
        right: 0;
        bottom: 0;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid.facility_item_each {
        padding-bottom: 85px;
    }

    .membership_page_contaciner .wpb_row .vc_col-sm-6 {
        min-width: 100%;
    }

    .membership_page_contaciner .theme_btn.vc_btn3-inline {
        margin: 5px 0;
        margin-right: 10px;
    }

    .membership_page_contaciner .wpb_row .vc_col-sm-6 .vc_column-inner>.wpb_wrapper:before,
    .membership_page_contaciner .wpb_row .vc_col-sm-6+.vc_col-sm-6 .vc_column-inner>.wpb_wrapper:before {
        content: "";
        position: absolute;
        background: #aeaeae;
        height: 1px;
        width: 100%;
        left: 0;
        top: -45px;
    }

    .membership_page_contaciner .cricket_bat_image img {
        bottom: -280px;
    }

    .membership_page_contaciner h3 {
        max-width: 100%;
    }

    .membership_page_contaciner .uvc-main-heading h2 {
        font-size: 20px;
    }

    .development_progrm_each img {
        display: block;
    }

    .development_progrm_each {
        background: none !important;
    }

    .development_progrm_slider .slick-current.slick-active .development_progrm_content {
        right: 0;
    }

    .development_progrm_slider button.slick-arrow {
        top: 36%;
    }

    .search-results .search-results-list {
        width: 48%;
    }

    .page-id-19435 .header_section .top_menu.hide_menu,
    .page-id-19456 .header_section .top_menu.hide_menu,
    body .header_section .top_menu.hide_menu {
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        padding: 0;
    }

    .page-id-19435 .header_section .top_menu {
        padding-bottom: 0;
    }

    html.vc_mobile {
        margin-top: 0 !important;
    }

    .admin-bar.page-id-19435 .header_section .header_section_inner,
    .admin-bar.page-id-19456 .header_section .header_section_inner,
    body.admin-bar .header_section .header_section_inner {
        top: 0;
    }

    .page-id-19435 .header_section .header_section_inner.fixed .header_left,
    .page-id-19456 .header_section .header_section_inner.fixed .header_left {
        max-width: 40px;
    }

    .vc_row.wpb_row.vc_row-fluid.about_story {
        padding: 0 0;
        padding-bottom: 60px;
    }

    .page-id-19435 .header_section_inner.fixed .header_right ul li.member-area-item,
    .header_right ul li.member-area-item {
        display: none !important;
    }

    .page-id-19435 .header_section .top_menu,
    .page-id-19456 .header_section .top_menu,
    .page-id-19437 .header_section .top_menu,
    body .header_section .top_menu {
        padding-bottom: 0;
    }

    .header_section .header_section_inner.fixed .header_left {
        max-width: 40px;
    }

    .container.breadcrumbs span[typeof="ListItem"]:after {
        border-right: 1px solid #21632c !important;
        border-bottom: 1px solid #21632c !important;
    }

    html {
        margin-top: 0 !important;
    }

    li.mega_menu_parent.no_url button.submenu_togl {
        width: 100% !important;
    }

    .fc-view-harness.fc-view-harness-active {
        min-height: 585px;
    }

    .cricket_committee_members img {
        width: 200px;
        margin: 0 auto;
        margin-bottom: 20px;
        display: block;
    }

    .single-promotions article.promotions header {
        top: -45px;
    }

    .single.single-promotions .single_dining_page_container {
        padding-top: 100px;
    }

    .single-promotions article.promotions header h3:before,
    .single-promotions article.promotions header h3:after {
        width: 45px;
        min-width: 25px;
    }
}

/*=========================================================================================*/






@media(max-width: 800px) {
    #wpadminbar {
        position: absolute;
        top: -47px;
    }

    .top_menu li a {
        font-size: 0px;
    }

    .top_menu li a.theme_btn {
        font-size: inherit;
    }

    .header_right ul li form {
        display: none;
    }

    .top_menu li a.theme_btn {
        font-size: inherit;
        display: none;
    }

    .menu_wrp {
        display: none;
    }

    .home_banner_inner {
        /*background-position: center!important;*/
    }

    .home_banner_content h1 {
        text-shadow: 0px 0px 6px #000;
    }

    .recreation_section.for_pc {
        display: none;
    }

    .recreation_section.for_mobile {
        display: block;
    }

    .club_story_section .slick-track {
        padding: 7% 0;
    }

    body .browse_photo_gallery .bwg_thumbnail.bwg_container .bwg-album-thumbnails .bwg-item,
    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item,
    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {
        min-width: 33.33% !important;
        padding: 15px 15px;
    }

    .browse_photo_gallery .bwg_thumbnail.bwg_container {
        margin: 0 -5px;
    }

    body .browse_photo_gallery .bwg_thumbnail.bwg_container .bwg-album-thumbnails .bwg-item .bwg-title2,
    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-title2 {
        font-size: 16px !important;
    }

    .development_progrm_each {
        min-height: auto;
    }

    .development_progrm_section .development_progrm_slider .col-md-6 {
        width: 100%;
    }

    .development_progrm_section .development_progrm_slider .development_progrm_each img {
        display: block;
        height: 55vw;
        object-fit: cover;
        width: 100%;
    }

    .home .development_progrm_content h4 {
        text-shadow: none;
        color: #21632c;
    }

}

/*=========================================================================================*/



@media(max-width: 767px) {

    .latest_news_home_section .col {
        min-width: 100%;
    }

    .home_news_video {
        padding-top: 70px;
    }

    .dining_content_wrp {
        flex-wrap: wrap;
    }

    .dining_content_inner_img {
        flex-grow: 1;
        margin: 0 -15px;
        order: -1;
        padding-top: 0;
    }

    .dining_content_inner_img img {
        min-height: 250px;
    }

    .dining_content {
        max-width: 100%;
        margin-top: -100px;
        z-index: 99;
    }

    img.plate_image {
        width: auto;
        height: 100%;
        top: auto;
        transform: translateY(-50%);
        left: -63%;
        bottom: -75%;
    }

    .col.footer_col_1 {
        max-width: 100%;
        min-width: 100%;
        text-align: center;
        justify-content: center;
        padding-bottom: 50px;
    }

    .footer_logo {
        max-width: 105px;
        margin: 0 auto;
        padding-bottom: 25px;
    }

    footer {
        padding: 50px 0;
        padding-bottom: 50px;
    }

    .col.footer_col_4 {
        max-width: 100%;
        min-width: 100%;
        text-align: center;
        padding-top: 50px;
    }

    .col.footer_col_4 h5 {
        max-width: 170px;
        margin: 0 auto;
    }

    .app_dwnld {
        max-width: 150px;
        margin: 0 auto;
        text-align: center;
    }

    .app_dwnld li {
        display: inline-block;
        padding-right: 0;
    }

    ul.footer_terms li {
        line-height: 1.3;
    }

    .upcoming_event_section .slick-dots {
        bottom: -80px;
        opacity: 0;
    }

    .upcoming_event_section.dining_promotions ul.slick-dots {
        opacity: 1;
    }

    .col.footer_col_3 {}

    .col.footer_col_2 {
        text-align: center;
    }

    .home_news_list li {
        border-bottom: 1px solid #e5e5e5 !important;
    }

    .home_news_list ul ul.slick-dots,
    .home_news_list ul ul.slick-dots li {
        border: none !important;
        padding: 0;
        position: static;
    }

    .home_news_list ul ul.slick-dots li {
        padding: 0 3px !important;
    }

    .home_news_list ul.slick-slider {
        padding-bottom: 25px;
    }

    .snr_listing_top .theme_btn {
        margin: 10px 0;
        width: 100%;
    }

    .home_news_list ul ul.slick-dots {
        padding-top: 25px;
    }

    .dining_section {
        padding-top: 0;
    }

    .development_progrm_each img {
        display: block;
    }

    .development_progrm_each {
        background: none !important;
    }

    .development_progrm_each {
        padding: 35px 0;
        margin: 0 -15px;
        padding-top: 0;
    }

    .development_progrm_content {
        background: #fff;
        padding: 20px 15px;
        text-align: center;
    }

    .development_progrm_section ul.slick-dots {
        position: static;
        margin-top: -50px;
    }

    .app_dwnld li {
        display: inline-block;
        padding: 5px 0;
    }

    .club_story_section .club_galry_slider {
        padding-bottom: 0;
    }

    .club_story_section {
        padding: 50px 0;
    }

    body {
        padding: 0 !important;
    }

    .home_banner_inner {
        background-position: center 70% !important;
        background-size: auto 130% !important;
    }

    .club_magazine_wrp p {
        text-align: center;
        width: 100%;
    }

    .club_magazine_wrp .theme_btn+a.theme_btn {
        order: 2;
    }

    .club_magazine_wrp .share_btn {
        padding-bottom: 0;
    }

    .club_magazine_wrp {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .upcoming_event_section.dining_promotions h3 strong:before,
    .upcoming_event_section.dining_promotions h3 strong:after {
        opacity: 0;
    }

    img.stumps_image {
        right: -133px;
        width: 253px;
        bottom: -175px;
    }

    .club_magazine_section {
        padding-bottom: 0;
        padding-top: 70px;
    }

    .home_banner_inner {
        height: 100vh;
        min-height: 450px;
        height: 450px;
    }

    .sports_page_tabs_wrp li.sports_page_tabs_item {
        width: 33.33%;
    }

    .sports_page_tabs_wrp ul {
        max-width: 440px;
        margin: 0 auto;
    }

    .about_sport_news_wrp .listing_content .each_listing .each_listing_img img {
        height: 140px;
    }

    .about_sports_content h3 {
        line-height: 1.4;
    }

    .about_sport_news_wrp h4 {
        font-size: 20px;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid.browse_outlet_wrp .vc_col-sm-6 {
        min-width: 100%;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid.browse_outlet_wrp {
        flex-wrap: wrap;
    }

    .browse_outlet_wrp h4 {
        text-align: center;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid.browse_outlet_wrp .vc_column-inner {
        max-width: 375px;
        margin: 0 auto;
    }

    .browse_outlet_wrp .wpb_single_image,
    .dining_menu_right .wpb_single_image {
        justify-content: center;
    }

    .contact_form_wrp_left.wpb_column.vc_column_container {
        padding-top: 30px;
        text-align: center;
    }

    .contact_form_wrp_right h4 {
        font-size: 20px;
    }

    .vc_separator.wpb_content_element h4,
    .vc_separator.wpb_content_element h3 {
        font-size: 20px;
    }

    .contact_form_wrp_right form .row .col {
        min-width: 100%;
    }

    .gmap_section .vc_btn3-container.theme_btn {
        /*     width: 100%; */
        margin: 0;
    }

    .gmap_section {
        text-align: center;
    }

    .single_career_each_inner h3 {
        font-size: 20px;
        padding-bottom: 20px;
    }

    .single_career_form .col {
        min-width: 100%;
    }

    .single_career_form h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid.faq_nav_btns {
        padding-top: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid.faq_nav_btns .wpb_column.vc_column_container.vc_col-sm-3 {
        width: 50%;
        padding: 15px 0;
    }

    .faq_list_wrp.vc_row {
        padding: 35px 0;
    }

    .vc_toggle.vc_toggle_default {
        padding: 30px 0px;
        margin: 0;
    }

    .vc_toggle.vc_toggle_default .vc_toggle_title {
        padding: 0;
    }

    .faq_list_wrp.vc_row h3 {
        font-size: 20px;
    }

    .vc_row.wpb_row.vc_row-fluid.faq_top_section {
        padding: 50px 0;
        padding-bottom: 0;
    }

    .vc_toggle .vc_toggle_title i.vc_toggle_icon {
        left: auto !important;
        right: 0;
    }

    .vc_toggle_title h4 {
        display: block;
        padding-right: 25px;
        line-height: 1.5;
    }

    .faq_list_wrp.vc_row .wpb_text_column.wpb_content_element {
        margin-bottom: 15px;
    }

    .committee_section .col-sm-4 {
        width: 100%;
        max-width: 450px;
    }

    .committee_section {
        padding: 50px 0;
    }

    .page-template-template-staff .committee_section .staff {
        margin: 20px 0;
    }

    .list_magzine a img {
        height: 380px;
    }

    .vc_row.wpb_row.vc_row-fluid.recreation_section {
        padding: 50px 0;
    }

    .kcc_facilities_top_section {
        padding: 60px 0;
    }

    .vc_empty_space.mobile_60 {
        height: 60px !important;
    }

    .dining_section.facility_page .dining_content_inner_img {
        margin-right: 0;
        left: 0;
    }

    .dining_section.facility_page .dining_content {
        width: 90%;
    }

    .dining_section.facility_page .dining_content_inner_img {
        padding-left: 10%;
    }

    .facility_page .dining_content .vc_btn3-container.theme_btn {
        padding: 0 35px;
        padding-left: 35px;
    }

    .facility_item_each .wpb_column.vc_col-sm-6 {
        min-width: 100%;
    }

    .vc_row.wpb_row.vc_row-fluid.facility_list_section {
        padding-top: 50px;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid.facility_item_each {
        padding-bottom: 75px;
        flex-wrap: wrap;
    }

    .facility_item_each .wpb_column.vc_col-sm-6 .vc_single_image-wrapper {
        padding-bottom: 35px;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid.facility_item_each:nth-child(even) .vc_col-sm-6+.vc_col-sm-6 {
        order: -1;
    }

    .facility_item_each h4 {
        font-size: 20px;
        padding-left: 40px;
    }

    .facility_item_each h4 img {
        width: 28px;
        height: 28px;
        margin-top: -14px;
    }

    .facility_item_each .theme_btn.vc_btn3-inline {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .vc_row.wpb_row.vc_row-fluid.about_story .uvc-heading {
        padding-bottom: 10px;
    }

    .vc_row.wpb_row.president_message_title {
        padding-top: 65px;
    }

    .president_message figure.wpb_wrapper.vc_figure {
        width: 100%;
    }

    .president_message .vc_single_image-wrapper.vc_box_border_grey {
        width: 100%;
        display: block;
        max-width: 450px;
        margin: 0 auto;
    }

    .vc_row.wpb_row.vc_row-fluid.about_story .president_message .vc_col-sm-9>.vc_column-inner {
        padding-left: 15px;
        padding-top: 25px;
        text-align: center;
    }

    .vc_row.wpb_row.about_story .theme_btn {
        text-align: center;
        padding: 0;
    }

    .vc_row.wpb_row.vc_row-fluid.about_story {
        padding-bottom: 50px;
    }

    .explore_club a.vc_general {
        font-size: 17px;
        padding: 0 40px;
        width: 90%;
        max-width: 425px;
        bottom: -110px;
    }

    .why_kcc_section {
        padding: 60px 0;
        padding-bottom: 115px;
    }

    .recreation_section .vc_btn3-container.theme_btn.vc_btn3-inline a.vc_general {
        font-size: 14px !important;
    }

    .recreation_section .vc_btn3-container.theme_btn.vc_btn3-inline {
        margin: 0;
    }

    .vc_row.wpb_row.vc_inner.dining_content_wrp {
        padding: 0 15px;
    }

    .page-id-5 .browse_photo_gallery {}

    .page-id-5 .browse_photo_gallery .wpb_single_image figure.wpb_wrapper {
        display: block;
        text-align: center;
    }

    .page-id-5 .vc_single_image-wrapper.vc_box_border_grey {}

    .vc_toggle_title h4 {
        font-size: 16px;
    }

    .vc_row.wpb_row.vc_row-fluid.faq_top_section {
        text-align: center;
    }

    .fc .fc-toolbar-title {
        left: 55%;
    }

    #calendar.fc button.fc-prev-button.fc-button.fc-button-primary {
        left: 55%;
    }

    #calendar.fc button.fc-next-button.fc-button.fc-button-primary {
        left: 55%;
    }

    .single_dining_page_col {
        padding: 15px;
    }

    .page-template-template-sports div.bwg_search_container_1 {
        display: none !important;
    }

    .hero-banner .main-carousel .slick-slide {
        top: auto !important;
    }

    .development_progrm_slider button.slick-arrow {
        top: 32%;
    }

    .page-id-19437 .top_menu li:first-child img {
        height: 21px;
    }

    .page-id-19437 #nav-icon span {
        height: 2px;
    }

    .page-id-19435 .inner_banner_wrp {
        top: auto;
        bottom: 0;
        transform: none;
        padding-bottom: 15px;
    }

    .page-id-19435 .inner_banner_content p {
        display: none;
    }

    .page-id-19435 .inner_banner_content h1 {
        padding-bottom: 10px;
    }

    div#calendar.active {
        padding-top: 60px;
    }

    .fc .fc-toolbar-title {
        left: 0 !important;
        width: 100%;
    }

    #calendar.fc button.fc-next-button.fc-button.fc-button-primary {
        right: 0;
        position: absolute;
        top: 5px;
        width: auto;
        left: auto !important;
    }

    #calendar.fc button.fc-prev-button.fc-button.fc-button-primary {
        left: 0;
        position: absolute;
        top: 5px;
    }

    .magazin_flteritem_wrp_col.menu_for_mobile {
        padding-right: 0 !important;
    }

    .menu_mobile_filter_top {
        display: flex;
        width: 100%;
        align-items: center;
        margin-bottom: 15px;
    }

    .page-template-template-news .menu_mobile_filter_top form#filter_search,
    .page-template-template-events .menu_mobile_filter_top form#filter_search,
    .post-type-archive-event .menu_mobile_filter_top form#filter_search {
        margin-right: 0;
        padding: 0;
    }

    .page-template-template-events .menu_mobile_filter_top .event_filter_wrp_right,
    .post-type-archive-event .menu_mobile_filter_top .event_filter_wrp_right {
        margin-right: 0;
        width: auto;
        padding: 0;
        min-width: 90px;
    }

    .event_filter_wrp_right li button img {
        width: 18px;
        height: 16px;
    }

    .event_filter_wrp_right ul li {
        padding-left: 5px;
    }

    .magazin_flteritem_wrp_col .menu_mobile_filter_top h4.magazin_flter_title {
        font-size: 16px;
    }

    .magazin_flteritem_wrp_col .menu_mobile_filter_top h4.magazin_flter_title {
        max-width: 90px;
        min-width: 93px;
        padding: 0;
    }

    .event_filter_wrp_left .menu_mobile_filter_top form#filter_search input {
        width: 100px;
        padding: 2px 0;
    }

    .magazin_flteritem_wrp_col .menu_mobile_filter_top h4.magazin_flter_title img {
        margin-top: -2px;
    }

    .page-template-template-news .single_dining_page_container {
        padding-top: 35px;
    }

    .menu_for_mobile .magazin_flteritem {
        display: none;
        transition: none;
    }

    .menu_for_mobile .magazin_flteritem_wrp.news_filter {
        width: 100%;
    }

    .menu_for_mobile .magazin_flteritem {
        position: absolute !important;
        left: 0 !important;
        right: auto !important;
        z-index: 99999;
        top: 0 !important;
        background: #006524 !important;
        padding: 15px !important;
        width: 100%;
        box-shadow: 0px 0px 15px -4px #fff;
    }

    .menu_for_mobile .magazin_flteritem ul li {
        display: block !important;
    }

    .event_filter_wrp_left {
        width: 100%;
    }

    .menu_for_mobile .magazin_flteritem ul li span {
        color: #fff !important;
    }

    .magazin_flteritem_wrp.news_filter .magazin_flteritem[style="display: block;"] {
        /*     padding: 15px !important; */
    }

    ul.sports_submenu {
        padding: 1px;
        padding-left: 15px;
    }

    .menu_for_mobile .magazin_flteritem_wrp.news_filter button#reset_filter {
        display: block;
        margin-bottom: 10px;
    }

    .magazin_flteritem_wrp_col.menu_for_pc {
        display: none;
    }

    .single_dining_page_col {
        position: relative;
        z-index: 99;
    }

    .single_dining_page_col+.single_dining_page_col {
        z-index: 1;
    }

    .home_banner_content.for_mobile {
        display: block;
        height: auto !important;
        min-height: auto;
        padding: 35px 0;
        text-align: center;
        max-height: none !important;
    }

    .home_banner_content.for_mobile h1 {
        display: none;
    }

    .home_banner_content.for_mobile p.homesub {
        color: #000;
        text-shadow: none;
        margin: 0 auto;
        opacity: 1 !important;
        display: block !important;
        padding-top: 0;
        padding-bottom: 15px;
        color: #006524;
        font-size: 16px;
        line-height: 1.8;
        margin-top: 40px !important;
    }

    .home_banner_content.for_mobile .home_btn_wrp a.theme_btn {
        display: none;
    }

    .home_banner_content.for_mobile .home_btn_wrp a.theme_btn+a.theme_btn {
        display: inline-block;
    }

    .home_banner_content.for_mobile .home_btn_wrp {
        position: static;
        opacity: 1 !important;
        display: block !important;
    }

    .home_banner_content p.homesub {
        opacity: 0 !important;
        display: none !important;
    }

    .home_banner_section .home_btn_wrp {
        opacity: 0 !important;
        display: none;
    }

    .home_banner_slider.slick-slider div {
        height: 100%;
        background-position: 38% -1px !important;
    }

    .home_banner_section .home_banner_content,
    .home_banner_section .home_banner_inner {
        max-height: calc(100vh - 78px);
    }

    .history_slider_nav {
        display: none;
    }

    .listing_content_layout_togle.sort_in_grid .each_listing .grid_img_wrp {
        /*  background: #f0f0f0;     */
    }

    .menu_for_mobile {
        display: flex;
    }


}

/*=========================================================================================*/



@media(max-width: 640px) {
    html.csstransformspreserve3d {
        margin-top: 0 !important;
    }

    .home_banner_content h1 {
        font-size: 24px;
        text-shadow: 0px 0px 6px #000;
        max-width: 275px;
        margin: 0 auto;
        line-height: 1.2;
    }

    .home_banner_content p {
        text-shadow: 0px 0px 6px #000;
        max-width: 320px;
        margin: 0 auto;
    }

    .home_banner_inner {
        min-height: auto;
    }

    .sports_page_tabs_wrp {
        padding-top: 0px;
    }

    .home_banner_content {
        padding: 0 15px;
        height: 100vh;
        padding-top: 40px;
        width: 100%;
        min-height: 550px;
    }

    .home_btn_wrp {
        position: absolute;
        width: 100%;
        left: 0;
        padding: 0 15px;
        bottom: 35px;
        z-index: 9;
    }

    .header_left {
        max-width: 55px;
        transform: scale(1);
    }

    a.theme_btn {
        font-size: 16px !important;
        width: 100% !important;
        line-height: 50px !important;
        margin: 10px 0 !important;
        border-radius: 12px !important;
        padding: 0 15px;
    }

    a.theme_btn:hover,
    a.theme_btn_red:hover {}

    a.theme_btn:hover strong:before,
    a.theme_btn_red:hover strong:before {}

    .upcoming_event_inner .event_img img {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
    }

    .upcoming_event_inner .event_img {
        position: relative;
        display: block;
        padding: 29% 0;
        margin-left: 0;
    }

    .upcoming_event_inner {
        text-align: center;
    }

    .upcoming_event_inner h4 {
        font-size: 20px;
    }

    .upcoming_event_inner p {
        padding-bottom: 25px;
    }

    .event_date {
        z-index: 9;
        left: -15px;
    }

    .upcoming_event_slider.slick-initialized.slick-slider {
        padding-left: 0;
    }

    .upcoming_event_each {
        padding-bottom: 0;
    }

    .all_event_link {
        text-align: right;
        padding-top: 0;
    }

    a.share_btn img {
        width: 35px;
    }

    a.share_btn {
        vertical-align: middle;
        display: inline-block;
        margin: 15px 0;
    }

    a.theme_btn strong:after {
        content: "";
        width: 8px;
        height: 8px;
    }

    img.ball_image {
        left: -101px;
        width: 215px;
        bottom: auto;
        z-index: -1;
        top: -185px;
    }

    .recreation_section h3 strong {
        width: 200px;
        display: inline-block;
        position: relative;
    }

    .recreation_section h3 strong:before,
    .recreation_section h3 strong:after {
        position: absolute;
        top: 14px;
    }

    .recreation_section h3 strong:before {
        left: -18px;
    }

    .recreation_section h3 strong:after {
        right: -18px;
    }

    .recreation_section {
        padding-top: 85px;
    }

    .recreation_section ul li {
        width: 25%;
        padding: 15px 10px;
    }

    .sports_item_icon {
        width: 65px;
        height: 65px;
    }

    .recreation_section ul li:nth-child(8)~li {
        width: 25.33%;
    }

    .recreation_section+.recreation_section h3 strong {
        width: 205px;
    }

    img.sand_image {
        display: block;
        position: absolute;
        width: 175%;
        right: -85%;
        z-index: -1;
        bottom: 60%;
        max-width: initial;
    }

    .dining_promotions .upcoming_event_inner .event_img {
        margin-left: 0;
    }

    .upcoming_event_section.dining_promotions ul.slick-dots {
        margin-top: 30px;
    }

    .become_member_wrp ul li img {
        width: 37px;
        top: 25px;
    }

    .become_member_wrp ul li {
        padding-left: 55px;
        padding-bottom: 25px;
        padding-top: 25px;
    }

    .become_member_wrp {
        padding: 50px 25px;
    }

    img.cricket_bat_image,
    .cricket_bat_image img {
        position: absolute;
        display: block;
        width: auto;
        height: auto;
        width: 85vw;
        bottom: 135px;
        left: -50vw;
        z-index: 9;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .cricket_bat_image img {
        bottom: 150px;
    }

    .become_member_section {
        padding: 35px 0px;
    }

    ul.footer_logos {
        padding-top: 15px;
    }

    ul.footer_terms {
        padding-top: 15px;
    }

    footer {
        padding-bottom: 5px;
    }

    a.theme_btn strong:before {
        border-radius: 12px;
    }

    ul.footer_logos li {
        display: inline-block;
        padding: 0 15px;
        width: 48%;
        padding: 15px;
    }

    .menu_wrp a.theme_btn,
    .menu_wrp a.theme_btn_red {
        max-width: 235px;
        margin: 10px auto !important;
    }

    .mobile_header_search {
        max-width: 260px;
        margin: 0 auto;
        padding: 20px 0;
        padding-bottom: 25px;
    }

    .mobile_header_search form {
        display: flex;
        flex-wrap: nowrap;
    }

    .mobile_header_search form button {
        min-width: 40px;
    }

    .mobile_header_search form input {
        max-width: 195px;
    }

    .menu_wrp>ul {
        padding: 15px 0;
        padding-bottom: 15px;
    }

    .share_btn {
        display: inline-block;
        margin-left: 0;
        padding: 0;
        box-sizing: border-box;
        padding-bottom: 0;
        padding-left: 5px;
        bottom: -3px;
        position: relative;
        /* position: static; */
    }

    a.addtoany_share img {
        width: 35px !important;
    }

    .become_member_wrp h3 strong {
        max-width: 250px;
        margin: 0 auto;
        position: relative;
    }

    .become_member_wrp h3 strong:before,
    .become_member_wrp h3 strong:after {
        position: absolute;
        top: 13px;
        width: 30px;
    }

    .become_member_wrp h3 strong:before {
        right: 100%;
        left: auto;
        margin-right: -1px;
    }

    .become_member_wrp h3 strong:after {
        left: 100%;
        margin-left: -1px;
    }

    .club_story_content+.club_story_content {
        display: flex;
        flex-wrap: wrap;
    }

    .club_story_content+.club_story_content a.theme_btn+a.theme_btn {
        order: -1;
    }

    .upcoming_event_section.dining_promotions {
        padding-bottom: 70px;
    }

    .home_news_list_left h4 {
        font-size: 13px;
    }

    .home_news_list_left h4 strong {
        font-size: 18px;
    }

    .club_galry_each {
        padding: 0 10px;
    }

    .club_galry_each a {
        padding: 33% 0;
    }

    a.theme_btn strong:before,
    a.theme_btn_red strong:before {}

    .club_story_section .club_galry_slider {
        padding-right: 4vw;
    }

    .club_story_section .slick-track {
        padding: 15% 0;
    }

    a.theme_btn,
    a.theme_btn_red,
    .theme_btn a.vc_general {
        font-size: 16px !important;
        width: auto !important;
        min-width: 261px !important;
        line-height: 1.7 !important;
        margin: 10px 0 !important;
        border-radius: 12px !important;
        padding: 12px 15px;
    }

    .single_dining_page_row .listing_content .each_listing a.theme_btn {
        padding: 12px 15px;
    }

    .snr_listing_top .theme_btn {
        margin: 0;
    }

    .club_magazine_wrp .share_btn {
        width: 100%;
        padding: 0;
    }

    .club_magazine_wrp a.addtoany_share img {
        width: 32px !important;
    }

    .post-type-archive-event .event_filter_wrp {
        padding-top: 25px;
    }

    .about_sport_news_wrp .listing_content .each_listing {
        width: 100%;
        padding: 15px 25px;
    }

    .each_listing_img {
        position: relative;
        overflow: hidden;
        padding: 33% 0;
        margin-bottom: 15px;
    }

    .about_sport_news_wrp .listing_content .each_listing .each_listing_img img {
        object-fit: cover;
        margin-bottom: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    .single_dining_page_col+.single_dining_page_col {
        padding-top: 50px;
    }

    .about_sport_news_wrp .listing_content .addtoany_shortcode {
        text-align: center;
    }

    .about_sport_news_wrp a.load_more {
        margin-top: 20px;
    }

    .sports_page_tabs_img {
        width: 65px;
        height: 65px;
        line-height: 61px;
    }

    .sports_page_tabs_img img {
        height: 30px;
        max-width: 40px;
    }

    .sports_page_tabs_wrp li.sports_page_tabs_item h5 {
        font-size: 11px;
    }

    .sport_comitte_wrp_inner ul li {
        width: 100%;
        max-width: 350px;
    }

    .sport_comitte_wrp_inner ul {
        justify-content: center;
    }

    .sport_comitte_wrp_inner h3 {
        justify-content: center;
    }

    .sport_comitte_wrp_inner {
        padding: 30px 25px;
        padding-bottom: 0;
    }

    .sport_comitte_wrp_inner h3 {
        font-size: 20px;
    }

    .sports_training_each_inner>div {
        flex-grow: 1;
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {
        width: 50% !important;
        max-width: 50%;
        padding: 1px;
        overflow: hidden;
        padding: 10px 15px;
    }

    .about_sport_galry_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails {
        width: auto !important;
        max-width: initial !important;
        margin: 0 -15px !important;
        padding-left: 0;
    }

    .about_sport_galry_wrp {
        padding-top: 50px;
        text-align: center;
    }

    .about_sport_galry_wrp h4 {
        font-size: 20px;
    }

    .sports_training_each_inner h5 {
        padding: 10px;
        font-size: 12px;
    }

    .sports_training_each_inner h5 img {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }

    .about_sport_comitte_wrp {
        padding: 50px 0;
    }

    .development_progrm_content h4 {
        font-size: 20px;
    }

    .about_sport_comitte_wrp h4 {
        font-size: 18px;
        padding-bottom: 20px;
    }

    .dining_menu_row {
        flex-wrap: wrap;
    }

    .dining_menu_row .vc_col-sm-3 {
        width: 100%;
    }

    .dining_menu_row .vc_col-sm-9 {
        width: 100%;
    }

    .dining_menu_row figure.wpb_wrapper.vc_figure,
    .dining_menu_row .wpb_single_image .vc_single_image-wrapper {
        width: 100%;
    }

    .dining_menu_row:last-of-type {
        margin-bottom: 75px;
    }

    .single_dining_page_col:first-child .theme_btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin: 0;
    }

    .single_dining_page_col:first-child .dining_menu_right .theme_btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .single_dining_page_row .listing_content .each_listing {
        position: relative;
        padding: 40px 0;
        padding-left: 0;
        min-height: auto;
        border-bottom: 1px solid #e6e6e6;
    }

    .single_dining_page_row .listing_content .each_listing img {
        position: static;
        left: 0;
        top: auto;
        height: auto;
        width: 100%;
        object-fit: cover;
        margin-bottom: 35px;
    }

    .single_dining_page_row .listing_content .each_listing a.addtoany_share img {
        margin: 0;
    }

    .kcc_store_items_cols .wpb_column.vc_column_container.vc_col-sm-2 {
        width: 50%;
        padding: 15px 0;
    }

    .kcc_store_items_cols .wpb_column.vc_column_container.vc_col-sm-2 .vc_btn3-container.vc_btn3-center {
        margin: 0;
    }

    .vc_row.wpb_row.vc_row-fluid.about_kcc_store_section {
        padding-top: 75px;
        padding-bottom: 50px;
    }

    .vc_row.wpb_row.vc_inner.kcc_store_items_cols .vc_single_image-wrapper {
        width: 70px;
        height: 70px;
    }

    .vc_inner.kcc_store_items_cols .vc_single_image-wrapper img {
        width: 40px;
        height: 40px;
        margin-top: 13px;
    }

    .gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {
        width: 50% !important;
        max-width: 50%;
        padding: 1px;
        overflow: hidden;
    }

    .list_magzine a img {
        height: 340px;
    }

    .recreation_section .theme_btn {
        width: 100%;
    }

    .notice_listing .each_listing {
        padding: 15px 0;
        padding-right: 0;
        min-height: initial;
    }

    .page-template-template-news .listing_content .each_listing.list_notice .each_listing_right,
    .notice_listing .each_listing .each_listing_right {
        position: static;
        right: 0;
        bottom: auto;
        width: 100%;
        text-align: center;
    }

    .page-template-template-news .listing_content .each_listing.list_notice .each_listing_right span,
    .notice_listing .each_listing .each_listing_right span {
        width: 100%;
        max-width: 100%;
        padding-top: 25px;
    }

    .slick-vertical .slick-slide .each_listing {}

    .slick-vertical .slick-slide .each_listing p {
        min-height: 100px;
    }

    .slick-vertical .slick-slide .each_listing p:empty {
        padding: 0;
        min-height: 0;
    }

    .single_dining_page_col .magazin_flteritem_wrp_col {
        width: 100%;
    }

    .page-template-template-news .listing_content .each_listing {
        width: 100%;
        padding: 0;
        border-bottom: 0;
    }

    .page-template-template-news .listing_content .share_btn {
        text-align: center;
    }

    .single_dining_page_col .col-md-4 h3 {
        font-size: 20px;
    }

    .page-template-template-news .listing_content .each_listing.list_notice {
        margin-left: 0;
        padding: 15px 20px;
    }

    .notice_slider.slick-initialized.slick-slider {
        margin-bottom: 35px;
    }

    .listing_content_layout_togle.sort_in_list .each_listing {
        width: 100%;
        padding: 0;
    }

    .listing_content_layout_togle.sort_in_list .each_listing .share_btn {
        text-align: center;
    }

    .listing_content.sort_in_list,
    .listing_content[style="display: block;"] {
        margin: 0px;
    }

    .listing_content_layout_togle.sort_in_list .each_listing .share_btn {
        padding-bottom: 0;
    }

    .listing_content_layout_togle.sort_in_grid .each_listing {
        flex-wrap: wrap;
    }

    .listing_content_layout_togle.sort_in_grid .each_listing .grid_img_wrp {
        max-width: 100%;
        width: 100%;
    }

    .listing_content_layout_togle.sort_in_grid .each_listing .grid_img_wrp img {
        position: static;
        height: 300px;
    }

    .listing_content_layout_togle.sort_in_grid .each_listing .each_listing_content {
        padding-left: 0;
    }

    .listing_content_layout_togle.sort_in_grid .listing_content {
        padding: 0 0;
    }

    .history_slider_each img {
        height: 230px;
    }

    .history_slider .slick-list:after {
        height: 353px;
        top: 60px;
    }

    .single_dining_page_row .listing_content .each_listing .share_btn {
        text-align: center;
        padding-bottom: 0;
    }

    .fc-toolbar-chunk:last-child {
        min-width: 100%;
        padding-top: 0;
    }

    .fc .fc-toolbar-title {
        left: 50%;
        top: 0;
    }

    #calendar.fc button.fc-prev-button.fc-button.fc-button-primary {
        left: 0;
        top: -2px;
        margin: 0;
    }

    #calendar.fc button.fc-next-button.fc-button.fc-button-primary {
        left: auto;
        top: -2px;
        right: 0;
    }

    #calendar.fc button.fc-next-button.fc-button.fc-button-primary {
        left: 50%;
        top: -2px;
    }

    .single_dining_page_col {
        padding: 15px;
    }

    .event_filter_wrp_left form#filter_search input {
        width: 120px;
    }

    .archive.category .listing_content {
        margin: 0 0px;
    }

    .archive.category .each_listing {
        width: 100%;
    }

    .page-id-19437 .hero-banner .main-carousel .slick-slide {
        min-height: 225px;
        height: 225px;
    }

    .page-id-19437 .hero-banner {
        min-height: 225px;
        height: 225px;
        z-index: 1;
    }

    .page-id-19437 .hero-banner .inner_banner_wrp .inner_banner_content {
        padding-top: 0;
    }

    .page-id-19437 .header_section_inner {
        padding: 5px 15px;
        position: relative;
    }

    .page-id-19437 .header_left {
        /*     max-width: 40px; */
    }

    .membership_page_contaciner {
        padding: 65px 15px !important;
        padding-bottom: 200px !important;
    }

    .membership_page_contaciner .wpb_row .vc_col-sm-6 .vc_column-inner {
        padding: 45px 15px;
    }

    .membership_page_contaciner .wpb_row .vc_col-sm-12 .vc_column-inner {
        padding: 0 15px;
    }

    .membership_page_contaciner .theme_btn.vc_btn3-inline {
        margin: 5px 0;
        margin-right: 0;
        width: 100%;
    }

    .membership_page_contaciner .theme_btn.vc_btn3-inline a.vc_general {
        line-height: 25px !important;
        padding: 15px 10px;
    }

    .membership_page_contaciner .cricket_bat_image img {
        bottom: -175px;
        left: -135%;
        object-fit: contain;
        height: auto;
        width: 200%;
        max-width: none;
    }

    .membership_page_contaciner {
        padding-bottom: 100px !important;
    }

    .development_progrm_slider button.slick-arrow {
        top: 28%;
    }

    .cv_submit_wrp input.wpcf7-form-control.wpcf7-submit {
        font-size: 16px !important;
        width: 100% !important;
        line-height: 50px !important;
    }

    .search-results .search-results-list {
        width: 100%;
        margin: 1% 0;
    }

    .vc_row.wpb_row.vc_row-fluid.about_story p {
        padding-right: 0;
        text-align: center;
    }

    .about_sport_item_wrp {
        text-align: center;
    }

    .page-template-template-news .listing_content .each_listing .each_listing_content {
        text-align: center;
    }

    .page-template-template-news .listing_content .each_listing .each_listing_content h3:after {
        margin: 15px auto;
    }

    .single_dining_page_row .listing_content a.load_more {
        position: relative;
        background: #006524 !important;
        color: #fff !important;
        text-transform: uppercase;
        font-family: 'Avenir-Medium';
        letter-spacing: 1px;
        text-align: center;
        z-index: 5;
        border: none !important;
        overflow: hidden;
        display: block;
        font-size: 16px !important;
        width: auto !important;
        min-width: 275px !important;
        line-height: 50px !important;
        border-radius: 12px !important;
        padding: 0 15px;
        margin: 0 auto !important;
        margin-top: 35px !important;
    }

    .single_dining_page_col .theme_btn {
        display: inline-block;
    }

    .single_dining_page_col .dining_widget,
    .single_dining_page_col .col-md-4 {
        text-align: center;
    }

    .search-no-results .alert.alert-warning {
        font-size: 22px;
        padding: 15px 0;
    }

    .page-id-19456 .inner_banner_content p {
        font-size: 14px;
        letter-spacing: 1.3px;
        padding-top: 20px;
        display: none;
    }

    .page-id-19456 .inner_banner_wrp {
        top: auto;
        bottom: 60px;
        transform: none;
        padding: 0 20px;
        padding-top: 50px;
    }

    .vc_row.wpb_row.vc_inner.vc_row-fluid:first-child div.uvc-heading {
        opacity: 1;
        transform: none;
    }

    .each_sport_page_section {
        padding-top: 35px;
    }

    .page-id-19456 .inner_banner_wrp .inner_banner_content h1,
    .page-id-5 .inner_banner_wrp .inner_banner_content h1 {
        padding-bottom: 250px;
    }

    .page-id-5 .inner_banner_content p {
        display: none;
    }

    .snr_listing_section {
        padding: 35px 0;
    }

    .snr_listing_top {
        transform: none !important;
        opacity: 1 !important;
    }

    .page-id-18819 .inner_banner_wrp,
    .page-id-88 .inner_banner_wrp,
    .page-id-90 .inner_banner_wrp,
    .page-id-18827 .inner_banner_wrp,
    .page-id-18838 .inner_banner_wrp,
    .page-id-18650 .inner_banner_wrp,
    .page-id-18680 .inner_banner_wrp {
        top: 20%;
    }

    .page-id-60 .inner_banner_wrp {
        top: 35%;
    }

    .page-id-88 .hero-banner .main-carousel .slick-track .slick-slide {
        background-position: 35% 50%;
    }

    .page-id-74 .hero-banner .main-carousel .slick-track .slick-slide {
        background-position: top center;
    }

    .page-id-74 .inner_banner_wrp {
        top: auto;
        bottom: 15px;
    }

    .page-id-18373 .inner_banner_content h1 {
        padding-bottom: 140px;
        padding-top: 60px;
    }

    .single_dining_page_col {
        /*     padding: 0; */
    }

    .page-template-template-events .event_filter_wrp_right,
    .post-type-archive-event .event_filter_wrp_right {
        margin-right: -85px;
    }

    .page-template-template-news form#filter_search,
    .page-template-template-events form#filter_search,
    .post-type-archive-event form#filter_search {
        margin-right: -85px;
    }

    .single_dining_page_col:first-child {
        padding-right: 0;
    }

    .single_dining_page_col p {
        padding-right: 0;
    }

    .post-type-archive-event .single_dining_page_container {
        padding-top: 35px;
    }

    .page_title_cstm {
        font-size: 20px;
    }

    .page-template-template-news .container.block>.inner-content {
        margin: 0;
        width: auto;
    }

    .single_dining_page_col:first-child {
        padding: 0;
    }

    .page-template-template-news .listing_content .each_listing .each_listing_content {
        padding: 25px 20px;
    }

    .page-template-template-dining .single_dining_page_container {
        padding: 50px 15px;
    }

    .page-id-18677 .inner_banner_wrp {
        top: 25%;
    }

    .page-id-18677 .inner_banner_content p {
        padding-top: 15px;
    }

    .membership_page_contaciner .theme_btn.vc_btn3-inline {
        z-index: 1;
    }

    .magazin_flteritem_wrp_col h4.magazin_flter_title {
        max-width: 90px;
    }

    .page-id-18827 .inner_banner_wrp {
        top: 10%;
    }

    .home_banner_section .home_banner_content,
    .home_banner_section .home_banner_inner {
        max-height: 42vh;
        min-height: 50px;
    }

    .home_banner_slider.slick-slider div {
        height: 100%;
        background-position: 70% -1px !important;
    }

    .home_banner_content.for_mobile p.homesub {
        padding-top: 0;
        padding-bottom: 15px;
    }

    .home_banner_content.for_mobile .home_btn_wrp a.theme_btn {
        margin: 5px 0 !important;
    }

    .page-id-19435 .hero-banner .main-carousel .slick-slide,
    .page-id-19435 .hero-banner,
    .page-id-19456 .hero-banner .main-carousel .slick-slide,
    .page-id-19456 .hero-banner,
    body .hero-banner .main-carousel .slick-slide,
    body .hero-banner {
        min-height: 300px;
        height: 300px;
    }

    body.page-template-template-sports .hero-banner .main-carousel .slick-slide,
    body.page-template-template-sports .hero-banner {
        min-height: 300px;
        height: 300px;
    }

    body.page-template-template-sports .hero-banner .main-carousel .slick-slide,
    body.page-template-template-sports .hero-banner,
    body.page-template-template-dining .hero-banner .main-carousel .slick-slide,
    body.page-template-template-dining .hero-banner {
        min-height: 300px;
        height: 300px;
    }

    body.page-template-template-dining .single_dining_page_container {
        padding-top: 50px;
    }

    .page-id-19475 .development_progrm_section .slick-list,
    .page-id-19484 .development_progrm_section .slick-list,
    .development_progrm_section .slick-list {
        height: auto !important;
    }

    .page-id-19475 .development_progrm_section .development_progrm_each,
    .page-id-19484 .development_progrm_section .development_progrm_each {
        padding-bottom: 0;
    }

    .club_story_content {
        text-align: center;
        justify-content: center;
    }

    .about_sport_item_wrp .col-md-9 {
        padding: 0 15px;
        max-width: 100%;
    }

    .about_sports_content p a {
        display: inline-block;
        max-width: 100%;
        word-break: break-all;
    }

    .development_progrm_content a.theme_btn {
        line-height: 1.7 !important;
        padding: 12px 15px;
    }

    .staff_content_wrp_inner {
        min-height: 160px;
    }

    .membership .inner_banner_content h1 {
        font-size: 24px;
        position: relative;
        bottom: -110px;
    }

    .select_country_wrp p select {
        display: block;
        margin: 0 auto;
        margin-top: 15px;
    }

    .select_country_wrp p {
        text-align: center;
    }

    .club_listing_wrp .vc_column-inner .vc_row.wpb_row.vc_inner.vc_row-fluid {
        padding: 30px 0;
        border: 3px solid #4f955b;
        margin-bottom: 65px;
    }

    .club_listing_wrp .vc_column-inner .vc_row.wpb_row.vc_inner.vc_row-fluid .wpb_column.vc_column_container.vc_col-sm-6 {
        padding: 0 10px;
    }

    .club_listing_wrp .uvc-heading .uvc-sub-heading a {
        font-size: 12px;
        display: block;
        position: relative;
        padding-left: 25px;
        word-break: break-all;
        line-height: 1.3;
        height: auto;
    }

    .club_listing_wrp .uvc-heading .uvc-sub-heading a:before {
        width: 15px;
        height: 15px;
    }

    .club_listing_wrp .uvc-heading .uvc-sub-heading {
        padding-bottom: 15px;
    }

    .club_listing_wrp div.uvc-heading .uvc-main-heading h2 {
        padding-bottom: 10px !important;
        font-size: 13px;
    }

    .development_progrm_each iframe {
        display: none;
    }

    .development_progrm_each .development_progrm_content iframe.for_mob {
        display: block;
        margin-top: 15px;
    }

    .development_progrm_content h4 {
        min-height: 50px;
    }

    #sb_instagram #sbi_load a.sbi_load_btn,
    #sb_instagram #sbi_load .sbi_follow_btn,
    div#sbi_load a.insta_btn.theme_btn {
        margin: 7px 10px !important;
        margin-right: 5px !important;
        min-width: 50%;
    }

    #sb_instagram #sbi_load a.sbi_load_btn,
    #sbi_load span.sbi_follow_btn.sbi_custom a {
        font-size: 16px !important;
        width: auto !important;
        min-width: 261px !important;
        line-height: 1.7 !important;
        margin: 10px 0 !important;
        border-radius: 12px !important;
        padding: 12px 15px;
    }

    .page-template-template-gallery .vc_row.wpb_row.vc_row-fluid.browse_photo_gallery {
        width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0 !important;
    }

    .single-event-calendars .share_btn {
        font-size: 16px;
        width: 100%;
        justify-content: center;
        margin-top: 5px !important;
    }

    .single-post .single_dining_page_col .share_btn {
        font-size: 16px;
        width: 100%;
        justify-content: center;
        margin-top: 5px !important;
    }



}

/*=========================================================================================*/



@media(max-width: 480px) {

    .home_banner_content .theme_btn {
        width: 100%;
        margin: 7px 0;
        line-height: 48px;
    }

    footer .col {
        min-width: 100%;
        text-align: center;
        padding: 20px 15px !important;
    }

    ul.footer_logos {
        padding-top: 10px;
    }

    .dining_content_inner {
        padding: 25px 15px;
    }

    .dining_content_inner .theme_btn {
        min-width: 100%;
        margin: 7px 0;
        font-size: 13px !important;
        padding: 0 15px;
    }

    .gallery_listing_wrp #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item {
        width: 100% !important;
        max-width: 100%;
        padding: 15px 10px;
    }

    .vc_row.wpb_row.vc_row-fluid.browse_photo_gallery {
        padding-bottom: 0;
    }

    .list_magzine .col-md-3 {
        width: 100%;
    }

    .list_magzine a img {
        height: auto;
    }

    .single_dining_page_col a.theme_btn.event_calndr_btn {
        font-size: 12px !important;
    }

    .page_title_cstm {
        /*     font-size: 16px; */
    }

    .page_title_cstm:before,
    .page_title_cstm:after {
        width: 45px;
        min-width: 25px;
    }

    .listing_content_layout_togle.sort_in_grid .each_listing .grid_img_wrp img {
        position: static;
        height: 225px;
    }

    .history_slider_each img {
        height: 175px;
    }

    .history_slider .slick-list:after {
        height: 272px;
        top: 75px;
    }

    .history_slider_content {
        padding-top: 35px;
    }

    .history_slider .slick-list {
        padding: 0 35px;
    }

    .history_slider .slick-list:after {
        width: 110%;
        left: -5%;
    }

    .history_slider_each img {
        height: 140px;
    }

    .history_slider .slick-list:after {
        height: 215px;
        top: 85px;
    }

    .vc_row.wpb_row.vc_row-fluid.become_member_section {
        padding: 35px 15px !important;
    }

    .vc_row.wpb_row.vc_row-fluid.become_member_section .become_member_wrp .vc_column-inner {
        padding: 0;
    }

    .vc_row.wpb_row.vc_row-fluid.become_member_section .become_member_wrp .vc_column-inner .vc_separator.wpb_content_element {
        margin-left: -20px;
        margin-right: -20px;
        width: auto;
    }

    .history_slider_wrp .history_slider button.slick-arrow {
        margin-top: -45px;
        z-index: 99;
    }

    .become_member_section .theme_btn.vc_btn3-inline {
        margin: 0;
        width: auto;
        display: block;
        margin: 0 -15px;
        max-width: initial;
    }

    .inner_banner_content h1 {
        font-size: 24px;
    }

    .development_progrm_slider button.slick-arrow {
        top: 23%;
    }

    .each_sport_page_section .uvc-heading .uvc-sub-heading {
        padding-bottom: 15px;
    }

    .development_progrm_each iframe {
        height: 200px;
    }

    .page-id-20633 div.block h1 {
        font-size: 19px;
    }

    .col-md-12 {
        max-width: 100%;
    }

    .single-event-calendars .share_btn {
        font-size: 12px;
    }

    .single-post .single_dining_page_col .share_btn {
        font-size: 12px;
    }

}

/*=========================================================================================*/



@media(max-width: 360px) {


    .home_banner_content h1 {
        font-size: 30px;
    }

    .sports_item_icon {
        width: 58px;
        height: 58px;
    }

    .become_member_wrp h3 strong {
        font-size: 20px;
        max-width: 212px;
    }

    .become_member_wrp h3 strong:before,
    .become_member_wrp h3 strong:after {
        top: 9px;
    }

    a.theme_btn {
        font-size: 14px !important;
    }

    .development_progrm_slider button.slick-arrow {
        display: none;
    }
}

/*=========================================================================================*/



@media(max-width: 00px) {}

@media(max-width: 640px) {
	.home_news_list ul {
		border-top: none !important;
	}
}
/*=========================================================================================*/
