@font-face {
    font-family: "HelveticaRounded-Bold";
    src: url('fonts/HelveticaRounded-Bold.eot');
    src: url('fonts/HelveticaRounded-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/HelveticaRounded-Bold.woff2') format('woff2'),
        url('fonts/HelveticaRounded-Bold.woff') format('woff'),
        url('fonts/HelveticaRounded-Bold.ttf') format('truetype'),
        url('fonts/HelveticaRounded-Bold.otf') format('opentype'),
        url('fonts/HelveticaRounded-Bold.svg#HelveticaRounded-Bold') format('svg');
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}


:root{
    --sit-blu: #40B4E5;
    --sit-yel: #fff100;
    --sit-red: #D80016;
    --sit-pink: #ec008c;
    --sit-org: #f15a29;
}

.g-inst-none .instruction {
    display: none;
}

body {
    background: #fff !important;
    font-family: 'Muli', sans-serif !important;
    box-sizing: border-box;
    color: #000000;
    -webkit-text-size-adjust: none;
    text-align: left;
}
html, body {
    border: none;
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #262c64 inset !important;
}

input:placeholder,textarea::placeholder,select::placeholder {
    color: #444444;
}
select::selection {
  color: red;
  background: yellow;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #444444;
  font-size: 15px;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #444444;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #444444;
}
:-moz-placeholder { /* Firefox 18- */
  color: #444444;
}
input[type="submit"]:hover,a:hover {
    cursor: pointer;
}

img{
    max-width: 100%;
    height: auto;
}

/*Change text in autofill textbox*/
input:-webkit-autofill{
    -webkit-text-fill-color: #fff !important;
}

input::focus{
    box-shadow: none;
    border: 0;
}

a,a:hover{
    text-decoration: none;
    color: #000;
    transition: 0.3s all;
}

p{
    margin-bottom: 0;
}

ul{
    margin: 0;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

h1,h2,h3,h4,h5,h6,.helvetica {
    font-family: "HelveticaRounded-Bold" !important;
    line-height: 1.5;
}

    
input,select,textarea,label,input[type="submit"],input[type="search"]{
    font-family: 'Muli', sans-serif !important;
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}



.purple {
    color: #92278f;
}
.purple_bg {
    background-color: #92278f;
}
.dark_orange {
    color: #f15a29;
}
.dark_orange_bg {
    background-color: #f15a29;
}
.cyan {
    color: #40B4E5;
}
.cyan_bg {
    background-color: #40B4E5;
}
.green {
    color: #8dc63f;
}
.green_bg {
    background-color: #8dc63f;
}
.magenta {
    color: #ec008c;
}
.magenta_bg {
    background-color: #ec008c;
}
.orange {
    color: #FF8000;
}
.orange_bg {
    background-color: #FF8000;
}
.blue {
    color: #034ea2;
}
.blue_bg {
    background-color: #034ea2; 
}

.white{
    color: #ffffff;
}

.yellow{
    color: var(--sit-yel);    
}

.yellow-bg{
    background-color: var(--sit-yel);    
}

.red{
    color: var(--sit-red);
}
.red_bg{
    background-color: var(--sit-red);
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.6;
    text-align: justify;
}

.slick-prev {
    left: 5%;
    width: 45px;
    height: 45px;
    z-index: 111;
    background: url(images/prev.png) no-repeat;
    background-size: 25px 25px;
    border-radius: 50%;
    background-position: 50%;
    transition: 0.3s all;
}
.slick-next {
    right: 5%;
    width: 45px;
    height: 45px;
    background: url(images/next.png) no-repeat;
    background-size: 25px 25px;
    background-position: 50%;
    border-radius: 50%;
    transition: 0.3s all;
}

.slick-prev:hover{
    background: url(images/prev.png) no-repeat;
    background-size: 25px 25px;
    background-position: 50%;
}
.slick-next:hover{
    background: url(images/next.png) no-repeat;
    background-position: 50%;
    background-size: 25px 25px;
}

.slick-arrow.slick-next:hover,
.slick-arrow.slick-prev:hover{
    background-color: #ffffff63;
}

.slick-prev:before{
    content: none;
}
.slick-next:before{
    content: none;
}

/* Start Header-Footer */

.header-yellow-wrp{
    background-color: var(--sit-blu);
    padding: 10px 0 11px;
}

.header-yellow-wrp .header-yellow > ul.mobile-head-bar{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-yellow-wrp .header-yellow > ul{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.header-yellow-wrp .header-yellow ul li,
.header-yellow-wrp .header-yellow ul li a{
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
}

.header-yellow-wrp .header-yellow ul li a:hover{
    color: #ec008c;
}

.header-yellow-wrp .header-yellow ul li i {
    font-size: 18px;
    margin-right: 6px;
    color: #ffffff;
    line-height: normal;
}

.header-yellow-wrp .header-yellow ul li .yellow_hours_menu {
    position: absolute;
    background-color: #fff;
    padding: 10px 30px;
    z-index: 111;
    transition: 0.5s opacity;
    opacity: 0;
    visibility: hidden;
    min-width: 345px;
    box-shadow: 0 1px 4px rgb(0 0 0 / 6%);
    border-radius: 25px;
}

.header-yellow-wrp .header-yellow ul li.active_yellow_menu .yellow_hours_menu{
    opacity: 1;
    visibility: visible;
}

.header-yellow-wrp .header-yellow ul li .yellow_hours_menu li{
    padding: 5px 0;
    color: #000;
    line-height: 25px;
    text-align: left;
}

.header-yellow-wrp .header-yellow ul li .yellow_hours_menu li p{
    margin-bottom: 0;
    display: block;
    line-height: 25px;
    padding: 0;
    color: #000;
    font-weight: normal;
    font-size: 14px;
}

.header-yellow-wrp .header-yellow ul li .yellow_hours_menu li a{
    transition: 0.5s all;
    color: #ec008c;
    font-size: 16px;
}

.header-yellow-wrp .header-yellow ul li .yellow_hours_menu li a:hover,
.header-yellow-wrp .header-yellow ul li .yellow_hours_menu li a:hover i{
    color: #00aeef;
}

.header-yellow-wrp .header-yellow ul li.corp-site img {
    width: 25px;
    height: 25px;
    display: inline-block;
}

.header-menu-wrp{
    padding: 10px 0;
}

.header-logo{
    width: 130px;
    transition: 0.5s;
    margin-top: -45px;
}

.header-logo img{
    max-width: 100%;
    height: auto;
}

.header-menu{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-menu .header-top-add-info{
    width: 245px;
}

.header-menu .header-top-add-info h4{
    margin: 0;
    margin-bottom: 0;
    color: #cd2653;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    width: 100%;
    text-transform: uppercase;
}

.header-menu-wrp.sticky_header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    top: 0;
    background-color: #fff;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-box-shadow: 0 1px 4px rgb(0 0 0 / 6%);
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.header-menu-wrp.sticky_header .header-logo, a .char, a:hover .char {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.header-menu-wrp.sticky_header .header-logo {
    margin: 8px 0 0;
    width: 120px;
}

.header-menu .main-menu ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
    border-radius: 20px;
    position: relative;
    background: transparent;
}

.header-menu ul#primary-menu > li .main-menu-wrp {
    border-radius: 20px;
}

.header-menu ul li.purple_bg .main-menu-wrp {
    background-color: #92278f;
}
.header-menu ul li.magenta-bg .main-menu-wrp {
    background-color: #ec008c;
}
.header-menu ul li.dark-orange-bg .main-menu-wrp {
    background-color: #f15a29;
}
.header-menu ul li.cyan_bg .main-menu-wrp {
    background-color: #00aeef;
}
.header-menu ul li.green_bg .main-menu-wrp {
    background-color: #8dc63f;
}
.header-menu ul li.orange_bg .main-menu-wrp {
    background-color: #f7941d;
}
.header-menu ul li.magenta-bg .main-menu-wrp {
    background-color: #ec008c;
}

.lets_play_inner .lets_play_wrp, .lets_play_inner .lets_play_wrp:hover, 
.header-menu ul#primary-menu > li:hover, 
.header-menu ul#primary-menu > li .main-menu-wrp, 
.header-menu ul#primary-menu > li .main-menu-wrp .main-menu-item{
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.lets_play_inner .lets_play_wrp:hover .lets_play_head_wrp,
.lets_play_inner .lets_play_wrp:hover .lets_play_head_wrp .lets_play_head,
.header-menu ul#primary-menu > li:hover .main-menu-wrp,
.header-menu ul#primary-menu > li:hover .main-menu-item {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
}

.header-menu ul li a{
    color: #fff;
    padding: 12px 15px;
    display: block;
    font-family: "HelveticaRounded-Bold";
    font-size: 13px;
}

.header-menu ul li.home-img .main-menu-item a{
    font-size: 0;
    line-height: 01;
    padding: 6px 15px;
}

.header-menu ul li.home-img .main-menu-item a:before{
    content: "";
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-image: url(images/home-icon.png);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
}

.header-menu ul#primary-menu .sub-menu-wrap {
    position: absolute;
    left: -25px;
    top: 100%;
    min-width: 220px;
    background: #fff;
    padding: 20px 0;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 10%);
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translate3d(-15px, 15px, 0);
    -moz-transform: translate3d(-15px, 15px, 0);
    -o-transform: translate3d(-15px, 15px, 0);
    -ms-transform: translate3d(-15px, 15px, 0);
    transform: translate3d(-15px, 15px, 0);
    z-index: 9;
}

