@import url('https://fonts.googleapis.com/css?family=Comfortaa:300,400,700&subset=cyrillic,cyrillic-ext,greek,latin-ext,vietnamese');

/*menubar*/

.menubar {
    float: left;
    position: relative;
    width: 100%;
    z-index: 9999;
}

header .menubar::before {
    background-color: #fff;
    content: "";
    height: 100%;
    opacity: 0.3;
    position: absolute;
    width: 100%;
}

.active.nav-item a {
    color: #007f13;
}

.nav-mob {
    width: 100%;
}

nav.nav {
    position: relative;
    top: 0px;
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
}

nav .nav-list {
    text-align: left;
    padding: 0px;
    margin: 0px auto;
    display: table;
}

nav .nav-item {
    float: left;
    font-weight: normal;
    display: inline;
    zoom: 1;
    position: relative;
    list-style: none;
    padding: 0 26px;
}

nav .nav-item a {
    color: #fff;
    display: block;
    font-size: 17px;
    padding: 9px 13px;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.menubar li.current-menu-parent a.menu-link {
    color: #000;
}


/*.menubar li.menu-item-has-children a.menu-link {
    color: #007f13;
}*/

nav .nav-item:hover a {
    text-decoration: none;
    color: #000;
}

nav .nav-item.current-menu-item a.menu-link {
    color: #000;
}

.menubar ul.nav-list li.nav-item:hover::before {
    border-bottom: 2px solid #007f13;
    bottom: 0;
    content: none;
    left: 0;
    position: absolute;
    width: 100%;
}


/* Navigation submenu */

nav .nav-item:hover .sub-menu {
    background: #a77cbd none repeat scroll 0 0;
    border-top: 2px solid #5f3b93;
    display: block;
    list-style: outside none none;
    padding-left: 0;
    top: 42px;
    z-index: 999;
}

.sub-menu>li {
    border-bottom: 1px solid #ccc;
    list-style-type: none;
    padding: 0;
    width: 100%;
}

.sub-menu>li:last-child {
    border: 0 solid;
}

.menubar li.sub-menu-item a.menu-link.sub-menu-link {
    color: #fff;
}

.menubar li.sub-menu-item.current-menu-item a.menu-link.sub-menu-link {
    color: #000;
}

.venue .lunafish-outer {
    margin: 40px 0 0;
}

nav .sub-menu {
    background-color: #eaeaea;
    position: absolute;
    left: 0;
    width: 180px;
    padding: 0;
    display: none;
    border: 0px;
}

nav .sub-menu a {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border-bottom: 0px solid #FFFFFF;
    color: #444444;
    display: block;
    font-weight: normal;
    padding: 8px;
}

nav .sub-menu a:hover {
    background: transparent none repeat scroll 0 0;
    text-decoration: none;
}

.menubar li.sub-menu-item:hover a.menu-link.sub-menu-link {
    color: #000;
}


/* Mobile navigation */

nav .nav-mobile {
    display: none;
    /* Hide from browsers that don't support media queries */
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 10px;
}

nav .nav-mobile {
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 0;
    color: #222222;
    font-size: 14px;
    padding: 10px 15px;
}


/* Mobile navigation, clickable area for revealing <ul> */

nav .nav-click {
    cursor: pointer;
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

nav .nav-click i {
    padding: 10px 14px;
    color: #fff;
}

nav .nav-rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

nav {
    margin-top: 0px;
}

.active.nav-item::before {
    border-bottom: 2px solid #007f13;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
}

.nav-item:hover .sub-menu a {
    color: #333;
}


/*menu dropdown*/

.dropdown-submenu {
    position: relative;
}

.nav-item:hover .sub-menu a {
    color: #333;
}

.dropdown-submenu>.dropdown-menu {
    display: none;
    border-radius: 0;
    border: 0px;
    box-shadow: 0px 0px 0px;
    left: 100%;
    margin-left: 0;
    margin-top: 0;
    top: 0;
    background-color: #b7b7b7;
}

.dropdown-submenu:hover>.dropdown-menu {
    padding: 0;
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #7e7e7e;
    margin-top: 5px;
    margin-right: -5px;
}

.dropdown-menu .dropdown-submenu .dropdown-menu {
    background-color: #fa3131;
}

.dropdown-submenu .fa {
    color: #000;
}


/*animation*/

.nav-list .animate {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-direction: alternate;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-list .fadeInRight {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}

.nav-list .fadeInRight.go {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.slider .bx-wrapper .bx-viewport {
    box-shadow: none;
}


/* header */

body p {
    color: #4a5664;
    font-size: 15px;
}

body h1 {
    float: left;
    font-size: 45px;
    font-weight: bold;
    margin: 0;
    padding: 35px 0 50px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
    z-index: 9;
}

body h1::before {
    background: rgba(0, 0, 0, 0) url("../images/head-bg.png") no-repeat scroll center bottom;
    bottom: -3px;
    content: "";
    height: 40px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
}

body h1 span {
    color: #b6238b;
}

body h2 {
    float: left;
    font-size: 43px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

body h4 {
    float: left;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

body h3 {
    display: table;
    float: none;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: auto;
}

body h3::before {
    background: rgba(0, 0, 0, 0) url("../images/title-bg.png") no-repeat scroll center center;
    content: "";
    display: inline-block;
    height: 28px;
    left: -40px;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 28px;
}

body h5 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

.home-bg {
    background: rgba(0, 0, 0, 0) url("../images/slider2.jpg") no-repeat fixed center center / cover;
    float: left;
    position: relative;
    width: 100%;
}

.home-bg::before {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
}

body {
    font-family: 'Comfortaa', cursive;
}

header {
    background: rgba(0, 0, 0, 0) url("../images/header-bg.jpg") no-repeat scroll 0 0 / cover;
    border-bottom: 2px solid #5f3b93;
    float: left;
    position: relative;
    width: 100%;
}

.header {
    float: left;
    padding: 25px 0;
    position: relative;
    width: 100%;
}

.header .head-logo img {
    display: table;
    margin: 0 auto;
    max-width: 90%;
}

header::before {
    background-image: -moz-linear-gradient(90deg, rgb(103, 58, 149) 0%, rgb(251, 15, 178) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(103, 58, 149) 0%, rgb(251, 15, 178) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(103, 58, 149) 0%, rgb(251, 15, 178) 100%);
    background-repeat: no-repeat;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.9;
    position: absolute;
    top: 0;
    width: 100%;
}

.slider {
    float: left;
    width: 100%;
}

ul {
    float: left;
    list-style: none;
    padding: 0;
    width: 100%;
}

.yrc-item-list {
    display: table;

}

a,
a:focus,
a:hover {
    color: #333;
    outline: medium none;
    text-decoration: none;
}

ul.address-list li {
    float: left;
    position: relative;
}

ul.social-list li {
    float: left;
    position: relative;
}

.head-logo a {
    display: table;
    margin: 0 auto;
}

ul.social-list {
    float: right;
    width: auto;
}

.header ul i::before {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 38px;
    padding: 7px;
    text-align: center;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 38px;
}

.header ul i:hover::before {
    color: #007f13;
}

.header ul i {
    color: #cb36ac;
    float: left;
    font-size: 22px;
    padding: 0 6px;
    position: relative;
}

.header ul i.ion-social-googleplus-outline::before {
    padding: 9px 11px;
}

ul.address-list li a {
    color: #fff;
    float: left;
    font-size: 20px;
    margin-top: 5px;
}

.banner-home {
    /*background: rgba(0, 0, 0, 0) url("../images/slider.jpg") no-repeat fixed center top 0px / cover ;*/
    float: left;
    /*height: 450px;*/
    position: relative;
    width: 100%;
}

.banner-bg {
    bottom: 100px;
    left: 50%;
    position: fixed;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.banner-home .banner-bg a {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #000;
    font-size: 18px;
    margin: 0 10px;
    padding: 12px 40px 10px;
    text-transform: uppercase;
}

.banner-home .banner-bg a:hover {
    background: #98ff4b none repeat scroll 0 0;
    border-color: #98ff4b;
}

.welcome-story {
    float: left;
    overflow: hidden;
    padding: 0 0 40px;
    position: relative;
    width: 100%;
    z-index: 999;
}

.welcome-story .welcome-img {
    float: left;
    padding: 30px 0 10px;
    position: relative;
    width: 100%;
}

.welcome-story::before {
    background: #fff none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.welcome-story .welcome-img::before {
    background: rgba(0, 0, 0, 0) url("../images/about-img.png") no-repeat scroll right top -30px;
    content: none;
    height: 69%;
    position: absolute;
    right: 0;
    top: 0;
    width: 38%;
}

.welcome-story .welcome-cont p {
    font-size: 16px;
    line-height: 33px;
    position: relative;
}

.welcome-story .wel-image {
    background-position: center center;
    background-size: cover;
    float: right;
    height: 400px;
    position: relative;
    top: 30px;
    width: 38%;
    z-index: 999;
}

.welcome-story .wel-image::before {
    border: 8px solid #d914de;
    content: "";
    height: 400px;
    position: absolute;
    right: 45px;
    top: 40px;
    width: 100%;
}

.welcome-story .welcome-cont {
    float: left;
    padding-left: 100px;
    padding-right: 20px;
    position: relative;
}

.welcome-cont a.more-btn {
    background-image: -moz-linear-gradient(90deg, rgb(21, 134, 171) 0%, rgb(136, 68, 201) 53%, rgb(250, 2, 230) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(21, 134, 171) 0%, rgb(136, 68, 201) 53%, rgb(250, 2, 230) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(21, 134, 171) 0%, rgb(136, 68, 201) 53%, rgb(250, 2, 230) 100%);
    background-position: 100% center;
    border-radius: 50px;
    color: #fff;
    display: table;
    font-size: 19px;
    margin: 50px 0;
    padding: 8px 28px;
    position: relative;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

form div.wpcf7-validation-errors {
    border-color: #ff0000;
    color: #ff0000;
    float: right;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

.contact-form form div.wpcf7-validation-errors {
    margin-top: 0;
}

form span.wpcf7-not-valid-tip {
    display: none;
}

ul.home-form input.wpcf7-not-valid {
    border: 1px solid #ff0000;
}

.welcome-cont a.more-btn:hover {
    background-position: 0 49px;
}

.about-us .lunafish-outer {
    margin: 50px 0;
}

.about-us .innerpage .content-inner p {
    line-height: 30px;
}

.welcome-story h1 {
    margin: 0 0 60px;
}

.band {
    background: rgba(0, 0, 0, 0) url("../images/bg1.jpg") no-repeat fixed center center / cover;
    float: left;
    padding: 20px 0 100px;
    position: relative;
    width: 100%;
}

.band::before {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    width: 100%;
}

.band .inner_band h2 {
    color: #fff;
    margin: 0;
    padding: 25px 0 65px;
    position: relative;
}

.band ul.team_list {
    display: table;
    float: none;
    margin: 0 auto;
    width: auto;
}

.band ul.team_list li {
    float: left;
    margin: 0;
    text-align: center;
    width: 20%;
}

.band ul.team_list li .team-img {
    /*display: table;*/
    float: none;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.band ul.team_list li .team-img img {
    /*-moz-border-radius: 50%;
-webkit-border-radius: 50%;
	border-radius: 50%;*/
    max-width: 100%;
}

ul.team_list .team-img {
    display: table;
    margin: 0 auto;
}

.band ul.team_list li .team-img a {
    border-radius: 50%;
    float: left;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 200px;
}

.band ul.team_list .team-cont {
    color: #fff;
    float: left;
    padding: 20px 0;
    width: 100%;
}

.band .team-cont h5 {
    float: left;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    padding: 0 0 2px;
    position: relative;
    width: 100%;
}

.band .team-cont h5 a {
    color: #fff;
    font-style: normal;
}

.band .team-cont h5::before {
    background: #da5d4b none repeat scroll 0 0;
    bottom: -7px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 25%;
}

.band li:nth-child(4n+1) .team-cont h5::before {
    background: #DB5E4A none repeat scroll 0 0;
}

.band li:nth-child(4n+2) .team-cont h5::before {
    background: #1FC386 none repeat scroll 0 0;
}

.band li:nth-child(4n+3) .team-cont h5::before {
    background: #24A1CF none repeat scroll 0 0;
}

.band li:nth-child(4n+4) .team-cont h5::before {
    background: #E5C74D none repeat scroll 0 0;
}

.band .team-cont p {
    color: #fff;
    float: left;
    font-size: 14px;
    font-style: normal;
    margin: 0;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.home-testimonial {
    background: rgba(0, 0, 0, 0) url("../images/servicebg1.jpg") no-repeat scroll 0 0 / cover;
    float: left;
    padding: 100px 0;
    position: relative;
    width: 100%;
}

.home-testimonial .testi-head h2 {
    margin: 0;
}

.home-testimonial .testi-head p {
    color: #fff;
    display: block;
    float: left;
    font-size: 16px;
    line-height: normal;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.home-testimonial .testi-head {
    color: #fff;
    float: left;
    text-align: center;
    width: 100%;
}

.home-testimonial .testi-outer {
    float: left;
    width: 100%;
}

.home-testimonial ul.test_list li {
    float: left;
}

.home-testimonial ul.test_list li img {
    max-width: 100%;
}

.home-testimonial a.view-btn {
    background-color: #99e350;
    border: 1px solid #99e350;
    border-radius: 50px;
    color: #000;
    display: table;
    font-size: 18px;
    margin: 0 auto;
    padding: 15px 40px 10px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.home-testimonial a.view-btn:hover {
    background: #5462bb none repeat scroll 0 0;
    border-color: #5462bb;
    color: #fff;
}

.lunafish-outer {
    float: left;
    width: 100%;
}

.sliderimage {
    position: relative;
}

.events {
    background: rgba(0, 0, 0, 0) url("../images/bg1.jpg") no-repeat fixed center center / cover;
    float: left;
    padding: 60px 0;
    position: relative;
    width: 100%;
}

.events::before {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    width: 100%;
}

.events .events-cont {
    color: #fff;
    float: left;
    width: 100%;
}

.events .events-cont h2 {
    margin: 0;
    padding: 0 0 50px;
    position: relative;
}

.events .event-list {
    float: left;
    text-align: center;
}

.events .event-details h5 {
    font-size: 30px;
    margin: 0;
    padding: 0 0 25px;
    position: relative;
}

.events .event-details p {
    color: #fff;
    float: left;
    font-size: 17px;
    margin: 0px !important;
    padding: 0px !important;
    position: relative;
    width: 100%;
}

.events .event-details p a {
    color: #fff !important;
}

.events .event-details {
    float: left;
    padding: 40px 30px 40px 82px;
    position: relative;
}

.events .event-details::before {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
}

.events ul.event-months {
    display: table;
    float: none;
    margin: 0 auto;
    width: auto;
}

.events ul.event-months li {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding: 3px 0;
    position: relative;
}

.events h5.year {
    cursor: pointer;
}

.events ul.event-months li.active::before {
    background: #a6f159 none repeat scroll 0 0;
    content: "";
    height: 5px;
    left: -65px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 60px;
}

.events ul.event-months li.active::after {
    background: #a6f159 none repeat scroll 0 0;
    content: "";
    height: 5px;
    position: absolute;
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 60px;
}

.home-blog {
    background: #fff none repeat scroll 0 0;
    float: left;
    padding: 55px 0;
    position: relative;
    width: 100%;
}

.home-blog .recent-blog_left h2 {
    font-size: 35px;
    margin: 0;
    padding: 55px 0 20px;
}

.home-blog .blog-cont .blog-right {
    box-shadow: 1px 3px 6px #eee;
    display: table;
    padding: 17px 10px 17px 15px;
    width: 58%;
}

.home-blog .blog-cont .blog-right span {
    color: #bc37b6;
    font-size: 15px;
    text-transform: uppercase;
}

.home-blog .blog-cont .blog-right h4 {
    color: #262626;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 0;
    text-align: left;
}

.home-blog .blog-cont .blog-right p {
    color: #4a5664;
    font-size: 14px;
    line-height: 30px;
    margin: 0;
}

.home-blog .blog-cont .blog-right p a {
    color: #bc37b6;
}

.newsletter {
    background: #a51495 none repeat scroll 0 0;
    border-bottom: 2px solid #fff;
    color: #fff;
    float: left;
    position: relative;
    width: 100%;
}

.newsletter::before {
    background: rgba(0, 0, 0, 0) url("../images/pattern.png") repeat scroll center top;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
}

.newsletter::after {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
}

.newsletter .news-subscribe {
    float: left;
    padding: 52px 0;
    position: relative;
    text-align: center;
    z-index: 1;
}

.newsletter .news-subscribe input.submit {
    background: #e2a900 url("../images/sent-mail-1.png") no-repeat scroll left 22px center / 22px auto;
    border: 1px solid #e2a900;
    border-radius: 3px;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 32px 8px 58px;
    position: relative;
    text-transform: capitalize;
    top: 2px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.newsletter .news-subscribe input.submit:hover {
    background-color: #52a823;
    border-color: #52a823;
}

.newsletter .news-subscribe input.email {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #fff;
    border-radius: 3px;
    font-size: 16px;
    height: 50px;
    margin-right: 25px;
    padding: 10px;
    width: 50%;
}

.newsletter .news-cont h2 {
    float: left;
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

.newsletter .news-cont {
    float: left;
    overflow: hidden;
    padding: 56px 0;
    position: relative;
    z-index: 1;
}

.newsletter .news-cont::before {
    background: #a51495 none repeat scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1000%;
}

.newsletter .news-cont::after {
    border-bottom: 0 solid transparent;
    border-left: 50px solid transparent;
    border-top: 170px solid #530a4b;
    content: "";
    position: absolute;
    right: -50px;
    top: 0;
    width: 100px;
    z-index: 999;
}

.footer {
    background: #52a823 none repeat scroll 0 0;
    float: left;
    position: relative;
    width: 100%;
}

.footer .footer-top {
    float: left;
    padding: 20px 0;
    width: 100%;
}

.footer .footer-bottom {
    background: #3b6e23 none repeat scroll 0 0;
    float: left;
    padding: 24px 0;
    width: 100%;
    padding: 24px 0 10px;
}

.footer .copy-right p {
    color: #fff;
    margin: 0;
}

ul.foot_menu li {
    float: left;
    font-size: 16px;
    font-weight: 800;
    padding: 0 31px;
}

.menu-footermenu-container li.menu-item a {
    color: #fff;
}

.menu-footermenu-container li.menu-item a:hover {
    color: #005907;
}

.menu-footermenu-container li.menu-item.current-menu-item a {
    color: #005907;
}

.footer .footer-bottom .copy-logo {
    float: right;
    text-align: right;
    padding-top: 17px;
}

.footer .footer-bottom .copy-right {
    padding-top: 25px;
}


.footer .footer-bottom .disclaimer {
    float: left;
    position: relative;
    text-align: center;
    padding: 15px 70px;
}

.footer .copy-right p {
    color: #fff;
    margin: 0;
    padding: 10px 0;
}

.footer .disclaimer p {
    color: #fff;
    margin: 0;
    padding: 10px 0;
}

.footer .disclaimer a {
    color: #fff;
}



.home-blog .blog-cont .blog-left {
    float: left;
    height: 183px;
    overflow: hidden;
    width: 230px;
}

.home-blog .blog-cont {
    background: #fff none repeat scroll 0 0;
    float: left;
    padding: 20px;
    position: relative;
    width: 100%;
}

.home-blog .blog-cont .blog-left img {
    max-width: 100%;
}

.home-blog .recent-blog_right {
    background: rgba(0, 0, 0, 0) url("../images/blog-bg.jpg") no-repeat scroll right bottom / cover;
    float: left;
    padding: 70px 0 70px 60px;
    position: relative;
    width: 54%;
}

.home-blog .recent-blog_left {
    width: 46%;
}

.home-blog .recent-blog_right::before {
    background: #52a823 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
}

.home-blog ul.home-form {
    display: table;
    float: none;
    margin: 0 0 0 25%;
    width: 70%;
}

ul.home-form input {
    border: 1px solid #d3d3d3;
    font-weight: 500;
    padding: 15px 10px 15px 30px;
    width: 100%;
}

ul.home-form input.wpcf7-captchar {
    padding-left: 10px;
}

ul.home-form textarea {
    border: 1px solid #d3d3d3;
    height: 70px;
    padding: 15px 30px;
    width: 100%;
}

ul.home-form textarea:focus,
ul.home-form input:focus {
    outline: none;
}

.home-blog ul.home-form li {
    float: left;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    width: 100%;
}

.home-blog ul.home-form li::before {
    color: #d3d3d3;
    content: "";
    font-family: ionicons;
    font-size: 18px;
    left: 10px;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 9;
}

.home-blog ul.home-form li.form-comp::before {
    content: "\f448";
}

.home-blog ul.home-form li.form-name::before {
    content: "\f3a0";
}

.home-blog ul.home-form li.form-email::before {
    content: "\f423";
}

.home-blog ul.home-form li.form-phone::before {
    content: "\f2d2";
}

.home-blog ul.home-form li.form-comm::before {
    content: "\f11f";
    top: 35%;
}

ul.home-form li.form-sub input.wpcf7-submit {
    background-image: -moz-linear-gradient(0deg, rgb(69, 197, 38) 10%, rgb(143, 207, 91) 44%, rgb(217, 216, 143) 59%, rgb(216, 121, 100) 71%, rgb(214, 25, 57) 90%);
    background-image: -webkit-linear-gradient(0deg, rgb(69, 197, 38) 10%, rgb(143, 207, 91) 44%, rgb(217, 216, 143) 59%, rgb(216, 121, 100) 71%, rgb(214, 25, 57) 90%);
    background-image: -ms-linear-gradient(0deg, rgb(69, 197, 38) 10%, rgb(143, 207, 91) 44%, rgb(217, 216, 143) 59%, rgb(216, 121, 100) 71%, rgb(214, 25, 57) 90%);
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    padding: 10px 45px 6px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: auto;
}

ul.home-form li.form-sub input.wpcf7-submit:hover {
    background-position: -156px 0;
}

.home-blog ul.home-form li.form-sub {
    display: table;
    margin: 50px 0 0 0;
}

.home-blog ul.home-form li.form-comm {
    padding: 10px 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: #a3a3a3 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
    color: #a3a3a3 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    color: #a3a3a3 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: #a3a3a3 !important;
}

.home-testimonial .slick-slide img {
    display: table;
    margin: 0 auto;
    width: 350px;
}

.footer-top ul.foot_menu {
    margin: 0;
}

li.slick-slide .testi-title {
    color: #fff;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 70%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
}

.home-testimonial ul.team_list li.slick-slide {
    height: auto;
    position: relative;
}

.home-testimonial ul.team_list li.slick-slide:focus,
.home-testimonial ul.team_list li.slick-slide:hover {
    outline: none;
}

li.slick-slide .testi-title h5 {
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 60px;
    position: relative;
}

li.slick-slide .testi-title h5 a {
    color: #fff;
    text-shadow: 0 2px 2px #000;
}

.home-testimonial ul.team_list li.slick-slide::before {
    background-image: -moz-linear-gradient(90deg, rgb(21, 134, 171) 0%, rgb(136, 68, 201) 53%, rgb(250, 2, 230) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(21, 134, 171) 0%, rgb(136, 68, 201) 53%, rgb(250, 2, 230) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(21, 134, 171) 0%, rgb(136, 68, 201) 53%, rgb(250, 2, 230) 100%);
    content: "";
    height: 100%;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 90%;
}

.home-testimonial ul.team_list li.slick-slide:hover::before {
    opacity: 0.8;
}

li.slick-slide .testi-title h5::before {
    background: #ffff02 none repeat scroll 0 0;
    bottom: -40px;
    content: "";
    height: 2px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 80px;
}

li.slick-slide:hover .testi-title h5::before {
    opacity: 1;
}

.testi-title .homesocial {
    display: table;
    float: none;
    margin: 0 auto;
    opacity: 0;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: auto;
}

.testi-title .homesocial li {
    float: left;
    padding: 0 10px;
}

.testi-title .homesocial li a {
    color: #fff;
    font-size: 22px;
}

li.slick-slide:hover .testi-title .homesocial {
    opacity: 1;
}

.home-testimonial button.slick-prev.slick-arrow::before {
    content: "\f3d2";
    font-family: ionicons;
    font-size: 70px;
}

.home-testimonial button.slick-next.slick-arrow::before {
    content: "\f3d3";
    font-family: ionicons;
    font-size: 70px;
}

.home-testimonial button.slick-arrow {
    height: 70px;
    width: 30px;
}

.home-testimonial button.slick-arrow.slick-next {
    right: -25px;
}


/* contact */

.contact-page .forms-cont ul.call p {
    font-size: 14px;
    line-height: 30px;
    margin: 0;
}

.contact-page .forms-cont ul.call i {
    padding: 0px 6px 0 0;
}

.contact-page .forms-cont ul.call {
    text-align: center;
}

.build img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.office h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Comfortaa', cursive;
    color: #00234e;
}

.contact-page {
    float: left;
    padding: 30px 0;
    width: 100%;
}

.contact-page .forms-cont {
    float: left;
    margin: 40px 0;
}

.cont {
    text-align: center;
    list-style-type: none;
    padding: 0 0;
    margin: 0 0;
    color: #00234e;
}

.forms-cont ul.cont li {
    color: #00234e;
    display: table;
    margin: 0 auto;
    padding: 5px 0 10px;
}

.forms-cont ul.cont li i {
    padding: 0 10px 0 0;
    color: #00234e;
}

.forms-cont ul.cont li i.fa.fa-envelope-o {
    display: none;
}

.forms-cont ul.cont a {
    color: #4a5664;
}

.forms-cont ul.social li {
    float: left;
    padding: 0 11px;
    text-align: center;
    margin: 0 auto;
    display: table;
    font-size: 16px;
    color: #00234e;
}

.contact-page .forms-cont ul.social {
    display: table;
    float: none;
    margin: 0 auto;
    padding: 11px 0;
    width: auto;
}

.contact-page .forms-cont .build {
    display: table;
    height: 160px;
    margin: 10px auto;
    position: relative;
    width: 160px;
}

.contact-page .forms-cont .build::before {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #d32eb2 30%, #0c72c7 100%) repeat scroll 0 0;
    border-radius: 50%;
    bottom: -3px;
    content: "";
    left: -3px;
    position: absolute;
    right: -3px;
    top: -3px;
    transition: all 0.3s ease 0s;
    z-index: -3;
}

.office ul.social a {
    color: #959ba2;
    display: block;
}

.contact-page .forms-cont .build::after {
    background-color: #fff;
    border-radius: 50%;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -3;
}

ul.commet li {
    list-style-type: none;
    line-height: 22px;
    padding: 10px;
    float: left;
    width: 50%;
}

ul.commet li.contact-cap {
    position: relative;
    width: 100%;
}

ul.commet li.contact-comm {
    width: 100%;
}

ul.commet li input {
    border: 1px solid #ccc;
    float: left;
    padding: 10px 20px;
    width: 100%;
}

ul.commet li input.wpcf7-not-valid {
    border-color: #ff0000;
}

ul.commet li input.cptch_input {
    height: 30px;
    padding: 0;
    text-align: center;
}

ul.commet li textarea {
    border: 1px solid #ccc;
    float: left;
    padding: 10px 20px;
    width: 100%;
}

ul.commet li.submitsend {
    width: auto;
}

ul.commet .submitsend input.wpcf7-submit {
    background: rgba(0, 0, 0, 0) linear-gradient(90deg, #0c72c7, #d32eb2, #0c72c7) repeat scroll -100% 0 / 200% 100%;
    border: 0 solid;
    border-radius: 35px;
    color: #fff;
    font-size: 18px;
    margin: 7px 0;
    padding: 9px 30px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

ul.commet .submitsend input.wpcf7-submit:hover {
    background-position: -200% 0;
}

.contact-form .contact-addr p {
    float: left;
    line-height: 28px;
    margin: 0;
    padding: 0 0 25px;
    text-align: center;
    width: 100%;
}

.contact-form {
    background: #fafafa none repeat scroll 0 0;
    float: left;
    position: relative;
    width: 100%;
}

.contact-form .contact-addr {
    display: table;
    float: none;
    margin: 0 auto;
    padding: 50px 60px;
    width: 70%;
}

.contact-page .forms-cont .office {
    float: left;
    width: 100%;
}


/* blog */

.blog-page .blog-outer-page .blog-img {
    float: left;
    height: 190px;
    overflow: hidden;
    width: 230px;
}

.blog-page .blog-outer-page .outer-cont {
    display: table;
    padding-left: 20px;
}

.blog-page .blog-outer-page {
    float: left;
    margin: 30px 0;
    width: 100%;
}

.blog-author a {
    color: #333;
}

.blog-author i {
    font-size: 14px;
    padding-right: 10px;
}

.blog-page .outer-cont .blog-title a {
    color: #333;
    float: left;
    width: 100%;
}

.blog-page .outer-cont .blog-title a h4 {
    padding: 5px 0;
    text-align: left;
}

.blog-author ul li {
    float: left;
    padding-right: 15px;
}

.blog-readmore a.read_more_link {
    color: #333;
}

.blog-readmore a.read_more_link {
    color: #e012e0;
    float: left;
    font-size: 15px;
    font-weight: bold;
    padding-top: 10px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.blog-readmore a.read_more_link:hover {
    color: #3375b2;
}

.blog-page .outer-cont .blog-content {
    font-size: 15px;
    line-height: 28px;
}

.blog-page {
    float: left;
    margin: 50px 0;
    width: 100%;
}

.blog-page .outer-cont .datetime {
    color: #bc37b6;
}

.blog-page .outer-cont .datetime .bmonth {
    font-size: 15px;
    text-transform: uppercase;
}

.blog-page .outer-cont .datetime .byear,
.blog-page .outer-cont .datetime .bdate {
    font-size: 13px;
}

ul#sidebarwidgeted h2 {
    background: #9140a1 -webkit-linear-gradient(360deg, rgb(103, 58, 149) 0%, rgb(251, 55, 178) 100%) repeat scroll 0 0;
    background: #9140a1 -moz-linear-gradient(360deg, rgb(103, 58, 149) 0%, rgb(251, 55, 178) 100%) repeat scroll 0 0;
    background: #9140a1 -ms-linear-gradient(360deg, rgb(103, 58, 149) 0%, rgb(251, 55, 178) 100%) repeat scroll 0 0;
    border-right: 4px solid #712081;
    color: #fff;
    font-size: 25px;
    padding: 10px;
    text-align: left;
    text-transform: capitalize;
}

ul#sidebarwidgeted li a {
    color: #333;
}

ul#sidebarwidgeted ul {
    padding-left: 20px;
}

ul#sidebarwidgeted .req_bid {
    float: left;
    margin: 0 0 20px;
    width: 100%;
}

ul#sidebarwidgeted li {
    float: left;
    line-height: 30px;
    padding-left: 15px;
    position: relative;
    width: 100%;
}

ul#sidebarwidgeted li::before {
    content: "\f10a";
    font-family: ionicons;
    left: 0;
    position: absolute;
}

.blog-img-single {
    float: left;
    padding: 0 20px 20px 0;
    width: auto;
}

.inner-single-page .blog-author-single {
    display: table;
}

.inner-single-page .blog-author-single li {
    float: left;
    padding-right: 15px;
}

.inner-single-page .blog-author-single li i {
    padding-right: 10px;
}

.inner-single-page .blog-content-single {
    line-height: 30px;
}

.lunafish-outer .single-blog-page {
    float: left;
    margin: 50px 0;
    width: 100%;
}

.single-blog-page .inner-single-page {
    padding: 20px 0 0;
}

.inner-single-page .datetime-single {
    color: #bc37b6;
    font-size: 15px;
    text-transform: uppercase;
}

.inner-single-page .datetime-single .bdate,
.inner-single-page .datetime-single .byear {
    font-size: 13px;
}

.inner-single-page .blog-title-single h4 {
    float: none;
    font-size: 23px;
    padding-bottom: 5px;
    padding-top: 5px;
    text-align: left;
    text-transform: capitalize;
}

#respond form li input {
    border: 1px solid #ccc;
    border-radius: 5px;
    float: left;
    padding: 10px;
    width: 100%;
}

#respond form#commentform li {
    float: left;
    margin: 0 0 15px;
    width: 51%;
}

#respond form#commentform {
    float: left;
    width: 100%;
}

#respond form#commentform li textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    float: left;
    padding: 10px;
    width: 100%;
}

#respond form#commentform li:nth-child(5) {
    width: 100%;
}

#respond form li input#submit {
    background: rgba(0, 0, 0, 0) linear-gradient(90deg, #0c72c7, #d32eb2, #0c72c7) repeat scroll -100% 0 / 200% 100%;
    border: 0 solid;
    border-radius: 35px;
    color: #fff;
    font-size: 18px;
    margin: 7px 0;
    padding: 9px 30px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: auto;
}

#respond form li input#submit:hover {
    background-position: -200% 0;
}

.single-blog-page .postcomments strong {
    float: left;
    font-size: 18px;
    padding: 15px 0;
    width: 100%;
}

.single-blog-page .postcomments ol.commentlist {
    list-style: outside none none;
    padding: 0;
}

.single-blog-page .postcomments ol.commentlist li {
    float: left;
    width: 100%;
}

.single-blog-page .postcomments ol.commentlist li .comment-author.vcard {
    float: left;
    padding-right: 20px;
}

.single-blog-page h4 {
    font-size: 24px;
    text-align: left;
}

.single-blog-page .postcomments ol.commentlist li .reply {
    float: right;
}

.single-blog-page .postcomments ol.commentlist li .comment-body {
    background: #ececec none repeat scroll 0 0;
    border-radius: 10px;
    float: left;
    margin: 15px 0;
    padding: 25px;
    width: 100%;
}

.single-blog-page .postcomments ol.commentlist li .reply .comment-reply-link {
    background: -webkit-linear-gradient(90deg, rgb(21, 134, 171) 0%, rgb(136, 68, 201) 53%, rgb(250, 2, 230) 100%);
    border-radius: 5px;
    color: #ffffff;
    padding: 7px 20px;
    position: relative;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.single-blog-page .postcomments ol.commentlist li .reply .comment-reply-link:hover {
    background-position: 0 62px;
}

.single-blog-page .postcomments ol.commentlist li .comment-body .comment-meta a {
    font-style: italic;
    font-weight: 300;
}

.single-blog-page .postcomments ol.commentlist li .comment-body p {
    color: #333;
    display: table;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 0 0;
    text-transform: capitalize;
}

.single-blog-page .postcomments ol.commentlist li .comment-author.vcard .avatar {
    margin-right: 6px;
}

.postcomments ul.children {
    margin-left: 50px;
    width: 95%;
}

.postcomments form label.error {
    display: none !important;
}

#respond form#commentform li .error {
    border-color: #ff0000;
}


/* gallery */

.gallery-page .photo-img {
    display: table;
    margin: 0 auto;
    position: relative;
    /*width: 300px;*/
}

.gallery-page .photo-img::after {
    background-color: #fff;
    border-radius: 20px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -3;
}

.gallery-page .photo-img::before {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #d32eb2 30%, #0c72c7 100%) repeat scroll 0 0;
    bottom: -5px;
    content: "";
    left: -5px;
    position: absolute;
    right: -5px;
    top: -5px;
    transition: all 0.3s ease 0s;
    z-index: -3;
}

.gallery-page .photo-img img {
    border-radius: 20px;
    max-width: 100%;
}

.gallery-page {
    float: left;
    margin: 50px 0;
    width: 100%;
}

.gallery-page h3::before {
    background: rgba(0, 0, 0, 0) linear-gradient(90deg, #0c72c7, #d32eb2, #0c72c7) repeat scroll -100% 0 / 200% 100%;
    content: none;
    height: 100%;
    left: 0;
    top: 50%;
    width: 100%;
}

.gallery-page .photo-img a {
    bottom: 0;
    color: #fff;
    float: left;
    height: 55px;
    left: 0;
    position: absolute;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 100%;
}

.gallery-page .photo-img:hover a {
    height: 100%;
}

.gallery-page .photo-img h3 {
    float: left;
    padding: 15px 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 100%;
}

.gallery-page .photo-img:hover a::before {
    opacity: 0.8;
}

.gallery-page .photo-img a::before {
    background: rgba(0, 0, 0, 0) linear-gradient(90deg, #0c72c7, #d32eb2, #0c72c7) repeat scroll -100% 0 / 200% 100%;
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 100%;
}

#footer {
    float: left;
    width: 100%;
}

.wel-image .photo-img img {
    border-radius: 10px;
    max-width: 100%;
}

.wel-image .photo-img {
    display: table;
    margin: 0 auto;
    position: relative;
}

.wel-image .photo-img::before {
    background: #000 none repeat scroll 0 0;
    border-radius: 10px;
    content: none;
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}

.wel-image .photo-img a {
    border-radius: 10px;
    float: left;
    height: 200px;
    overflow: hidden;
    position: relative;
    width: 350px;
}

.wel-image .photo-img a::before {
    background: #000 none repeat scroll 0 0;
    border-radius: 10px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 100%;
}

.wel-image:hover .photo-img a::before {
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(90deg, rgb(21, 134, 171) 0%, rgb(136, 68, 201) 53%, rgb(250, 2, 230) 100%) repeat scroll 0 0;
    opacity: 0.7;
}

.wel-image .photo-img a::after {
    color: #fff;
    content: "";
    font-family: ionicons;
    font-size: 28px;
    left: 50%;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    z-index: 9;
}

.wel-image:hover .photo-img a::after {
    opacity: 1;
    top: 50%;
    /*transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-webkit-transform: rotate(-30deg);*/
}

.innerpage ul.band-outer li {
    float: left;
    margin: 0 0 45px;
    width: 33.3%;
}

ul.band-outer .block-image .team-img {
    display: table;
    margin: 0 auto;
}

ul.band-outer .block-image .team-img img {
    max-width: 100%;
}

ul.band-outer li .team-body {
    text-align: center;
}

ul.band-outer li .team-body a.title.name {
    color: #b6238b;
    float: left;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0 5px;
    width: 100%;
}

ul.band-outer li .team-body .position {
    float: left;
    font-size: 15px;
    min-height: 50px;
    padding: 3px 0;
    text-align: center;
    width: 100%;
}

ul.band-outer li .team-body a.read-more.link {
    color: #e012e0;
    float: left;
    font-size: 15px;
    font-weight: bold;
    padding-top: 10px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 100%;
}

.innerpage ul.band-outer {
    float: left;
    margin: 60px 0;
    width: 100%;
}

.innerpage .team-body .social-list {
    float: left;
    width: 100%;
}

.innerpage .team-body .social-list a.item {
    padding: 0 10px;
    position: relative;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.innerpage .team-body .social-list a.item:hover {
    color: #e012e0;
}

.innerpage ul.venue-link {
    margin: 15px 0 40px;
}

.innerpage ul.venue-link li {
    float: left;
    padding: 10px 25px;
    position: relative;
    width: 50%;
}

.innerpage ul.venue-link li::before {
    color: #bc37b6;
    content: "\f46c";
    font-family: ionicons;
    font-size: 16px;
    left: 0;
    position: absolute;
}

.image-band .single-title-name {
    color: #d914de;
    float: left;
    font-size: 25px;
    font-weight: bold;
    padding: 10px 0;
    width: 100%;
}

.image-band .single-position {
    color: #000;
    float: left;
    font-size: 17px;
    width: 100%;
}

.single-band-page .image-band {
    float: left;
    width: 38%;
    margin-right: 35px;
}

.single-band-page .single-main-info {
    display: table;
    line-height: 30px;
}

.innerpage .single-band-page {
    float: left;
    margin: 50px 0;
    width: 100%;
}

.single-band-page .image-band img {
    max-width: 100%;
}

.single-photo-page {
    float: left;
    margin: 60px 0;
    width: 100%;
}

.item .team-img a.link {
    border-radius: 50%;
    float: left;
    height: 200px;
    overflow: hidden;
    position: relative;
    width: 200px;
}

.item .team-img a.link::before {
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(0deg, rgb(69, 197, 38) 10%, rgb(143, 207, 91) 44%, rgb(217, 216, 143) 59%, rgb(216, 121, 100) 71%, rgb(214, 25, 57) 90%) repeat scroll 0 0;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 100%;
}

.item .team-img a.link:hover::before {
    background-position: -200px 0;
    opacity: 0.6;
}

ul.band-outer li .team-body a.read-more.link:hover {
    color: #000;
}

.single-photo-page .inner-photo h4 {
    float: left;
    font-size: 25px;
    width: 100%;
}

.single-photo-page .inner-photo .wel-image {
    float: left;
    margin: 0 13px 30px;
    position: relative;
    width: 31%;
}

.single-photo-page .inner-photo {
    float: left;
    margin: 0 0 30px;
    width: 100%;
}

.single-photo-page .inner-photo .wel-image h4 {
    bottom: 0;
    display: table;
    float: none;
    font-size: 16px;
    left: 30px;
    padding: 20px 32px 20px 0;
    position: absolute;
    text-align: left;
    width: auto;
    z-index: 9;
}

.single-photo-page .inner-photo .wel-image h4 a {
    color: #fff;
    line-height: 26px;
}

.single-photo-page #jssor_1 img {
    /*height: auto !important;*/
    left: 50% !important;
    max-width: 100%;
    top: 50% !important;
    transform: translate(-50%, -50%);
    width: auto !important;
}

.single-photo-page .inner-video {
    float: left;
    width: 100%;
}

form.wpcf7-form .wpcf7-mail-sent-ok {
    float: left;
    margin-top: 0;
    text-align: center;
    width: 100%;
}

ul.commet .submitsend input.wpcf7-submit:focus,
ul.commet .submitsend input.wpcf7-submit:hover {
    outline: none;
}


/* inner-banner */

.bannertitleimg header {
    height: 330px;
}

.bannertitleimg .banner-inner_page {
    left: 50%;
    position: absolute;
    top: 220px;
    transform: translateX(-50%);
}

.bannertitleimg .banner-inner_page h1::before {
    content: none;
}

.bannertitleimg .banner-inner_page h1 {
    color: #fff;
    padding: 0;
}

.bannertitleimg header .menubar::before {
    background: #fff -moz-linear-gradient(90deg, rgb(151, 117, 183) 0%, rgb(190, 116, 189) 100%) repeat scroll 0 0;
    background: #fff -webkit-linear-gradient(90deg, rgb(151, 117, 183) 0%, rgb(190, 116, 189) 100%) repeat scroll 0 0;
    background: #fff -ms-linear-gradient(90deg, rgb(151, 117, 183) 0%, rgb(190, 116, 189) 100%) repeat scroll 0 0;
    opacity: 0.7;
    /*content: none;*/
}

.single-blog-page .sing-cont-inner {
    float: left;
    margin: 0 0 30px;
    width: 100%;
}

body input:focus,
body input:hover,
body textarea:focus,
body textarea:hover {
    outline: none;
}

.page-tour-dates .lunafish-outer {
    margin: 50px 0 0;
}


/* tour-dates */

.page-tour-dates .event-new-field {
    background: #f5f5f5 none repeat scroll 0 0;
    float: left;
    margin: 0 0 15px;
    width: 100%;
}

.page-tour-dates .event-new-field .event-date-field {
    float: left;
    padding: 40px 20px;
    width: 20%;
}

.page-tour-dates .event-new-field .event-title-link {
    float: left;
    padding: 45px 20px;
    width: 30%;
}

.page-tour-dates .event-new-field .event-loca-link {
    float: left;
    padding: 45px 20px;
    width: 30%;
}

.page-tour-dates .event-new-field .event-booking {
    float: left;
    padding: 62px 20px;
    text-align: center;
    width: 20%;
}

.page-tour-dates .event-new-field .event-date-field .eve-date {
    color: #333;
    display: table;
    font-size: 35px;
    font-weight: bold;
    margin: 0 auto;
}

.page-tour-dates .event-new-field .event-date-field .eve-month {
    color: #606c7a;
    float: left;
    text-align: center;
    width: 100%;
}

.page-tour-dates .event-new-field .event-title-link a {
    float: left;
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 10px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 100%;
}

.page-tour-dates .event-new-field .event-title-link a:hover {
    color: hsl(311, 84%, 37%);
}

.page-tour-dates .event-new-field .event-loca-link .location {
    float: left;
    font-size: 16px;
    font-style: normal;
    padding-bottom: 10px;
    padding-left: 20px;
    position: relative;
    width: 100%;
}

.page-tour-dates .event-new-field .event-loca-link .location::before {
    content: "\f041";
    font-family: fontawesome;
    left: 0;
    position: absolute;
}

.page-tour-dates .event-new-field .event-loca-link .outer-linl {
    float: left;
    padding-left: 20px;
    position: relative;
    width: 100%;
}

.page-tour-dates .event-new-field .event-loca-link .outer-linl::before {
    content: "\f0ac";
    font-family: fontawesome;
    font-style: normal;
    left: 0;
    position: absolute;
}

.page-tour-dates .event-new-field .event-title-link i {
    color: #af0f92;
    float: left;
    width: 100%;
}

.page-tour-dates .event-new-field .event-booking .book-now {
    background: rgba(0, 0, 0, 0) linear-gradient(90deg, #0c72c7, #d32eb2, #0c72c7) repeat scroll -100% 0 / 200% 100%;
    border: 0 solid;
    border-radius: 35px;
    color: #fff;
    font-size: 18px;
    margin: 7px 0;
    padding: 9px 30px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.page-tour-dates .lunafish-outer h2.title-events {
    font-size: 30px;
}

.page-tour-dates .event-new-field .event-booking .book-now:hover {
    background-position: -200% 0;
}

.page-tour-dates .lunafish-outer h2.title-events {
    font-size: 30px;
    margin: 0 0 20px;
}

.page-tour-dates .lunafish-outer h2 {
    font-size: 30px;
    margin: 50px 0 10px;
}

.page-tour-dates .lunafish-outer .outer-past-event {
    float: left;
    width: 100%;
}

.page-tour-dates .lunafish-outer .outer-past-event .event-title-link {
    width: 40%;
}

.page-tour-dates .lunafish-outer .outer-past-event .event-loca-link {
    width: 40%;
}

.contact-cap .wpcf7-captchac {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.social-share-blog .social-header-bar.social-header-bar-center {
    display: table;
    left: -10px;
    padding-top: 20px;
    position: relative;
    text-align: left;
}

.social-share-blog ul li a::before {
    color: #333;
    font-size: 20px;
}

.social-share-blog ul li a {
    width: 30px;
}

.social-share-blog ul.heateor_sss_sharing_ul {
    display: table;
    float: none;
    left: 0 !important;
    top: 10px;
    width: auto;
}

.single-band h3 {
    margin: 0;
    padding-left: 40px;
}

.single-band h3::before {
    left: 0;
}

.single-band .sliderimage .alignright {
    margin: 40px 0 20px 20px;
}

.accordion-section-content {
    display: none;
    float: left;
    margin: 10px 0 0;
    width: 100%;
}

.accordion {
    border-radius: 3px;
    float: left;
    margin: 0 0 40px;
    width: 100%;
}

.accordion .accordion-section-title {
    background-color: #ededed;
    border-radius: 0 3px;
    color: #333;
    display: inline-block;
    font-size: 17px;
    margin: 10px 0 0;
    padding: 10px 0 10px 60px;
    position: relative;
    text-transform: capitalize;
    transition: all 0.15s linear 0s;
    -moz-transition: all 0.15s linear 0s;
    -webkit-transition: all 0.15s linear 0s;
    width: 100%;
}

.accordion .accordion-section-title::after {
    background: #8cc43f none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 45px;
}

.accordion .accordion-section-title::before {
    /*background-color: #8cc43f;*/
    border-radius: 3px 0 0 3px;
    color: #fff;
    content: "";
    font-family: fontawesome;
    font-size: 10px;
    height: auto;
    left: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 9;
}

.accordion .accordion-section-title.active::before {
    content: "";
    font-size: 10px;
    margin-right: 15px;
}


/* Livermore */

.em-location-map-container {
    width: 100% !important;
}

.single-event .content-inner {
    float: left;
    margin: 40px 0;
    position: relative;
    width: 100%;
}

/* .single-event .content-inner .single-event-cont {
    background: hsl(0, 0%, 100%) none repeat scroll 0 0;
    box-shadow: 0 1px 6px 1px hsl(0, 0%, 55%);
    padding: 30px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 32%;
} */

.single-event .content-inner .single-event-cont h2 {
    font-size: 20px;
}

.single-event .content-inner .single-event-cont h2 {
    border-bottom: 1px solid;
    font-size: 16px;
    margin: 0 0 20px;
    padding: 0 0 10px;
}

.single-event .content-inner .single-event-cont p {
    color: hsl(311, 84%, 37%);
    float: left;
    font-style: normal;
    width: 100%;
}

.single-event .content-inner .single-event-cont .event-loca-link {
    float: left;
    width: 100%;
}

.single-event .content-inner .single-event-cont p i {
    font-style: normal;
}

.single-event .content-inner .single-event-cont .event-des p {
    color: hsl(0, 0%, 20%);
    font-weight: bold;
}

.single-event-cont .event-loca-link i.location::before {
    content: "";
    font-family: fontawesome;
    left: 0;
    position: absolute;
}

.single-event-cont .event-loca-link i.location {
    float: left;
    font-style: normal;
    padding-left: 20px;
    position: relative;
    width: 100%;
}

.single-event .content-inner .back-button a {
    color: hsl(311, 84%, 37%);
    display: table;
    font-weight: bold;
    margin: 0 0 10px;
    padding-left: 25px;
    position: relative;
}

.single-event .content-inner .back-button a::before {
    content: "\f177";
    font-family: fontawesome;
    left: 0;
    position: absolute;
}

.events .event-page-button {
    float: left;
    margin: 30px 0 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.events .event-page-button a {
    background: hsl(90, 72%, 60%) none repeat scroll 0 0;
    border-radius: 50px;
    color: hsl(0, 0%, 0%);
    font-size: 18px;
    font-weight: bold;
    padding: 12px 40px;
    text-transform: capitalize;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.events .event-page-button a:hover {
    background: hsl(45, 100%, 44%) none repeat scroll 0 0;
}

.events .event-details p span {
    padding: 0 0 0 10px;
}


/*VIDEO BG*/

.video-clips .mfp-bg {
    z-index: 99999;
}

.video-clips .mfp-wrap {
    z-index: 99999;
}


/*
.YouTubePopUp-Wrap .YouTubePopUp-Content iframe {
    height: 540px !important;
    max-width: 100%;
    top: 60px;
    width: 100%;
}
.YouTubePopUp-Wrap .YouTubePopUp-Content{max-width: 100%;}

.tp-parallax-wrap a i {
    padding: 20px;
    text-align: center;
}
*/

.YouTubePopUp-Wrap .YouTubePopUp-Content {
    max-width: 80%;
}

.YouTubePopUp-Wrap {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.band ul.team_list {
    -moz-box-pack: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    float: left;
    width: 100%;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    body h1::before {
        width: 60%;
    }

    ul.band-outer .block-image .team-img {
        display: block;
    }

    .gallery-page .photo-img {
        display: block;
    }

    .page-gallery .gallery-page .photo-img {
        display: table;
    }

    .page-video-clips .sliderimage {
        overflow: hidden;
    }

    .banner-home {
        overflow: hidden;
    }
}

_:-ms-lang(x),
body h1::before {
    width: 50%;
}

_:-ms-lang(x),
ul.band-outer .block-image .team-img {
    display: block;
}

_:-ms-lang(x),
.page-the-band ul.band-outer .block-image .team-img {
    display: table;
}

_:-ms-lang(x),
.gallery-page .photo-img {
    display: block;
}

_:-ms-lang(x),
.page-gallery .gallery-page .photo-img {
    display: table;
}

_:-ms-lang(x),
.page-video-clips .sliderimage {
    overflow: hidden;
}

_:-ms-lang(x),
.banner-home {
    overflow: hidden;
}

select.wpcf7-select {
    border: 1px solid #ccc;
    color: #c3c3c3;
    padding: 10px 20px;
    width: 100%;
}

.contact-page h4 {
    text-transform: uppercase;
}

#yrc-shell-0 .yrc-item-list .yrc-core .yrc-video.yrc-item {
    margin-bottom: 25px;
}

.innerpage .yrc-sections {
    float: left;
}

.yrc-full-scale.yrc-thumb {
    margin: 0 0 15px;
}

div#youmax-small-code {
    padding: 40px 0;
}

.wel-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.yu2fvl-overlay {
    z-index: 999;
    background: rgba(0, 0, 0, .5);
}

.yu2fvl {
    z-index: 999999;
}

button.yu2fvl-close {
    position: absolute;
    background: white;
    border: 0;
    border-radius: 25px;
    top: -10px;
    height: 25px;
    width: 25px;
    line-height: normal;
    padding: 6px;
    color: red;
}

button:focus {
    outline: none;
}

ul.yrc-menu-items {
    margin: 0 auto 40px;
    text-align: center;
    display: table;
    float: none;
    width: auto;
}

#yrc-shell-0 .yrc-menu li.more-btn {
    background-image: -moz-linear-gradient(90deg, #1586ab 0, #8844c9 53%, #fa02e6 100%);
    background-image: -webkit-linear-gradient(90deg, #1586ab 0, #8844c9 53%, #fa02e6 100%);
    background-image: -ms-linear-gradient(90deg, #1586ab 0, #8844c9 53%, #fa02e6 100%);
    background-position: 100% center;
    border-radius: 50px;
    color: #fff;
    display: table;
    font-size: 19px;
    margin: 50px 0;
    padding: 8px 28px;
    position: relative;
    transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    float: left;
    margin: 20px 10px;
}

.yrc-content ul li {
    background-image: -moz-linear-gradient(90deg, #1586ab 0, #8844c9 53%, #fa02e6 100%);
    background-image: -webkit-linear-gradient(90deg, #1586ab 0, #8844c9 53%, #fa02e6 100%);
    background-image: -ms-linear-gradient(90deg, #1586ab 0, #8844c9 53%, #fa02e6 100%);
    background-position: 100% center;
    border-radius: 50px;
    color: #fff;
    display: table;
    font-size: 19px;
    margin: 50px 0;
    padding: 8px 28px;
    position: relative;
    transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    float: left;
    margin: 20px 10px !important;
    color: #fff !important;

}

#yrc-shell-0 .yrc-item a {
    color: #000 !important;
}

.yrc-playlist-item .yrc-item-meta span.pb-block {
    color: #000 !important;
}

.yrc-name-date a.yrc-video-link {
    color: #000 !important;
}

figure.yrc-thumb.pb-inline.yrc-full-scale {
    height: 140px;
    object-fit: cover;
}

.yrc-thumb img {
    object-fit: cover;
    height: 140px;
}

#yrc-shell-0 .yrc-item a {
    font-size: 19px;
    font-weight: 600;
}

.yrc-shell ul.yrc-core {
    padding: 0;
    -moz-box-pack: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

.yrc-item-list {
    margin: 0 auto !important;
    display: table;
}

.uai.userway_dark {
    bottom: 100px;
}



.gallery-page .photo-img {
    display: table;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.gallery-page .photo-img img {
    border-radius: 20px;
    max-width: 100%;
    height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width:400px) {
    .gallery-page .photo-img img {
        height: 450px;
    }
}



/* GALLERY PAGE IMAGE CROP ISSUE CSS CODE START :::::::::::::::::::::::::: */


/* .single-photo-page #jssor_1 div:nth-child(4) {
    top: 50% !important;
}

.single-photo-page #jssor_1 div:nth-child(5) {
    top: 50% !important;
} */

/* .single-photo-page #jssor_1 div:nth-child(2) .inner-new img {
    object-fit: contain;
} */

.single-photo-page #jssor_1 img {
    object-fit: contain;
}

/* GALLERY PAGE IMAGE CROP ISSUE CSS CODE END :::::::::::::::::::::::::: */


/* TOUR DATES EVENTS CSS CODE START:::::::::::::::::::::::::: */

/* 
.event-box {
    box-shadow: 1px 3px 6px #eee;
    padding: 17px;
} */

.event-names .event-main .event-box {
    box-shadow: 1px 3px 6px #eee;
    padding: 17px;
    border: 1px solid #ccc;
}

.event-main .event-box .event-info h4 {
    display: flex;
    margin: 0px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    padding: 5px 0 5px;
}

.event-main .event-box .event-info h4 a {
    color: #000 !important;
    text-align: left !important;
}


/* .event-main .event-box .event-info .external-link a {
    font-weight: 700;
    color: #4a5664 !important;
} */

.event-main .event-box .event-info .external-link a {
    background-image: -webkit-linear-gradient(90deg, #1586ab 0%, #8844c9 53%, #fa02e6 100%);
    background-position: 100% center;
    border-radius: 50px;
    color: #fff !important;
    display: table;
    font-size: 19px;
    margin: 10px 0;
    padding: 8px 28px;
    position: relative;
    transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
}

.event-main .event-box .event-info .external-link a:hover {
    background-position: 0 49px;
}

.event-main .event-box .event-date {
    color: #bc37b6;
    font-size: 15px;
    text-transform: uppercase;
}

.event-main .event-box .event-info .external-link a span {
    padding-left: 5px;
    color: #bc37b6;
}

.test-event .em-events-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    padding-bottom: 60px;
}

.test-event .em-events-list h2 {
    display: none !important;
}

.test-event .em-events-list {
    display: flex;
    justify-content: center !important;
}

.page-id-289 h3.year-title::before {
    display: none !important;
}


a[href="seraphinite"],
div[class="seraphinite"],
span[class*="seraphinite"] {
    display: none !important;
}



/* EVENT PAGE CSS CODE START::::::::::::::::::::::::::  */

.event-loc-single .em.em-location-map-container {
    height: 500px !important;
}

.single-event .content-inner .single-event-cont {
    background: hsl(0, 0%, 100%) none repeat scroll 0 0;
    box-shadow: 0 1px 6px 1px hsl(0, 0%, 55%);
    padding: 30px;
    position: relative;
    width: 32%;
    height: fit-content !important;
    display: table;
    margin-top: -37%;
    left: auto;
    margin-right: 0;
    margin-left: auto;
    right: -40px;
}

/* EVENT PAGE CSS CODE END::::::::::::::::::::::::::  */



.footer ul.foot_menu>li {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer ul.foot_menu>li section#block-5 {
    display: none;
}

.footer li.wp-social-link a {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 38px;
    padding: 5px;
    text-align: center;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 38px;
}

.footer li.wp-social-link a svg {
    fill: #52a823 !important;
    width: 100% !important;
    height: 100% !important;
}