.header-menu ul#primary-menu .sub-menu-wrap:not(.sub-menu-inner) {
    left: 0;
}

.header-menu ul#primary-menu > li:hover > .sub-menu-wrap:not(.sub-menu-inner), 
.header-menu ul#primary-menu .sub-menu-wrap ul li:hover .sub-menu-wrap.sub-menu-inner {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

.header-menu ul#primary-menu .sub-menu-wrap li,
.header-menu ul#primary-menu .sub-menu-wrap li a {
    display: block;
    margin: 0;
}

.header-menu ul#primary-menu .sub-menu-wrap li a{
    font-size: 14px;
    line-height: 20px;
    padding: 10px 30px 10px;
    white-space: nowrap;
}

ul#primary-menu li.magenta-bg .sub-menu-wrap a {
    color: #ec008c;
}
ul#primary-menu li.purple_bg .sub-menu-wrap a {
    color: #92278f;
}
ul#primary-menu li.green_bg .sub-menu-wrap a {
    color: #8dc63f;
}
ul#primary-menu li.dark-orange-bg .sub-menu-wrap a {
    color: #f15a29;
}
ul#primary-menu li.cyan_bg .sub-menu-wrap a {
    color: #00aeef;
}
ul#primary-menu li.orange_bg .sub-menu-wrap a {
    color: #f7941d;
}

.header-menu ul#primary-menu li.purple_bg .sub-menu-wrap li a::before {
    background-color: #92278f;
}
.header-menu ul#primary-menu li.green_bg .sub-menu-wrap li a::before {
    background-color: #8dc63f;
}
.header-menu ul#primary-menu li.dark-orange-bg .sub-menu-wrap li a::before {
    background-color: #f15a29;
}

.header-menu ul#primary-menu li.cyan_bg .sub-menu-wrap li a::before {
    background-color: #00aeef;
}
.header-menu ul#primary-menu li.magenta-bg .sub-menu-wrap li a::before {
    background-color: #ec008c;
}
.header-menu ul#primary-menu li.orange_bg .sub-menu-wrap li a::before {
    background-color: #f7941d;
}

ul#primary-menu .sub-menu-wrap .sub-menu-wrap.sub-menu-inner {
    left: 100%;
    top: 0;
    margin-left: -10px;
    margin-top: -10px;
}
ul#primary-menu > li:hover > .sub-menu-wrap:not(.sub-menu-inner),ul#primary-menu .sub-menu-wrap ul li:hover .sub-menu-wrap.sub-menu-inner {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}
ul#primary-menu .sub-menu-wrap:not(.sub-menu-inner) {
    left: 0;
}
ul#primary-menu .sub-menu-wrap ul li.menu-item-has-children > a:after {
    font-family: FontAwesome;
    content: "\f105";
    position: absolute;
    right: 20px;
}
.header-menu ul#primary-menu .sub-menu-wrap li a::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 0;
    height: 103%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.header-menu ul#primary-menu .sub-menu-wrap li a:hover::before {
    opacity: 1;
    width: 100%;
}
.header-menu ul#primary-menu .sub-menu-wrap li a:hover {
    color: #fff !important;
}
.header-menu ul#primary-menu .sub-menu-wrap li.menu_vic .sub-menu-wrap{
    top: -170px;   
}

section.lets_play_sect {
    background: url(images/let-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 164px 0;
    background-position: center;
    z-index: 11;
}

section.lets_play_sect .cyan_overlay {
    padding: 0 0 21px;
}

.lets_play_sect h2 {
    font-size: 34px;
    line-height: 40px;
    text-transform: capitalize;
    color: var(--sit-blu);
    margin-top: 40px;
    font-weight: 400;
    display: inline-block;
    padding-top: 22px;
}

.lets_play_sect h2:before{
    content: "";
    position: absolute;
    background: url(images/skateboarding.png);
    height: 150px;
    width: 130px;
    top: -140px;
    background-repeat: no-repeat;
    background-size: 100%;
    right: 300px;
    animation: mymove 25s;
    animation-fill-mode: forwards;
}

@keyframes mymove {
  from {right: 0px;}
  to {right: 530px;}
}

.lets_play_inner {
    margin-top: 59px;
}

.lets_play_inner .lets_play_wrp {
    display: inline-block;
    vertical-align: top;
    margin: 20px 0;
    width: 360px;
    position: relative;
    border-radius: 20px;
}

.lets_play_inner .lets_play_wrp > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 111;
}
.lets_play_inner .lets_play_wrp:hover .lets_play_head_wrp,
.lets_play_inner .lets_play_wrp:hover .lets_play_head_wrp .lets_play_head{
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
}

.lets_play_inner .lets_play_wrp .lets_play_img {
    clear: both;
    overflow: hidden;
    border-radius: 15px;
}

.lets_play_inner .lets_play_wrp:hover {
    box-shadow: 3px 5px 25px rgb(0 0 0 / 10%);
    -moz-box-shadow: 3px 5px 25px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 3px 5px 25px rgb(0 0 0 / 10%);
    -o-box-shadow: 3px 5px 25px rgb(0 0 0 / 10%);
}
.lets_play_inner .lets_play_wrp:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.lets_play_inner .lets_play_wrp img {
    border-radius: 15px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    transition: all 0.9s ease;
    max-width: 100%;
    height: auto;
    min-height: 325px;
    object-fit: cover;
}

.lets_play_inner .lets_play_wrp::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 15px;
    z-index: 1;
}

.lets_play_inner .lets_play_wrp:nth-child(3n+1)::before {
    border: 12px solid #f15a29;
}   
.lets_play_inner .lets_play_wrp:nth-child(3n+2)::before {
    border: 12px solid #92278f;
}   
.lets_play_inner .lets_play_wrp:nth-child(3n+3)::before {
    border: 12px solid #ec008c;
}   
.lets_play_inner .lets_play_wrp:nth-child(3n+2) {
    margin: 20px 45px;
}
.lets_play_inner .lets_play_wrp:hover::before {
    border-color: #fff !important;
}

.lets_play_inner .lets_play_wrp .lets_play_head_wrp {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    width: 85%;
    margin: 0 auto;
    border-radius: 30px;
    padding: 10px;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    overflow: hidden;
    -webkit-transition: all 0.8s linear;
    -moz-transition: all 0.8s linear;
    -o-transition: all 0.8s linear;
    -ms-transition: all 0.8s linear;
    transition: all 0.8s linear;
}
.lets_play_inner .lets_play_wrp:hover .lets_play_head_wrp {
    background-color: #fff !important;
}

.lets_play_inner .lets_play_wrp .lets_play_head_wrp p {
    text-align: center;
    font-size: 14px;
    font-family: 'HelveticaRounded-Bold',sans-serif;
    letter-spacing: 1px;
    text-transform: initial;
    margin-bottom: 10px;
    transition: 0.3s all;
}
.lets_play_inner .lets_play_wrp:hover .lets_play_head_wrp p {
    color: #000000;
    margin-bottom: 5px;
}

.lets_play_inner .lets_play_wrp .lets_play_head_wrp h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.lets_play_inner .lets_play_wrp .lets_play_head_wrp a {
    color: #fff;
}
.lets_play_inner .lets_play_wrp:nth-child(3n+1) .lets_play_head_wrp {
    background-color: #f15a29;
}
.lets_play_inner .lets_play_wrp:nth-child(3n+1):hover .lets_play_head_wrp h3 a {
    color: #f15a29 !important;
}
.lets_play_inner .lets_play_wrp:nth-child(3n+2) .lets_play_head_wrp {
    background-color: #92278f;
    color: #fff;
}   
.lets_play_inner .lets_play_wrp:nth-child(3n+3) .lets_play_head_wrp {
    background-color: #ec008c;
}
.lets_play_inner .lets_play_wrp:nth-child(3n+2):hover .lets_play_head_wrp h3 a{
    color: #92278f !important;    
}

.lets_play_inner .lets_play_wrp:nth-child(3n+3):hover .lets_play_head_wrp h3 a{
    color: #ec008c !important;
}

.footer-rotate-border {
    margin-top: 50px;
}

.footer-rotate-border a {
    color: #fff;
    padding: 13px 10px;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
    border: 1px solid #fff;
    width: 85% !important;
}

.footer-rotate-border a:hover {
    background-color: #ec008c;
    border-color: #ec008c;
}

.footer-rotate-border a svg{
    left: 0;
}

.footer-rotate-border a:hover svg {
    stroke: #ec008c;
}

section.book_party_sect {
    background-image: url(images/pink-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 178px 0 130px;
    margin: -100px 0 0 ;
}

.book_party_sect .book_party_detail{
    color: #fff;
}
.book_party_sect .book_party_detail h2 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 500;
    margin: 0 0 20px;
}

.book_party_cont p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

.book_party_detail .defult_btn_sec{
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.book_party_detail .defult_btn_sec a.cyan_bg {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 20px;
    padding: 12px 10px;
    border-radius: 25px;
    display: block;
    text-align: center;
    font-weight: 700;
    max-width: 200px;
}

.book_party_detail .defult_btn_sec a.cyan_bg:hover {
    background-color: #ec008c;
}

.book_party_sect .book_party_cont ul {
    margin-bottom: 20px;
}
.book_party_sect .book_party_cont ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}
.book_party_sect .book_party_cont ul li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
}

.book_party_img_wrp {
    margin-top: 40px;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px 20px;
}
.book_party_img_wrp .book_party_img {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 8px solid #fff;
    border-radius: 15px;
    width: 100%;
    height: 87%;
    background-color: #fff;
    overflow: hidden;
}
.book_party_img:hover {
    box-shadow: 4px 15px 30px rgb(0 0 0 / 60%);
    -moz-box-shadow: 4px 15px 30px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 4px 15px 30px rgb(0 0 0 / 60%);
    -o-box-shadow: 4px 15px 30px rgba(0, 0, 0, 0.6);
}

.book_party_img_wrp .book_party_img img {
    width: 100%;
    max-height: 226px;
    object-fit: cover;
    border-radius: 10px;
    padding: 1px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.book_party_img:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.book_party_frm {
    background-color: rgb(255 255 255 / 94%);
    border-radius: 7px;
    padding: 40px 60px;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 60%);
    margin-left: 55px;
}



.book_party_frm h3 {
    padding: 14px 0 22px;
    color: #f15a29;
    font-size: 24px;
    text-align: center;
}

.book_party_frm div#gform_wrapper_1 {
    display: block !important;
}

footer .gform_legacy_markup_wrapper div.validation_error,
.franch .gform_legacy_markup_wrapper div.validation_error,
section.page.inner-bg  .gform_validation_errors,
section.inner-bg.contacts .gform_validation_errors{
    border: 2px solid #da0000;
    padding: 16px 5px;
}

.book_party_frm .gform_body label.gfield_label,
section.inner-bg.contacts label.gfield_label{
    display: none;
}
.gform_legacy_markup_wrapper .gfield_error .gfield_label {
    color: #790000;
}
.gform_body.gform-body input, textarea, select {
    box-sizing: border-box;
    border: 1px solid #dad9d9;
}
.book_party_frm .gform_body input,
.book_party_frm .gform_body select,
.book_party_frm .gform_body input,
.book_party_frm .gform_body textarea,
.gform_body input:not(input[type=radio]),
.gform_body select,
.gform_body textarea{
    width: 100% !important;
    border: 1px solid #BCBABB;
    border-radius: 35px;
    background: transparent;
    margin-bottom: 12px;
    padding: 2px 16px !important;
    font-size: 14px !important;
    line-height: 15px;
    color: #444444;
}



input::placeholder,textarea::placeholder,select::placeholder {
    color: #444444;
    font-size:14px;
}

.book_party_frm .gform_body input:focus,
.book_party_frm .gform_body select:focus,
.book_party_frm .gform_body textarea:focus{
    border-color: #ec008c !important;
    background-color: rgb(251 243 248);
}

input, textarea, select {
    height: 45px;
}
pre, fieldset, input, textarea, table, table *, hr {
    border-color: rgb(32 32 32 / 20%) !important;
}
select, input[type='submit'], input, textarea {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input:focus, input[type="submit"]:focus, input[type="search"]:focus, select:focus, textarea:focus {
    outline: 0 !important;
    outline-offset: 0 !important;
}

.gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description,
footer .gform_validation_errors>h2, .gform_validation_errors>h2,
section.franch.inner-bg  .gform_validation_errors>h2,
section.page.inner-bg  .gform_validation_errors>h2,
section.inner-bg.contacts .gform_validation_errors>h2{
    color: #da0000 !important;
    padding-top: 0;
    margin-bottom: 0 !important;
}
section.franch.inner-bg  .gform_validation_errors>h2,
section.page.inner-bg  .gform_validation_errors>h2,
section.inner-bg.contacts .gform_validation_errors>h2{
    font-size: 16px !important;
    font-weight: 700;
    margin: 0;
    line-height: 24px;
}

h3.gform_title {
    display: none;
}
h2.gform_submission_error.hide_summary:before{
    display:none ;
}

input[type="submit"] {
    border-radius: 25px;
    border: none;
    font-size: 13px !important;
    text-transform: uppercase;
    color: #fff;
    font-family: "HelveticaRounded-Bold" !important;
    background-color: #00aeef;
    width: auto;
    padding: 12px 30px;
    margin-top: 0px;
}

input[type="submit"]:hover{
    background-color: #ec008c;
}

.book_party_frm .gform_body textarea,
.gform_body textarea{
    margin-top: 12px;
    padding: 18px 26px !important;
}

.book_party_frm .gform_body li.left, .book_party_frm .gform_body li.right {
    width: 48%;
    margin: 4px 0 0;
    clear: none;
}
.book_party_frm .gform_body li.left{
    float: left;
}
.book_party_frm .gform_body li.right{
    float: right;
}

.book_party_frm .gform_body select, .book_party_frm .gform_body .ginput_container_date .datepicker,
.gform_body select,.book-party .gform_body .ginput_container_date .datepicker{
    background-image: url(images/arrow.png);
    background-repeat: no-repeat;
    background-position: center right 20px;
}

.book_party_frm.right span#input_1_6_date_format {
    display: none;
}
.contact-form .gform_body.gform-body .ginput_container.ginput_container_textarea textarea {
    padding: 10px 20px !important;
}
.gform_legacy_markup_wrapper .gform_footer {
    padding: 0px 0 10px 0 !important;
    text-align: center;
}

.footer-main-wrp {
    position: relative;
}
.babystreetWaveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    margin: auto;
    height: 140px;
    width: auto;
    max-width: 1000%;
}
.footer-main-wrp .babystreetWaveWrapper {
    top: -137px;
    bottom: unset;
}
.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
}
.bgTop {
    z-index: 15;
    opacity: 0.5;
}
.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}
.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
    background-image: url(images/kangas-wave-mid-new.png);
    top: -40px;
}
.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move_wave 10s linear infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.waveMiddle {
    background-size: 65% 130px;
    background-image: url(images/kangas-wave-mid-new.png);
}
.waveAnimation .waveMiddle {
    background-size: 100% 100%;
    animation: move_wave 15s linear infinite;
    top: -18%;
}
.bgBottom {
    z-index: 5;
}
.waveBottom {
    background-size: 50% 100px;
    background-image: url(images/wave-bot.png);
}

.footer-newsletter{
    background-color: var(--sit-blu);
}

.contacta-webform-table {
    margin-bottom: 55px;
}

.contacta-webform-table input{
    margin-bottom: 0;
}

.contacta-row .input-field{
    margin-bottom: 15px;
}

.contacta-row .input-field label{
    font-size:14px;
}

.contacta-webform-table .contacta-row {
    margin-top: 5px !important;
}

.contacta-webform-form .heading h1 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 5px;
}

.contacta-webform-form .heading h2 {
    margin-bottom: 0;
    color: var(--sit-yel);
    font-size: 20px;
}

.contacta-webform-form .heading h3 {
    font-size: 15px;
    margin-bottom: 30px;
}

.contacta-webform-table .contacta-row:nth-child(5), .contacta-webform-table .contacta-row:nth-child(6), .contacta-webform-table .contacta-row:nth-child(7), .contacta-webform-table .contacta-row:nth-child(8) {
    width: 50% !important;
    display: inline-flex !important;
}

.contacta-webform-table .contacta-row:nth-child(5) .input-field,
.contacta-webform-table .contacta-row:nth-child(6) .input-field,
.contacta-webform-table .contacta-row:nth-child(7) .input-field,
.contacta-webform-table .contacta-row:nth-child(8) .input-field{
    width: 70% !important;
}

.contacta-webform-table .contacta-row:nth-child(5) .input-field,
.contacta-webform-table .contacta-row:nth-child(7) .input-field{
    margin: 0 0 0 auto;
}

.footer-newsletter input[type="text"],
.footer-newsletter input[type="tel"]{
    border-color: #cc3da3;
    padding: 0 16px !important;
    border: 1px solid #000;
    border-radius: 28px;
    background: transparent;
    font-size: 14px !important;
    line-height: 15px;
    color: #444444;
    height: 45px;
}

.contacta-webform-form .submitBtn{
    margin-top: 15px !important;
}

.contacta-webform-form .submitBtn button{
    background-color: var(--sit-red) !important;
    border: none !important;
    padding: 10px 30px !important;
    line-height: 24px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    width: auto !important;
}

.contacta-webform-form .email-holder input{
    margin-bottom: 0px !important;
}

.footer_detail_wrp {
    background-image: url(images/footer-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
}

.footer_detail_inner {
     padding: 35px 0 67px; 
    text-align: center;
}

.footer_detail_inner .cmn_footer {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin-left: 30px;
    text-align: left;
}

.footer_detail_inner .footer_logo.cmn_footer {
    width: 183px;
    position: relative;
}

.footer_detail_inner .cmn_footer:first-child {
    margin-left: 0;
}

.footer_detail_inner .footer_logo.cmn_footer img {
    position: absolute;
    top: 20px;
    max-width: 85%;
}

.footer_detail_inner .cmn_footer p {
    text-align: left;
    margin-bottom: 20px;
}
.footer_detail_inner .cmn_footer p strong {
    font-size: 15px;
    line-height: 15px;
    text-transform: capitalize;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}
.footer_detail_inner .cmn_footer a {
    color: #000000;
    text-transform: capitalize;
}
.footer_copyright_inner a:hover, .footer_detail_inner .cmn_footer a:hover {
    color: #ec008c;
}

.footer_detail_inner .cmn_footer ul li, .footer_detail_inner .cmn_footer p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
}

.footer_detail_inner .footer_cont_wrp ul li p {
    padding-left: 20px;
    position: relative;
    margin: 0 0 8px;
}
.footer_detail_inner .footer_cont_wrp ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: FontAwesome;
    font-size: 16px;
}
.footer_detail_inner .footer_cont_wrp ul li.footer_add::before {
    content: "\f041";
}
.footer_detail_inner .footer_cont_wrp ul li.footer_no::before {
    content: "\f095";
}
.footer_detail_inner .footer_cont_wrp ul li.footer_franchise::before {
    content: "\f1e7";
}
.footer_detail_inner .footer_cont_wrp ul li.footer_media::before {
    content: "\f130";
}
.footer_detail_inner .footer_cont_wrp ul li.open-hrs::before {
    content: "\f017";
}
.footer_detail_inner .footer_cont_wrp ul li.globe-icon::before {
    content: "\f0ac";
}

.footer_detail_inner .footer_cont_wrp ul li.open-hrs{
    margin-bottom: 7px;
}

.footer_detail_inner .footer_cont_wrp ul li.open-hrs p{
    margin-bottom: 0;
    line-height: 24px;
}

.footer_detail_inner .cmn_footer ul.social_media_wrp {
    margin-top: 20px;
}
.social_media_wrp li {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.footer_detail_inner .cmn_footer .social_media_wrp li a {
    padding: 6px 8px;
    font-size: 18px;
    display: block;
    border-radius: 50%;
    border: 1px solid transparent;
    color: var(--sit-red);
    background-color: var(--sit-yel);
}
.footer_detail_inner .cmn_footer .social_media_wrp li a:hover{
    color: var(--sit-yel);
    background-color: var(--sit-red);
}

.footer_detail_inner .cmn_footer .social_media_wrp li a.cyan_bg {
    padding: 7px 11px 5px;
}

ul.social_media_wrp li a:hover {
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

.footer_lets_play_wrp.cmn_footer {
    width: 15%;
}

.footer_find_lollipop_wrp.cmn_footer ul li, .footer_lets_play_wrp.cmn_footer ul li {
    line-height: 25px;
}

.footer_blog_wrp.cmn_footer {
    width: 26%;
}

.footer_detail_inner .cmn_footer .blog_wrp {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.footer_detail_inner .cmn_footer .blog_img.left {
    width: 98px;
}

.footer_detail_inner .cmn_footer .blog_img.left img {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
}

.footer_detail_inner .cmn_footer .blog_cont.right {
    width: 56%;
}

.footer_detail_inner .cmn_footer .blog_cont p {
    margin-bottom: 0;
}
.blog_cont.right span {
    font-weight: 300;
    font-size: 10px;
}

.footer_copyright_inner {
    padding: 12px 0 16px;
}

.footer_copyright_inner p, .footer_copyright_inner ul li {
    font-size: 11px;
    color: #000000;
}
.footer_copyright_inner p, .footer_privacy_menu, .footer_privacy_menu ul li {
    display: inline-block;
    margin: 0;
}
.footer_copyright_inner a {
    color: #000000;
    letter-spacing: 0.3px;
}
.footer_copyright_inner ul {
    line-height: 11px;
}
.footer_copyright_inner ul li {
    margin-left: 10px;
    padding-left: 14px;
    line-height: normal;
}
.footer_copyright_inner ul li:first-child {
    border-left: 1px solid #000000;
}
p.dev-credits {
    float: right;
    margin-right: 5%;
    margin-top: 3px;
}

.scrolltop {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    bottom: 40px;
    right: 10px;
    z-index: 999;
}
.scroll {
    position: absolute;
    right: 0px;
    bottom: 0px;
    padding: 20px;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    display: none;
}
.scroll img {
    max-width: 50%;
}

/* End Header-Footer */


/* Start Homepage */

.home-bann-sect{
    position: relative;
}

.home-bann-sect .home-banner-slider{
    margin-bottom: 0;
}

.home_banner_img {
    min-height: 530px;
    position: relative;
}

.home_banner_detail {
    padding: 90px 0 10% 45px;
}

.home-bann-sect .home_banner_img > a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1111;
}

.home_banner_detail h1 {
    font-size: 45px;
    color: #fff;
    text-transform: uppercase;
    line-height: 58px;
    font-weight: 400;
    opacity: 1;
}
.home_banner_detail h1.title {
    display: inline-block;
    padding: 0 10px;
    position: relative;
    text-shadow: 1px 10px 12px rgb(0 0 0 / 75%);
}
.home_banner_detail h1.title {
    display: inline-block;
    padding: 0 10px;
    position: relative;
    text-shadow: 1px 10px 12px rgb(0 0 0 / 75%);
}
.home_banner_detail h1.yellow {
     font-size: 40px; 
    color: #fff100;
}
.home_banner_detail h1.yellow.subtitle {
    display: table;
    padding: 0 10px;
    text-shadow: 1px 10px 12px rgb(0 0 0 / 75%);
}

.rotate_border {
    display: inline-block;
    position: relative;
    width: 167px;
    height: 70px;
    z-index: 99;
}

.home_banner_detail .rotate_border {
    z-index: 11111;
    min-width: 167px;
    display: block;
    margin-top: 30px;
}

.home_banner_detail a.home_bann_btn {
    color: var(--sit-yel);
    padding: 15px 10px;
    border-radius: 25px;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    text-align: center;
    width: 100%;
}

.home_banner_detail a.home_bann_btn:hover{
    background-color: var(--sit-yel);
    color: var(--sit-red);
}

.home_cont_wrp a.yellow-bg:hover {
    background-color: var(--sit-red);
    color: var(--sit-yel);
}

.rotate_border a {
    width: 90%;
    margin: 0 auto;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.inner-dashed-border {
    position: absolute;
    left: -8%;
    top: -12px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    stroke: var(--sit-yel);
    opacity: 0;
}

.rotate_border a:hover .inner-dashed-border {
    opacity: 1;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    animation-play-state: running;
}

@keyframes dashed_border_running {
100% {
stroke-dashoffset: -1000; } 
}

.home_banner_detail .inner-dashed-border {
    width: 115%;
}
svg:not(:root) {
    overflow: hidden;
}

.home-banner-slider .slick-dots{
    bottom: 110px;
    z-index: 111;
}

.home-banner-slider .slick-dots li{
    width: 10px;
    height: 10px;
    opacity: 0.55;
    background-color: #fff;
    border-radius: 50%;
}

.home-banner-slider li.slick-active{
    opacity: 1;
}

.home-banner-slider .slick-dots li button:before{
    content: none;
}

section.home_video_cont_sect {
    background-image: url(images/nowave-bg.png);
    background-position: center top;
    background-size: 100% 100%;
    position: relative;
    padding: 40px 0 120PX;
    background-repeat: no-repeat;
}

section.home_video_cont_sect:before,
section.inner-bg:not(.entry-price):before,
.inner_video_cont_sect:before{
    content:url(images/banner-bg-spiral.png);
    position: absolute;
    top: 50px;
}

.home_cont_wrp{
    margin-right: 50px;
}

.home_cont_wrp h2 {
    font-size: 33px;
    line-height: 38px;
    font-weight: 500;
}

.home_cont_wrp h4 {
    font-size: 23px;
    line-height: 30px;
    font-weight: 500;
    margin: 13px 0 24px;
}

.home_cont_wrp p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 20px;
}

.home_cont_wrp .rotate_border {
    width: 175px;
    height: 60px;
}

.home_cont_wrp a.cyan_bg,
.home_cont_wrp a.yellow-bg{
    color: var(--sit-red);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 20px;
    padding: 12px 10px;
    border-radius: 25px;
    display: block;
    text-align: center;
    font-weight: 700;
}

.home_video_wrp {
    border: 10px solid #fff;
    border-radius: 5px;
    box-shadow: 0 10px 34px rgb(70 70 70 / 60%);
    -moz-box-shadow: 0 10px 34px rgba(70, 70, 70, 0.6);
    -webkit-box-shadow: 0 10px 34px rgb(70 70 70 / 60%);
    -o-box-shadow: 0 10px 34px rgba(70, 70, 70, 0.6);
    position: relative;
    height: 410px;
    margin-bottom: 50px;
    margin-left: 50px;
}

.home_video_wrp img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_play_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.testimonial-btn a {
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 70px;
    height: 70px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
}

.testimonial-btn a.hvr-ripple-out:before {
    border-radius: 50%;
    content: '';
    position: absolute;
    border: #fff solid 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.testimonial-btn a i {
    font-size: 20px;
    line-height: 70px;
    margin-left: 5px;
}

section.kids_venue_sect {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.kids_venue_inner {
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
}

.kids_venue_inner h2 {
    font-size: 33px;
    line-height: 47px;
    font-weight: 500;
    margin: 0 auto;
    max-width: 60%;
}

.kids_all_venue {
    margin: 70px 0 22px;
}

.kids_all_venue .kids_venue_wrp {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin: 27px 0;
}

.kids_all_venue .kids_venue_wrp .kids_venue_img {
    width: 26.4%;
    display: inline-block;
    vertical-align: top;
    margin-top: 15px;
    position: relative;
    float: left;
}

.kids_all_venue .kids_venue_wrp .kids_venue_img img {
    margin: 0 auto;
    transition: .5s;
    -webkit-transition: .5s;
    height: 98px;
    width: 100px;
}

.kids_all_venue .kids_venue_wrp:hover .kids_venue_img img {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.kids_all_venue .kids_venue_wrp .kids_venue_img .img1 {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -15px;
    left: -5px;
    z-index: -1;
    transform: rotate(45deg);
    transition: .5s;
    -webkit-transition: .5s;
    right: 0;
    border-radius: 50px;
}

.kids_all_venue .kids_venue_wrp .kids_venue_img .img2 {
    will-change: transform;
    transition: transform 450ms;
}

.kids_all_venue .kids_venue_wrp .kids_venue_img .img2 {
    width: 65px;
    height: 65px;
    position: absolute;
    top: -8%;
    left: 3px;
    z-index: -1;
    transform: rotate(45deg);
    transition: .5s;
    -webkit-transition: .5s;
    right: 0;
    border-radius: 50px;
}

.kids_all_venue .kids_venue_wrp:hover .kids_venue_img .img1, .kids_all_venue .kids_venue_wrp:hover .kids_venue_img .img2 {
    -webkit-transform: scale(0.8) !important;
    transform: scale(0.8) !important;
}

.kids_all_venue .kids_venue_wrp .kids_venue_cont {
    display: inline-block;
    vertical-align: top;
    margin-left: 25px;
    width: 66%;
    padding-right: 25px;
}

.kids_all_venue .kids_venue_wrp .kids_venue_cont h4 {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.kids_all_venue .kids_venue_wrp .kids_venue_cont p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.kids_venue_wrp.kids_venue1 h4 {
    color: #92278f;
}

.kids_venue_wrp.kids_venue1 .kids_venue_img .img1 {
    background-color: #92278f;
}
.kids_venue_wrp.kids_venue1 .kids_venue_img .img2 {
    background-color: #C893C7;
}
.kids_venue_wrp.kids_venue2 h4 {
    color: #f15a29;
}
.kids_venue_wrp.kids_venue2 .kids_venue_img .img1 {
    background-color: #f15a29;
}
.kids_venue_wrp.kids_venue2 .kids_venue_img .img2 {
    background-color: #F8AC94;
}
.kids_venue_wrp.kids_venue3 h4 {
    color: #00aeef;
}
.kids_venue_wrp.kids_venue3 .kids_venue_img .img1 {
    background-color: #00aeef;
}
.kids_venue_wrp.kids_venue3 .kids_venue_img .img2 {
    background-color: #80D6F7;
}
.kids_venue_wrp.kids_venue4 h4 {
    color: #F7941D; 
}
.kids_venue_wrp.kids_venue4 .kids_venue_img .img1 {
    background-color: #F7941D;
}
.kids_venue_wrp.kids_venue4 .kids_venue_img .img2 {
    background-color: #fbc98e;
}
.kids_venue_wrp.kids_venue5 h4 {
    color: #8dc63f;
}
.kids_venue_wrp.kids_venue5 .kids_venue_img .img1 {
    background-color: #8dc63f;
}
.kids_venue_wrp.kids_venue5 .kids_venue_img .img2 {
    background-color: #C5E29F;
}
.kids_venue_wrp.kids_venue6 h4 {
    color: #ec008c;
}
.kids_venue_wrp.kids_venue6 .kids_venue_img .img1 {
    background-color: #ec008c;
}
.kids_venue_wrp.kids_venue6 .kids_venue_img .img2 {
    background-color: #F47FC5;
}

.kids_venue_inner .rotate_border {
    width: 205px;
    height: 65px;
}

.kids_venue_inner a.find_loli_btn {
    color: #fff;
    padding: 13px 10px;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
}

.kids_venue_inner .inner-dashed-border {
    left: 0px;
    top: -11px;
}

.kids_venue_inner a.find_loli_btn:hover {
    background-color: #ec008c;
}

.kids_venue_inner a.find_loli_btn:hover .inner-dashed-border {
    stroke: #ec008c;
}


.home_cont_wrp a.yellow-bg .inner-dashed-border{
    stroke: var(--sit-red);
    top: -10px;
    left: -1px;
}

/*.home_cont_wrp a.yellow-bg:hover .inner-dashed-border{*/
/*    stroke: #ec008c;*/
/*    top: -10px;*/
/*    left: -1px;*/
/*}*/

/* End Homepage */


/* Start Find Kangas */

.inner_banner_detail{
    padding: 90px 0 17% 0;
}

.inner_banner_detail h1{
    display: inline-block;
    padding: 0 10px;
    position: relative;
    text-shadow: 1px 10px 12px rgb(0 0 0 / 75%);
    font-size: 45px;
    color: #fff;
    text-transform: uppercase;
    line-height: 58px;
    font-weight: 400;
}

section.inner_video_cont_sect {
    background-image: url(images/nowave-bg.png);
    background-size: 100% 100%;
    position: relative;
    padding: 20px 0 190PX;
    background-repeat: no-repeat;
    background-position: center top;
}

.section.inner-bg h2 {
    padding: 0px 0 10px;
    color: var(--sit-red);
    font-size: 33px;
    line-height: 38px;
    font-weight: 500;
}

.section.inner-bg h3 {
    padding: 14px 0 22px;
    color: var(--sit-yel);
    font-size: 24px;
    text-align: center;
}

.section.inner-bg p {
    text-align: center;
    line-height: 1.6;
    margin: 16px 0 10px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* End Find Kangas */

/* Start About */

section.inner_video_cont_sect.about-page{
    padding: 20px 0 120px;
    background-size: 100% 100%;
}

.about-page h2 {
    color: var(--sit-red);
    font-size: 24px;
    margin-bottom: 45px;
}

.main p {
    font-size: 15px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: normal;
    line-height: 1.6;
}

.main h4{
    font-size: 15px;
}

.show-caseimg {
    width: 100%;
    border: 10px solid #fff;
    border-radius: 5px;
    box-shadow: 0 10px 34px rgb(70 70 70 / 60%);
    -moz-box-shadow: 0 10px 34px rgba(70, 70, 70, 0.6);
    -webkit-box-shadow: 0 10px 34px rgb(70 70 70 / 60%);
    -o-box-shadow: 0 10px 34px rgba(70, 70, 70, 0.6);
    position: relative;
    height: auto;
}

.about-extra-section{
    padding: 35px 0;
}

.content-box{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-extra-section h3:not(.lets_play_head h3) {
    color: #f15a29;
    padding: 0;
    font-size: 20px;
    margin: 0 0px 20px 0px;
    padding: 0;
    line-height: 30px;
    font-weight: 500;
}

.about-extra-section.about-03{
    background: url(images/green-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 120px 0;
    background-position: center top;
}

.main ul{
    margin-left: 30px;
    margin-bottom: 35px;
}

.main ul li:not(.gfield){
    font-size: 15px;
    line-height: 1.4;
    font-weight: 300;
}

.main ul li:not(.gfield){
    padding: 6px 0;
    position: relative;
    color: #000000 !important;
    font-weight: 400;
}

.main ul li:before {
    content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: -26px;
    top: 2px;
    color: #fff100;
    font-size: 22px;
}
.main ul li:nth-child(2n):before {color: #f15a29;}
.main ul li:nth-child(3n):before {color: #00aeef;}
.main ul li:nth-child(4n):before {color: #92278f;}
.main ul li:nth-child(5n):before {color: var(--sit-red);}
.main ul li:nth-child(6n):before {color: #ec008c;}
.main ul li:nth-child(7n):before {color: #cd2653;}

.about-extra-section.about-04{
    padding: 70px 0 20px;
}

/* End About */

/* Start Entry Price */


/* End Entry Price */

.section.inner-bg.entry-price h2{
    font-size: 24px;
}

.section.inner-bg.entry-price .main-content{
    background-color: transparent;
    padding: 0;
    margin: 30px auto;
    box-shadow: none;
}

.table-responsive.pricing-table{
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 27%);
    z-index: 99;
    margin: 0 auto;
}

.table-responsive.pricing-table table{
    max-width: 100%;
    width: 100%;
}

.table-responsive.pricing-table thead tr{
    background: #f25a29;
    color: #fff;
}

.table-responsive.pricing-table thead tr th{
    background: #f25a29;
    color: #fff;
    padding: 20px 20px 20px 40px;
    vertical-align: top;
}

.table-responsive.pricing-table thead tr th h3{
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    padding: 0;
    text-align: left;
}

.table-responsive.pricing-table thead tr th p{
    font-size: 15px;
    margin: 0;
    text-align: left;
}

.table-responsive.pricing-table tbody tr:nth-child(odd){
    background: #ffffff;
}
.table-responsive.pricing-table tbody tr:nth-child(even){
    background: #f4f4f4;
}

.table-responsive.pricing-table tbody tr td{
    color: #000000;
    font-weight: 600;
    padding: 20px 20px 20px 40px;
    font-size: 14px;
}

.section.inner-bg .bottom-content p{
    text-align: left;
    font-size: 14px;
}

.section.inner-bg .bottom-content p a{
    font-size: 15px;
    color: #000000;
    font-weight: 700;
}

/* Start Party Packages */

section.inner_video_cont_sect.franch{
    padding: 50px 0;
}

.tablist{
    background: #fdfdfd;
    width: auto;
    padding: 25px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 3px 5px 25px rgb(0 0 0 / 10%);
    -moz-box-shadow: 3px 5px 25px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 3px 5px 25px rgb(0 0 0 / 10%);
    display: inline-block;
    margin: 0 0 50px 0;
}

.tablist ul {
    display: flex;
}
.tablist ul li{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
}

.tablist ul li a {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    border-radius: 30px;
    border: none;
    margin-right: 5px;
    background: none;
    padding: 10px 20px;
    white-space: nowrap;
}

.tablist li.current-menu-item a {
    background: #ec008c !important;
    color: #fff !important;
}

.tablist ul li a:hover {
    background-color: #ec008c;
    color: #fff;
    cursor: pointer;
}

.main-content{
    background: #fff;
    padding: 50px;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 27%);
    z-index: 99;
}

section.inner_video_cont_sect.franch.party-package .main-content{
    padding: 50px 50px 30px;
}

section.inner_video_cont_sect.franch.party-package .main-content p a{
    color: #ec008c;
}

.section.inner-bg.franch h2{
    color: var(--sit-red);
    font-size: 24px;
    margin-bottom: 30px;
    padding: 0;
}

.section.inner-bg.franch h3{
    color: #000000;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
    padding: 0;
}

.section.inner-bg.franch p{
    text-align: left;
    font-weight: 400;
    line-height: normal;
    font-size: 15px;
    line-height: 1.6;
}

.party-bottom-buttons{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
    padding: 0 0;
    margin-bottom: 20px;
}

.party-bottom-buttons .rotate_border_full {
    width: 30%;
    margin-top: 15px;
}

.party-bottom-buttons .rotate_border a{
    margin: 2px 0 0 12px;
    color: #fff;
    background-color: #00aeef;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 20px;
    padding: 12px 10px;
    border-radius: 25px;
    display: block;
    text-align: center;
    font-weight: 700;
}
.party-bottom-buttons .rotate_border a svg{
    left: 0;
}

.party-bottom-buttons .rotate_border a:hover{
    background-color: #ec008c;
}
.party-bottom-buttons .rotate_border a:hover .inner-dashed-border {
    stroke: #ec008c;
}

.gform_body.gform-body h3{
    font-size: 17.5px !important;
    margin-top: 20px;
    margin-top: 25px;
    margin-bottom: 0 !important;
}

.franch .gform_wrapper,
#gform_wrapper_3.gform_wrapper{
    margin-top: 50px;
}

.franch .gform_legacy_markup_wrapper .hidden_label .gfield_label,
#gform_wrapper_3.gform_legacy_markup_wrapper .hidden_label .gfield_label{
    display: none;
}

#gform_wrapper_3.gform_legacy_markup_wrapper div.ginput_container_name span{
    vertical-align: initial;
}
#gform_wrapper_3.gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first{
    padding-top: 0;
}

body .franch .gform_legacy_markup_wrapper .top_label div.ginput_container,
.franch .gform_legacy_markup_wrapper li.hidden_label input,
body .cont-form .gform_legacy_markup_wrapper .top_label div.ginput_container,
#gform_wrapper_3.gform_legacy_markup_wrapper .top_label div.ginput_container,
#gform_wrapper_3.gform_legacy_markup_wrapper li.hidden_label input{
    margin-top: 0 ;
}

body .cont-form .gform_legacy_markup_wrapper div.ginput_container_name span {
    display: block;
    padding-top: 0 !important;
}

.franch .form-radio ul.gfield_radio{
    margin: 0;
}

.franch .form-radio .gchoice{
    width: auto;
    display: inline-block;
    margin-right: 10px;
}

.franch .form-radio .gchoice label{
    font-size: 16px;
    display: inline;
}

/* End Party Packages */

/* Start Adult Platers */

section.inner_video_cont_sect.franch.adult-platters {
    padding: 50px 0 150px;
}

.adult-platters .tablist{
    margin-bottom: 80px;
}

.section.inner-bg.franch.adult-platters h2{
    color: var(--sit-red);
    margin-bottom: 20px;
}

.section.inner-bg.franch.adult-platters p{
    margin: 0 0 20px;
}

.ap-table .main-content{
    max-width: 1100px;
}

.table-responsive.pricing-table tbody tr td p{
    margin: 0;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
}

.ap-table .party-bottom-buttons{
    margin: 60px 0;
}


/* End Adult Platers */

/* Start Book Party */

.section.inner-bg.what-on.party-inner h3{
    font-size: 20px;
    margin-bottom: 20px;
}
.section.inner-bg.what-on.party-inner h4{
    font-size: 18px;
    margin-bottom: 20px;
}

.section.inner-bg.franch.book-party h2{
    color: var(--sit-red);
    text-align: center;
    margin-bottom: 50px;
}

.section.inner-bg.franch.book-party .main-content,
.section.inner-bg.what-on.job-opportunity .main-content{
    padding: 10px 95px 50px;
}

.book-party .gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first{
    padding-top: 0;
}

.book-party .gform_legacy_markup_wrapper .instruction {
    display: none;
}

.book-party .book-party-field-name,
.book-party .book-party-field-email,
.book-party .book-party-field-phone,
.book-party .book-party-field-package,
.book-party .book-party-field-children,
.book-party .book-party-field-age,
.book-party .book-party-field-bookdate,
.book-party .book-party-field-booktime,
.job-opportunity .job-op-field-name,
.job-opportunity .job-op-field-email
{
    vertical-align: top;
    display: inline-block;
}

.book-party .gform_legacy_markup_wrapper .field_description_below .gfield_description,
.section.inner-bg.what-on.job-opportunity .field_description_below .gfield_description{
    padding: 0 0 0 15px;
    font-size: 14px;
    font-weight: 300;
}

.book-party .gform_legacy_markup_wrapper .gfield:has(.gfield_description) input{
    margin-bottom: 0;
}

.book-party .gform_legacy_markup_wrapper textarea{
    margin-top: 0;
}

.section.inner-bg.what-on.book-party .gform_body.gform-body h3{
    margin-top: 15px;
}

/* End Book Party */


/* Start Whats On Page */

.section.inner-bg.what-on{
    padding: 20px 0 60px;
    background-position: left top;
}

.section.inner-bg.what-on.contacts {
    padding: 20px 0 170px;
}

.what-on h2{
    margin-bottom: 50px;
}

.what-on .main-content {
    background: rgb(255 255 255 / 89%);
    max-width: 100%;
}

.section.inner-bg.what-on .main-content .row{
    row-gap: 35px;
}

.what-on .wts_img{
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0px 15px rgb(0 0 0 / 10%);
}

.section.inner-bg.what-on h3{
    padding: 0;
    margin: 0;
}

.section.inner-bg.what-on h3 a{
    color: #f15a29;
    font-size: 24px;
    text-align: left;
    padding: 10px 0 10px;
    display: inline-block;
}

.section.inner-bg.what-on .post-date p{
    text-align: left;
    margin: 5px 0 12px;
    font-size: 13px;
    color: #f7941d;
    display: inline-block;
    font-weight: 400;
}

.section.inner-bg.what-on .post-date p i{
    margin-right: 5px;
}

.section.inner-bg.what-on p{
    text-align: left;
    font-weight: 400;
    margin-top: 0;
}

.section.inner-bg.what-on p:has(strong){
    margin-bottom: 5px;
}

.section.inner-bg.what-on p a{
    color: var(--sit-blu);
}

.section.inner-bg.what-on p a:hover{
    color: var(--sit-red);
}

.section.inner-bg.what-on .rotate_border{
    width: 168px;
    height: 59px;
}

.section.inner-bg.what-on .rotate_border a{
    color: #fff;
    padding: 11px 20px;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.section.inner-bg.what-on .rotate_border a:hover{
    background-color: #ec008c;
}

.section.inner-bg.what-on .rotate_border .inner-dashed-border {
    left: -1px;
    top: -11px;
}

.section.inner-bg.what-on .rotate_border a:hover .inner-dashed-border {
    stroke: #ec008c;
}

/* End Whats On Page */

/* End Whats On Single */

.section.inner-bg.what-on.single .post-date{
    display: block;
    text-align: center;
    font-size: 13px;
    color: #92278f;
    font-weight: 400;
}

.section.inner-bg.what-on.single .post-date i{
    margin-right: 5px;
}

.what-on.single .main-content {
    background: #ffffff;
    max-width: 1000px;
}

.section.inner-bg.what-on ol{
    padding-left: 0;
}

.section.inner-bg.what-on ol li{
    font-weight: 300;
    font-size: 15px;
}

/* End Whats On Single */

/* Start Gallery */

.section.inner-bg.what-on.gallery{
    background-size: 100% 100%;
    padding: 40px 0 100px;
}

.section.inner-bg.what-on.gallery h1{
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 5px;
}
.section.inner-bg.what-on.gallery p{
    text-align: center;
}

.section.inner-bg.what-on.gallery .gallery_img{
    border-radius: 15px;
    height: 240px;
    overflow: hidden;
    width: 90%;
    margin: 20px auto;
    padding: 0;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 27%);
}

.section.inner-bg.what-on.gallery .gallery_img img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    border: none;
    -moz-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.section.inner-bg.what-on.gallery .gallery_img:hover img{
    transform: scale(1.2);
}

/* End Gallery */

/* Start Contact */

.map-cont iframe {
    height: 450px;
    width: 100%;
}

.contact-us h1{
    visibility: hidden;
}

.contact-us .inner_banner_detail{
    padding: 15% 0;
}

section.inner-bg.contacts .contact-page h3 {
    padding: 14px 0 25px;
    color: var(--sit-org);
    font-size: 24px;
    text-align: left;
}

section.inner-bg.contacts .contact-page p{
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0;
}

section.inner-bg.contacts .contact-page a.find-lol-btn {
    padding: 10px 15px;
    border-radius: 15px;
    color: #fff;
    background-color: #eb1c23;
    font-family: 'HelveticaRounded-Bold';
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

section.inner-bg.contacts .contact-page a.find-lol-btn:hover {
    background-color: #ec008c;
}

section.inner-bg.contacts .contact-page .contact-cont ul{
    margin-bottom: 35px;
}

section.inner-bg.contacts .contact-page .contact-cont ul li{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    text-align: left;
    padding: 10px 30px;
    position: relative;
}

section.inner-bg.contacts .contact-page .contact-cont ul li a:hover{
    color: var(--sit-pink);
}

section.inner-bg.contacts .contact-page .contact-cont ul li:first-child::before {
    content: "\f095";
    position: absolute;
    left: 0;
    top: 7px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #000000;
}
section.inner-bg.contacts .contact-page .contact-cont ul li:nth-child(2):before {
    content: "\f0e0";
    position: absolute;
    left: 0;
    top: 7px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #000000;
}

section.inner-bg.contacts .contact-page .contact-cont ul li:nth-child(3):before {
    content: "\f041";
    position: absolute;
    left: 0;
    top: 7px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #000000;
}
section.inner-bg.contacts .contact-page .contact-cont ul li:nth-child(4):before {
    content: "\f017";
    position: absolute;
    left: 0;
    top: 7px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #000000;
}

section.inner-bg.contacts .contact-page .contact-cont ul li:not(.open-hrs):last-child p{
    margin-bottom: 20px;
}

section.inner-bg.contacts .contact-page .cont-form {
    background: rgb(255 255 255 / 89%);
    border-radius: 7px;
    padding: 25px 50px;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 27%);
    z-index: 99;
    position: relative;
}

section.inner-bg.contacts .contact-page .cont-form #gform_wrapper_3.gform_wrapper {
    margin-top: 0;
}

#gform_2 input[type="text"],
#gform_2 input[type="email"],
#gform_2 input[type="tel"],
#gform_2 select,
#gform_2 textarea{
    margin: 0;
}

/* End Contact */


.section.inner-bg.privacy{
    padding: 100px 0 40px;
    background-position: center;
}

.section.inner-bg.privacy h2{
    text-align: center;
}

.section.inner-bg.privacy ul.privacy-policy-ul {
    font-size: 16px;
    margin-bottom: 20px;
}

.section.inner-bg.privacy ul.privacy-policy-ul li{
    margin-bottom: 10px;
    font-weight: 300;
}

.section.inner-bg.privacy a{
    color: #ec008c;
}


.section.inner-bg.what-on.media-page{
    padding: 20px 0 126px;
}

.what-on.single.media-page .main-content{
    max-width: 100%;
}

.what-on.single.media-page .main-content h3{
    color: #f15a29;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.what-on.single.media-page .main-content p{
    font-size: 16px;
}

.what-on.single.media-page .main-content p strong{
    font-weight: 700;
}

.what-on.single.media-page .main-content ul{
    margin-left: 0;
}

.what-on.single.media-page .main-content li{
    text-align: left;
    padding: 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.what-on.single.media-page .main-content li:first-child::before {
    content: "\f041";
    position: absolute;
    left: 0;
    top: 7px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #00aeef;
}

.what-on.single.media-page .main-content li:last-child::before {
    content: "\f095";
    position: absolute;
    left: 0;
    top: 7px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #f15a29;
}


.error404 section.lets_play_sect{
    margin-top: -80px;
}


.section.inner-bg.what-on.job-opportunity{
    padding: 20px 0 60px;
}

.section.inner-bg.what-on.job-opportunity h2{
    font-size: 24px;
    margin-bottom: 0;
    line-height: normal;
    text-align: center;
    color: var(--sit-red);
    padding: 0 0 10px;
}
.section.inner-bg.what-on.job-opportunity h4{
    font-size: 20px;
    color: var(--sit-yel);
    margin-bottom: 40px;
    line-height: normal;
    text-align: center;
}

.section.inner-bg.what-on.job-opportunity .gfield > label {
    font-size: 14px !important;
    font-weight: 400;
    padding-left: 18px;
    line-height: 2;
    margin-bottom: 0;
}

.section.inner-bg.what-on.job-opportunity .job-op-date,
.section.inner-bg.what-on.job-opportunity .cand-phone,
.section.inner-bg.what-on.job-opportunity .commute{
    margin-top: 0;
}

.section.inner-bg.what-on.job-opportunity .top_label li:not(.gfield_error) div.ginput_container {
    margin-top: 0 !important;
}

.section.inner-bg.what-on.job-opportunity .ginput_container_date {
    width: 50%;
    padding: 0 3px;
}


.section.inner-bg.what-on.job-opportunity .date-field {
    display: inline-block;
    margin-top: 10px !important;
}

.section.inner-bg.what-on.job-opportunity .date-field .ginput_container_date {
    width: 100%;
}

.section.inner-bg.what-on.job-opportunity table.gfield_list.gfield_list_container tr th {
    padding-left: 18px;
    font-size: 14px;
    font-weight: 400;
}

.section.inner-bg.what-on.job-opportunity input[type=file]{
    padding-top: 12px !important;
    width: calc(50% - 8px) !important;
}

.ginput_container.ginput_container_fileupload span {
    margin-left: 10px;
    font-size: 13px;
}

.last-dec{
    font-weight: 300;
}

.section.inner-bg.what-on.job-opportunity .gform_legacy_markup_wrapper .gform_footer{
    padding: 20px 0 0 0 !important;
}

.section.inner-bg.what-on.job-opportunity .availability .gfield_list_icons a{
    transform: translateY(-10px);
}


/* Dashboard Start */

.dashboard .inner_banner_detail {
    padding: 100px 0;
}

.section-dashboard{
    padding: 100px 0;
}

.section-dashboard .tablist{
    padding: 15px 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.section-dashboard .tablist li.current-menu-parent > a,
.section-dashboard .tablist li.current-menu-ancestor > a{
    background: #ec008c !important;
    color: #fff !important;
}

.section-dashboard .dashboard-menu-list > li{
    position: relative;
}

.section-dashboard .dashboard-menu-list > li a,
.section-dashboard .logout a{
    font-size: 14px;
    font-weight: 700;
    color: #000;
    border: none;
    margin-right: 0px;
    padding: 10px 10px;
    display: inline-block;
}

.section-dashboard .dashboard-menu-list > li ul.sub-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0px 2px 3px rgb(0 0 0 / 40%);
    border-radius: 20px;
    background: #fff;
    padding: 15px 0;
    z-index: 11;
}

.section-dashboard .dashboard-menu-list > li:hover ul.sub-menu{
    display: block;
}

.section-dashboard .dashboard-menu-list > li ul.sub-menu a{
    width: 100%;
    margin-bottom: 5px;
}

.section-dashboard .dashboard-wrap h4{
    font-size: 15px;
}

.section-dashboard .dashboard-wrap .dashboard-item{
    padding: 20px 15px 30px 15px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.section-dashboard .dashboard-wrap .dashboard-item a{
    text-align: center;
    color: #ffffff;
    display: block;
}

.section-dashboard .dashboard-wrap .dashboard-item i{
    font-size: 48px;
    margin: 10px 0;
}

.section-dashboard .dashboard-wrap .dashboard-item h4{
    font-size: 14px;
    text-transform: uppercase;
}

.section-dashboard .dashboard-wrap .dashboard-item p{
    font-size: 13px;
    text-align: inherit;
}

.section-dashboard .dashboard-wrap .cmn-btn{
    padding: 10px 30px;
    border-radius: 20px;
    color: #ffffff;
    margin-bottom: 30px;
}

.section-dashboard .dashboard-wrap .table-responsive {
    box-shadow: 3px 5px 25px rgb(0 0 0 / 10%);
    margin-bottom: 0;
}

.section-dashboard .dashboard-wrap .table-responsive tbody th{
    border: 0;
}

.section-dashboard .dashboard-wrap .table-responsive tbody h6{
    text-transform: capitalize;
}

ul.list-unstyled.list-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

ul.list-unstyled.list-action li input#usubmit {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 10px 20px;
    height: auto;
    line-height: normal;
    font-family: 'Muli', sans-serif !important;
}

ul.list-unstyled.list-action li a{
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 25px;
    line-height: normal;
}

.section-dashboard .dashboard-wrap .gform_wrapper {
    max-width: 100%;
    border-radius: 20px;
    margin: 0px;
    padding: 30px 46px;
    border: 1px solid rgb(33 37 41 / 13%);
}

.section-dashboard .dashboard-wrap .gform_legacy_markup_wrapper .field_description_below .gfield_description {
    padding: 5px 0 0 5px;
}

.section-dashboard .dashboard-wrap input,
.section-dashboard .dashboard-wrap select,
.section-dashboard .dashboard-wrap textarea {
    margin-bottom: 0 !important;
    font-weight: 600 !important;
    font-weight: 15px !important;
}

.section-dashboard .dashboard-wrap input::placeholder{
    font-weight: 200 !important;
}

.section-dashboard .dashboard-wrap .ginput_container_checkbox{
    margin-top: 0 !important;
}

.section-dashboard .dashboard-wrap input[type='file']{
    padding: 12px 15px !important;
}

.section-dashboard .dashboard-wrap .gchoice > input[type='checkbox'] {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: auto !important;
    height: auto;
}

.panel.panel-success{
    margin-bottom: 50px;
}

/* Dashboard End */