/** 
	* Filename:     global.css
	* Version:      1.0.0 (Tue 26 Mar 2019)
	* Website:      https://www.zymphonies.com
	* Description:  Global Styles
	* Author:		support Team
					support@zymphonies.com
**/
@import url("https://fonts.googleapis.com/css?family=Inconsolata:400,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
	font-family: 'Kaufmann';
	src: url('/themes/charity_zymphonies_theme/font/kaufmann_regular.ttf'); 
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/*Variables*/
/*Header*/
/*Menu Color*/
/*Mixins*/
/**
 * @file
 * Styles for system messages.
 */
.messages {
  background: no-repeat 10px 17px;
  /* LTR */
  border: 1px solid;
  border-width: 1px 1px 1px 0;
  /* LTR */
  border-radius: 2px;
  padding: 10px 20px 10px 20px;
  /* LTR */
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 5px 0px; }

.messages + .messages {
  margin-top: 1.538em; }

.messages__list {
  list-style: none;
  padding: 0;
  margin: 0; }

.messages__item + .messages__item {
  margin-top: 0.769em; }

/* See .color-success in Seven's colors.css */
.messages--status {
  color: #325e1c;
  background-color: #f3faef;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
  /* LTR */
  box-shadow: -8px 0 0 #77b259;
  /* LTR */ }

/* See .color-warning in Seven's colors.css */
.messages--warning {
  background-color: #fdf8ed;
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;
  /* LTR */
  color: #734c00;
  box-shadow: -8px 0 0 #e09600;
  /* LTR */ }

/* See .color-error in Seven's colors.css */
.messages--error {
  background-color: #fcf4f2;
  color: #a51b00;
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  /* LTR */
  box-shadow: -8px 0 0 #e62600;
  /* LTR */ }

.messages--error p.error {
  color: #a51b00; }

/*FORM*/
/**
 * @file
 * Visual styles for form components.
 */
form .field-multiple-table {
  margin: 0; }

form .field-multiple-table .field-multiple-drag {
  width: 30px;
  padding-right: 0;
  /*LTR*/ }

form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: .5em;
  /*LTR*/ }

form .field-add-more-submit {
  margin: .5em 0 0; }

/*TABS*/
div.tabs {
  margin: 1em 0; }

ul.tabs {
  list-style: none;
  margin: 0 0 0.5em;
  padding: 0; }

.tabs > li {
  display: inline-block;
  margin-right: 0.3em;
  /* LTR */ }

.tabs a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  font-size: 13px;
  background: #e6e6e6;
  line-height: 100%;
  color: #444; }

.tabs a.is-active {
  background-color: #ff982c;
  color: #fff; }

.tabs a:focus,
.tabs a:hover {
  background-color: #ff8300;
  color: #fff; }

/**
 * @file
 * Seven styles for Tables.
 */
table {
  width: 100%;
  margin: 0 0 10px; }

caption {
  text-align: left;
  /* LTR */ }

th {
  text-align: left;
  /* LTR */
  padding: 10px 12px; }

thead th {
  background: #f5f5f2;
  border: solid #bfbfba;
  border-width: 1px 0;
  color: #333;
  text-transform: uppercase; }

tr {
  border-bottom: 1px solid #e6e4df;
  padding: 0.1em 0.6em; }

thead > tr {
  border-bottom: 1px solid #000; }

tbody tr:hover,
tbody tr:focus {
  background: #f7fcff; }

/* See colors.css */
tbody tr.color-warning:hover,
tbody tr.color-warning:focus {
  background: #fdf8ed; }

tbody tr.color-error:hover,
tbody tr.color-error:focus {
  background: #fcf4f2; }

td,
th {
  vertical-align: middle; }

td {
  padding: 10px 12px;
  text-align: left;
  /* LTR */ }

th > a {
  position: relative;
  display: block; }

/* 1. Must match negative bottom padding of the parent <th> */
th > a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: -10px;
  /* 1. */
  left: 0;
  right: 0;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.1s;
  transition: all 0.1s; }

th.is-active > a {
  color: #004875; }

th.is-active img {
  position: absolute;
  right: 0;
  /* LTR */
  top: 50%; }

th.is-active > a:after {
  border-bottom-color: #004875; }

th > a:hover,
th > a:focus,
th.is-active > a:hover,
th.is-active > a:focus {
  color: #008ee6;
  text-decoration: none; }

th > a:hover:after,
th > a:focus:after,
th.is-active > a:hover:after,
th.is-active > a:focus:after {
  border-bottom-color: #008ee6; }

td .item-list ul {
  margin: 0; }

td.is-active {
  background: none; }

/* Force browsers to calculate the width of a 'select all' TH element. */
th.select-all {
  width: 1px; }

/**
 * Captions.
 */
.caption {
  margin-bottom: 1.2em; }

/**
 * Responsive tables.
 */
@media screen and (max-width: 37.5em) {
  /* 600px */
  th.priority-low,
  td.priority-low,
  th.priority-medium,
  td.priority-medium {
    display: none; } }
@media screen and (max-width: 60em) {
  /* 920px */
  th.priority-low,
  td.priority-low {
    display: none; } }
p {
  margin: 0 0 20px 0; }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-weight: 500;
  margin: 10px 0;
  line-height: 120%; }

h1, .h1 {
  font-size: 2em; }

h2, .h2 {
  font-size: 1.5em;
  margin-bottom: 20px; }

h3, .h3 {
  font-size: 1.2em; }

h4, .h4 {
  font-size: 1.1em; }

img {
  /*max-width: 100%;*/ }

em {
  font-style: italic; }

strong, b {
  font-weight: bold; }

h2.title {
  color: #c9a25a; }

.custom-block-title {
  text-align: left;
  margin: 20px 0;
  overflow: hidden; }
  .custom-block-title h2 {
    font-size: 1.5em;
    color: #000;
    margin-bottom: 5px; }

.pricing-card-title {
  color: #008000; }

a {
  color: #c9a25a; }
  a:hover {
    color: #b5904b;
    text-decoration: none; }

ol, ul {
  padding-left: 20px;
  margin-bottom: 20px; }
  ol li, ul li {
    list-style: outside; margin-bottom:10px;}

.list-unstyled li {
  list-style: none; }

ol li {
  list-style-type: decimal; }

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

.form-email,
.form-text,
.form-textarea {
  border: 1px solid #e8e8e8;
  background: transparent; }

.block {
  margin-bottom: 10px; }

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: #212529;
  overflow-x: hidden;
  font-weight: 300;
  background: #f7f7fa;
  /*background: url(../images/bg.png) fixed center no-repeat;*/
  text-align: left; }

/*Page title*/
.region-page-title h1 {
  margin: 20px 0; }

/*Footer Widget*/
.footerwidget {
  background: #108441;
  color: #86b59a;
  padding: 20px 0;
  border-top: 1px solid #f7f7f7; }
  .footerwidget h2.title {
    color: #fff; }
  .footerwidget .left {
    float: left;
    margin: 10px 10px 0 0; }

.copyright {
    background: #000;
    text-align: center;
    color: #fff;
    padding: 0!important;
    border-top: 1px solid #222;
    padding-top: 10px!important;
    }

/*Google Map*/
.map-and-address h2.title {
  display: none; }

.google_map p, .google_map .block {
  margin: 0; }
.google_map iframe {
  display: block; }

/*Social Media*/
.footer-menu {
  margin: 0;
  border: 0;
  background: url('../images/social-media-bg.png');
  color: #fff;
  background-size: cover;
  padding: 80px 0; }

.social-media {
  padding: 2px 0; }
  .social-contect {
  padding: 2px 0;text-align:right; }
  .social-media a {
    line-height: 100%;
    font-size: 1em;
    display: inline-block;
    padding: 4px 8px;
    width: 26px; }
    .social-media a:hover {
      color: #ff8300; }

/*Form*/
input, button, select, textarea {
  padding: 6px;
  border: 1px solid #e3e3e3; }

.contact-message-form label {
  display: block; }
.slider-caption a.more-link{display:none;}
.btn,
.node-readmore a,
.flexslider .more-link,
input[type="submit"] {
  background: #ff982c;
  cursor: pointer;
  color: #fff;
  border: 0;
  padding: 14px 30px;
  line-height: 100%;
  margin-right: 2px;
  display: inline-block;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.btn:hover,
.node-readmore a:hover,
.flexslider .more-link:hover,
input[type="submit"]:hover {
  background: #ff8300;
  color: #fff; }

/*Comment*/
.comment-wrap {
  overflow: hidden;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F5F5F5; }
  .comment-wrap .author-details {
    float: left;
    width: 20%; }
  .comment-wrap .author-comments {
    padding-left: 5px;
    float: left;
    width: 80%; }
    .comment-wrap .author-comments h3 {
      margin-top: 10px; }
    .comment-wrap .author-comments p {
      margin-bottom: 10px; }

.comment-submitted {
  padding: 5px 10px;
  border: 1px solid #eee;
  display: inline-block;
  line-height: 100%; }

/*links Inline*/
ul.links.inline li {
  display: inline-block;
  padding-right: 10px; }

/*Sidebar Block*/
.sidebar {
  background: #fff;
  padding: 15px; }
  .sidebar .region h2.title {
    padding: 5px 0;
    margin: 0; }
  .sidebar .region .content {
    padding: 10px 0; }

.region-content {
  min-height: 300px; }

.path-frontpage .region-content {
  min-height: auto; }

/*Markup generated by Form API.*/
.form-item,
.form-actions {
  margin-top: 1em;
  margin-bottom: 1em; }

tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0; }

.form-composite > .fieldset-wrapper > .description,
.form-item .description {
  font-size: 0.70em;
  line-height: 150%; }

label.option {
  display: inline;
  font-weight: normal; }

.form-composite > legend,
.label {
  display: inline;
  font-size: inherit;
  font-weight: bold;
  margin: 0;
  padding: 0; }

.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em; }

.marker {
  color: #e00; }

abbr.tabledrag-changed,
abbr.ajax-changed {
  border-bottom: none; }

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid red; }

.owl-theme .owl-dots .owl-dot span {
  background: #b5b5b5;
  height: 7px;
  width: 7px; }

.team,
.topwidget,
.footer,
.bottom-widget,
.path-frontpage .main-content,
.services,
.products,
.footer,
.features,
.services,
.updates,
.copyright,
.clients {
  padding: 40px 0; }

.main-content {
  padding: 0 0 50px 0;background:#fff; }

.features {
  background-color: #fff2e0; }
  .features .region {
    overflow: hidden; }

.footer tbody tr:hover, .footer tbody tr:focus {
  background: none; }

.clients .region ul li {
  display: inline-block;
  width: 100%;
  text-align: center; }
  .clients .region ul li img {
    max-width: 200px; }

.services {
  text-align: center;background: #fff; }
  .services .services-list .block {
    padding: 20px;
    background: #fff;
    margin-bottom: 30px; }
  .services .region-services-first .block:first-child {
    background: #fff; }

/* Testimonials */
.testimonials-wrap {
  background: #fafafa;
  border-top: solid 1px #e3e3e3;
  border-bottom: solid 1px #e3e3e3;
  padding: 20px 0;
  text-align: center;
  font-size: 1em;
  line-height: 160%; }

.region-testimonials {
  max-width: 600px;
  margin: 0 auto; }

.testimonials-pic {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px; }

.testimonials-pic img {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.testimonials-author {
  padding: 0 5px;
  font-size: .75em;
  color: #555; }

/*Price*/
.price-table .card-header {
  border: 0;
  padding: 20px 0; }
.price-table ul li {
  list-style: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px; }

/*Front Page*/
.path-frontpage .feed-icon {
  display: none; }

/*updates*/
.updates {
  background: #000;
  text-align: center; }
  .updates .updates-list .region {
    background: #efefef;
    overflow: hidden;
    padding: 10px;
    border: 1px solid #eaeaea; }
  .updates .custom-block-title h2 {
    color: #fff; }

/*Bottom Widgets*/
.bottom-widget {
  background: #fff; color:#fff;}
/*  .bottom-widget h2.title, .bottom-widget * {
    color: #7964ad; }*/

.path-frontpage .bottom-widgets {
  padding: 20px 0; }

/*Header*/
.top-nav {
  background: #fff0d4;
  padding: 0px;
  font-size: 1em;
  position: relative;
  -moz-box-shadow: 1px 1px 4px #dedede;
  -webkit-box-shadow: 1px 1px 4px #dedede;
  box-shadow: 1px 1px 0px #dedede; }
  .top-nav .region-message,
  .top-nav .region-email {
    display: inline-block; }
  .top-nav .fa {
    padding: 0 5px; }
  .top-nav .block, .top-nav p {
    margin: 0; }

.header {
  padding: 7px 0;
  text-align: left; }

.main-header nav {
  border: 0;
  margin: 0;
  position: relative;
  min-height: auto;
  background: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0; }
.main-header .region {
  position: relative;
  padding: 25px 0; }
.main-header .block {
  margin: 0; }
.main-header p, .main-header .block {
  margin: 0; }

/*Region Header*/
.site-branding {
  margin: 0; }

.region-header {
  padding: 12px 0; }

.region-header .brand {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5em; }
  .region-header .brand a {
    display: block;
    text-transform: uppercase;
    font-weight: 400; }
    .region-header .brand a img {
      vertical-align: middle; }
  .region-header .brand .site-branding__slogan {
    font-size: .5em;
    text-transform: uppercase;
    vertical-align: top; }

/*Search Form*/
.search-block-form {
  margin: 0 auto; }

.region-search {
  width: 100%;
  display: inline-block;
  padding: 7px 0;
  vertical-align: middle; }

#search-block-form {
  display: table;
  width: 100%; }
  #search-block-form .form-item,
  #search-block-form .form-actions {
    display: table-cell;
    vertical-align: top; }
  #search-block-form .form-actions {
    width: 30px; }
  #search-block-form input.form-submit {
    background: url('../images/search.png?1532937786') no-repeat center #ff982c;
    font-size: 0;
    width: 100%;
    height: 30px;
    padding: 0 20px;
    vertical-align: top;
    -moz-border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0;
    border-radius: 0 20px 20px 0; }
    #search-block-form input.form-submit:hover {
      background-color: #ff8300;
      border-color: #ff8300; }
  #search-block-form input {
    width: 100%;
    height: 30px;
    -moz-border-radius: 20px 0 0 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px 0 0 20px; }

/*Breadcrumb*/
.breadcrumb {
  font-size: .85em;
  padding: 2px 0;
  margin: 0;
  display: inline-block; }
  .breadcrumb ul, .breadcrumb ol {
    padding: 0;
    margin: 0; }
    .breadcrumb ul li, .breadcrumb ol li {
      display: inline-block;
      padding: 0 8px; }
      .breadcrumb ul li:after, .breadcrumb ol li:after {
        content: " >";
        padding-left: 15px; }
      .breadcrumb ul li:last-child:after, .breadcrumb ol li:last-child:after {
        display: none; }

/*Flexslider*/
.flexslider {
  border: 0;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px; }
  .flexslider .slider-caption {
    display: none;
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 99;
    width: 60%;
    text-align: left;
    font-size: 1.2em;
    line-height: 150%;
    color: #fff;
    padding: 20px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px; }
  .flexslider .slider-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
  }
  .flexslider .slider-description {
       display: inline-block;
    clear: both;
    font-size: 1.4225rem;
    line-height: 33px;
    font-weight: 400; }
  .flexslider .slides li {
    position: relative; }
    .flexslider .slides li:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      /*background: rgba(0, 0, 0, 0.5);*/
      -moz-transition: all 2s;
      -o-transition: all 2s;
      -webkit-transition: all 2s;
      transition: all 2s; }
  .flexslider .flex-direction-nav {
    display: none;
    position: absolute;
    top: 50%;
    width: 100%; }
    .flexslider .flex-direction-nav li {
      list-style: none; }
    .flexslider .flex-direction-nav a {
      font-size: 0;
      padding: 10px; }
      .flexslider .flex-direction-nav a:before, .flexslider .flex-direction-nav a:after {
        color: #fff; }
  .flexslider .flex-control-paging li a {
    width: 8px;
    height: 8px;
    display: block;
    background: #fff;
    cursor: pointer;
    text-indent: -9999px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%; }
    .flexslider .flex-control-paging li a.flex-active {
      background: #eee; }
  .flexslider .flex-control-nav {
    bottom: 0; }

/*Menu*/
.navbar-toggle {
  cursor: pointer;
  float: right;
  background: none;
  border: 0;
  padding: 17px 0; }
  .navbar-toggle:focus {
    outline: none; }
  .navbar-toggle .fas {
    font-size: 2em;
    color: #000;
    border: 0;
    box-shadow: none; }

.navbar-toggle-close {
  position: absolute;
  right: 0;
  padding: 18px;
  font-size: 2em;
  color: #f00;
  cursor: pointer;
  z-index: 99; }

.navbar-default .navbar-toggle {
  z-index: 999;
  margin-right: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: none;
  padding: 6px 6px; }
  .navbar-default .navbar-toggle .icon-bar {
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 1px;
    background-color: #212020; }
  .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background: none; }


.navbar-header.col-md-3 {
    max-width: 12%;
}
/*.header-wrap .header .container .row .col-md-9 {
    max-width: 88%!important;
}*/
.header-wrap .header .container .row .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 77%;
    max-width: 77%;
        margin-left: 120px;
}


nav h2 {
  display: none; }

.menu-base-theme {
  background: none; }
  .menu-base-theme ul {
    background: none; }
  .menu-base-theme li a {
    font-family: "Poppins", sans-serif;
    color: #fff;
    border-bottom: 1px solid #4c4a4a;
    line-height: 100%;
    padding: 24px 10px;
    font-size: 1.1em; }
    .menu-base-theme li a:hover, .menu-base-theme li a:focus, .menu-base-theme li a:active, .menu-base-theme li a.highlighted {
      background: none;
      color: #b5904b!important;
      line-height: 100%;
      padding: 24px 10px; }
    .menu-base-theme li a.sub-arrow {
      color: #999;
      font-size: 22px;
      padding: 5px;
      border-radius: 2px;
      border: 1px solid #DCDCDC;
      background: #EFEFEF; }
    .menu-base-theme li a span.sub-arrow {
      line-height: 120%;
      font-size: 2em; }

.region-primary-menu {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
  border-radius: 0px;
  position: fixed;
  top: 0;
  left: -100%;
  right: 100%;
  bottom: 0;
  width: auto;
  z-index: 99;
  transition: all .5s; }
  .region-primary-menu.expand {
    left: 0;
    right: 10%; }

/*Footer Menu*/
.region-footer-menu ul {
  margin: 10px 0;
  padding: 0; }
.region-footer-menu nav li {
  display: inline-block; }
  .region-footer-menu nav li a {
    display: block;
    padding: 2px 15px 2px 0; }

/*Top Menu*/
.top-menu {
  font-size: .75em;
  background: #313d48;
  color: #fff; }
  .top-menu .top-blocks {
    overflow: hidden; }
    .top-menu .top-blocks .region {
      padding: 10px 10px 10px 0; }
    .top-menu .top-blocks .social-media {
      padding: 9px 0; }
  .top-menu p, .top-menu .block {
    margin: 0; }
  .top-menu a {
    color: #fff; }

.region-top-menu ul {
  margin: 0;
  padding: 0; }
.region-top-menu nav li {
  display: inline-block; }
  .region-top-menu nav li a {
    padding: 2px 10px;
    text-transform: uppercase;
    line-height: 100%; }

/*Demo Typography*/
.bd-example {
  position: relative;
  padding: 20px;
  border: 2px solid #f7f7f9;
  background: #ececec; }

.highlight {
  padding: 20px;
  background-color: #ffffff; }
  .highlight pre {
    border: 0;
    background: none; }

.bd-example-type h1, .bd-example-type h2, .bd-example-type h3, .bd-example-type h4, .bd-example-type h5, .bd-example-type h6 {
  margin: 0; }
.bd-example-type .table td {
  padding: 15px 0;
  border-color: #eee; }
.bd-example-type .table tr:first-child td {
  border-top: 0; }
.topwidget#topwidget
{
    background-size: cover!important;
    background-repeat: no-repeat!important;
   height:450px;
}
.topwidget {
  text-align: center; }
  .topwidget .fa, .topwidget .fas {
    font-size: 3em; }
  .topwidget .topwidget-list .region .block {
/*    position: relative;
    background: #23232e;
    padding: 0px;
    margin-bottom: 30px;
    border: 1px solid #eee;*/
      color:#fff;
      text-align:left;
  }
    .topwidget .topwidget-list .region .block p:last-child {
      margin: 0; }
    .topwidget .topwidget-list .region .block img {
      display: block; }
  .topwidget .topwidget-list .region-topwidget-first .block {
    padding: 20px;
    position: relative; }
  .topwidget .btn {
    background: #17d017;
    border-radius: 20px; }
  .topwidget ul {
    margin: 0;
    padding: 0; }
    .topwidget ul li {
      list-style: none;
      padding-bottom: 6px;
      margin-bottom: 6px;
      border-bottom: 1px solid #dddddd42; }

/*----------------------------
	Contact page
-----------------------------*/
.contact-message-feedback-form {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 20px 30px; }

.contact-message-feedback-form .form-text,
.contact-message-feedback-form .form-email,
.contact-message-feedback-form .form-textarea {
  width: 100%; }

/*----------------------------
	User Login Form
-----------------------------*/
.user-login-form,
.user-form,
.user-pass {
  max-width: 500px;
  margin: 40px auto;
  border: 1px solid #e6e6e6;
  padding: 5px 20px;
  background: #fdfdfd; }
  .user-login-form .form-text,
  .user-login-form .form-email,
  .user-form .form-text,
  .user-form .form-email,
  .user-pass .form-text,
  .user-pass .form-email {
    width: 100%; }

.form-composite > .fieldset-wrapper > .description,
.form-item .description {
  color: #999;
  font-style: italic; }

/*----------------------------
	Maintenance
-----------------------------*/
.maintenance-page {
  background: url('../images/maintenance-bg.png?1532937786') #66CBFF center no-repeat;
  color: #fff;
  text-align: center;
  padding-top: 220px;
  padding-bottom: 100px;
  color: #000; }
  .maintenance-page .brand,
  .maintenance-page .name-and-slogan {
    display: inline-block;
    vertical-align: middle; }
  .maintenance-page .site-name a {
    color: #404040; }
  .maintenance-page .site-slogan,
  .maintenance-page .name-and-slogan {
    display: none; }

.maintenance-msg {
  margin: 20px 0;
  padding: 20px 30px;
  display: inline-block;
  color: #404040;
  border: 1px solid #fff;
  background: #f2f4cf;
  background: rgba(242, 244, 207, 0.88);
  -moz-box-shadow: 5px 5px 0px #fff;
  -webkit-box-shadow: 5px 5px 0px #fff;
  box-shadow: 5px 5px 0px #fff; }
  .maintenance-msg h1 {
    text-transform: uppercase;
    font-weight: bold; }

/*----------------------------
	Profile Page
-----------------------------*/
.path-user .profile > div {
  display: inline-block; }
.path-user .profile .label {
  display: block;
  color: #333; }
  
  
  
  
  
  
.call_header {
    padding-right: 1rem;
    font-weight: 700;
    height: 42px;
    color: #229a33 !important;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 6px 0px #ccc;
}
.call_header span {
    border-radius: 50%;
    padding: 9px 9px;
    position: relative;
    left: 1px;
    top: -4px;
    background: rgba(117,247,171,1);
}
.call_header {
    
}
.call_header {

}
span.phone-number{
background:transparent;
margin-left: 0px;
margin-top: 4px;
}
.path-frontpage .region-content ul.tabs{display:none;}
.webform-submission-contact-form-client-form .form-item {
    width: 250px;
    float: left;
    border:0px dashed red;
}
.webform-submission-contact-form-client-form input.form-text,
.webform-submission-contact-form-client-form input.form-tel,
.webform-submission-contact-form-client-form input.form-email
{
    width:250px;
    padding: 9px;
    margin: 0;
    background:#fff;
    color:#000;
}
#block-webform h2.title {
    color: #000;
    text-align: center;
}
.webform-submission-contact-form-client-form .form-item label{display:none;}
.path-frontpage .highlighted
{
    background: #f1f1f1;
    opacity: 0.8;
    height: 160px;
    margin: 0;
    padding: 10px;
}
.webform-submission-contact-form-client-form input#edit-submit
{
    margin-top:16px;
}
.path-frontpage .main-content
{
    /*background:url(/themes/charity_zymphonies_theme/images/pitta-birds.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#block-aboutbandhavgarh
{
/*    max-width:600px;
    padding:100px 0;
    clear:both;*/
}
#block-aboutbandhavgarh h2.title
{
    font-size: 2.5rem;
    font-weight: 700;
    color:#000;
}
#block-aboutbandhavgarh p
{
    color:#000;
}
#block-views-block-top-attractions-block-1 h2.title {
    font-weight: 700;
    font-size: 1.875rem;
    color: #3e3e3d;
}
.features {
    background: url(/themes/charity_zymphonies_theme/images/Top-ttractions.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#blazy-views-top-attractions-block-1-1 .views-field-title {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}
#blazy-views-top-attractions-block-1-1 .views-field-title a,
#blazy-views-top-attractions-block-1-1 .views-field-title span {
color:#fff;
font-size: 25px;
font-weight: 500;
}
.comment-submitted{display:none;}
.region-services-first h2.title
{
        font-size: 2.5rem;
    font-weight: 700;
    color: #3e3e3d;
    text-align:left;
}
#blazy-views-bandhavgarh-tours-block-1-2 .views-field-title,
#blazy-views-bandhavgarh-tours-page-1-1  .views-field-title
{
    position: absolute;
    bottom: 80px;
    width: 100%;
    transition: 0.8s all ease;
    color:#fff;
    font-size: 25px;
    font-weight: 500;
    text-align:center;
}
#blazy-views-bandhavgarh-tours-block-1-2 .views-field-view-node,
#blazy-views-bandhavgarh-tours-page-1-1 .views-field-view-node
{
    position: absolute;
    bottom: 30px;
    width: 100%;
    transition: 0.8s all ease;
    text-align:center;
}
.book-now a
{
    background: #FFB135;
    border-color: #FFB135;
    padding: 0.425rem 1.2rem;
    text-shadow: 0px 2px 3px #88570c;
    color:#fff;
        border-radius: .25rem;
}
.book-now a:hover
{
    background: #28a745;
}
.path-frontpage #bottom-widget {
    background: url(/themes/charity_zymphonies_theme/images/faq_back2.jpg);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}
#block-faqs h2.title
{
    color: #fff!important;
    font-size: 2.5rem;
    font-weight: 700;
}
#block-faqs h3 span
{
    color: #fff!important;
    font-size: 1.5rem;
    font-weight: 700;
}
#block-faqs h3
{
    border-top: 1px solid #666;
    padding-top: 15px;
}
#block-faq p span
{
    color:#fff!important;
}
#block-faqs .content
{
    max-width:900px;
}
.green-common, .more-link a, a.more-link {
    background: #c9a25a;
    border-color: #c9a25a;
    font-size: 15px;
    padding: 15px 30px;
    text-shadow: 2px 2px 3px #c9a25a;
    border-radius:5px;
	color:#fff;
	display: inline-block;
}
#footer ul{padding:0;}
#footer ul li{list-style:none;}
#footer {
    background:#000;
    color:#fff;
}
#footer a{color:#fff;}
#footer a:hover{color:#ccc;}



#block-generalinformation h2.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}
.card-nfooorma {
    height: 185px;
        background: #fff;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 7px 0px #9a9a9a;
}
.d-block {
    display: block!important;
    color: #000;
    font-size: 20px;
}
.card-nfooorma {
    height: 185px;
}
.card-nfooorma h5 {
    font-weight: 400;
    color:#000;
}
.footer_bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 0 15px;
}
.footer_links-sahre {
    background: #fff;
    border-radius: 2px;
}
.fooer_links ul li a {
    color: #3e3e3d;
    font-weight: 600;
}
fooetr_social-links span.facebook {
    background: #395A99;
}
.fooetr_social-links span {
    display: block;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    text-align: center;
    line-height: 41px;
    font-size: 19px;
    color: #fff;
}
#clients
{
    background: url(/themes/charity_zymphonies_theme/images/about-page-bk_09.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 150px 0;
}
#clients #block-aboutbandhavgarhcontentblock
{
    max-width:700px;
    font-size: 19px;
    line-height: 30px;
    color:#fff;
}
.path-guest-reviews #topwidget,
.path-blogs #topwidget,
.path-uttarakhand-tours #topwidget,.path-guest-feedback #topwidget
{
    background: url(/sites/default/files/2020-03/default-header-image_1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover!important;
    min-height: 130px;
}

.page-node-type-photo-gallery #topwidget{display:none;}
#block-aboutbandhavgarhheader h1
{
font-size: 50px;
    color: #fff;
    font-weight: 500;
}
#block-aboutbandhavgarhheader h3
{
    color: #ffa516;
    max-width: 470px;
    font-size: 40px;
    line-height: 35px;
    font-weight: 400;
    padding-top:20px;
    font-family:Kaufmann;
}
.region-topwidget-third
{
    max-width: 380px;
    float: right;
    background: #F1F1F1;
    padding: 20px;
}
.path-bandhavgarh-tours .header,
.path-user .header
{
    position: relative;
    bottom: 0px;
    z-index: 99;
    margin-top: 0px;
}
#block-charity-zymphonies-theme-page-title h1.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}
.breadcrumb{display:none;}
.kazirange_general.bg_grey {
    background-color: #f1f1f1;
    padding: 40px 40px;
}
.general_info_icon {
    display: flex;
    align-items: center;
}
.general_info_icon .info_icon_img {
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ccc;
    width: 78px;
    height: 78px;
    align-self: center;
    text-align: center;
    line-height: 78px;
    margin-right: 15px;
    padding-top: 10px;
}
.general_info_icon .info_icon_title {
    font-weight: 600;
    font-size: 18px;
    color: #3c3c3c;
}
.path-user ul.tabs {
    text-align: center;
}
.path-user #block-charity-zymphonies-theme-page-title h1.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
}
/*#block-charity-zymphonies-theme-page-title h1.page-title
{
    color:#fff;
    display:none;
}*/
.path-uttarakhand-tours #block-charity-zymphonies-theme-page-title h1.page-title,
.path-blogs #block-charity-zymphonies-theme-page-title h1.page-title
{
    color:#fff;
    display:block;
}
.path-uttarakhand-tours #block-charity-zymphonies-theme-page-title h1.page-title
{
    color:#000;
}
.path-guest-reviews h1.page-title,
.path-blogs h1.page-title
{
    color:#000!important;
}
.path-uttarakhand-tours .header {
    background: #fff;
}
.not-front .header-wrap
{
    background: #fff!important;
}
.not-front .region-primary-menu li > a,
.path-uttarakhand-tours .region-primary-menu > li > a {
    color: #000!important;
}
.path-frontpage .region-primary-menu li a
{
    /*color: #fff!important;*/
}
#block-atthelodge, #block-hotelinjageshwar
{
	text-align: center;
    margin-top: 50px;
    /*background: #f1f1f1;*/
    padding: 40px;
}
#block-atthelodge .col-md-6 h2
{
    position: absolute;
    bottom: 17px;
    padding: 15px 4%;
    color: #fff;
    z-index: 999;
    width: 91.5%;
    background: rgba(0,0,0,0.5);
    font-size: 20px;
}
#block-atthelodge .col-md-6 img
{
    margin-bottom: 30px;
}
#block-aboutjageshwar,
#block-hotelinjageshwar
{
	margin-top:70px;
}
#block-hotelinjageshwar .col-md-4 h4,
#block-hotelinjageshwar h2
{
	text-align:center;
}
#block-views-block-top-attractions-block-1 li.grid
{
	/*margin: 0;
    border: 1px solid #ccc;
    padding: 30px;
    height: 440px;
    box-shadow: 0px 0px 3px 0px #000;*/
	
	margin: 0 3% 50px 0;
    vertical-align: top;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 3px 0 #6c8088;
    padding: 15px 30px;
    border: 1px solid #ebf0f2;
    border-bottom: none;
	height: 440px;
	text-align:center;
}
.blazy--view--blogs li.grid
{
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 3px 0 #6c8088;
    border: 1px solid #ebf0f2;
    border-bottom: none;
}
.blazy--view--blogs li.grid .views-field-title,
.blazy--view--blogs li.grid .views-field-body,
.blazy--view--blogs li.grid .views-field-view-node
{
	padding: 5px 15px;
	    display: block;
}
.blazy--view--blogs li.grid .views-field-title h2 a
{
	color:#000;
	font-size:20px;
}
#blazy-views-top-attractions-page-1-1 li.grid, #blazy-views-top-attractions-page-2-1 li.grid
{
	margin: 0 3% 50px 0;
    vertical-align: top;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 3px 0 #6c8088;
    padding: 15px 30px;
    border: 1px solid #ebf0f2;
    border-bottom: none;
	text-align:center;
}
#blazy-views-top-attractions-page-1-1 .views-field-nothing .field-content a, #blazy-views-top-attractions-page-2-1 .views-field-nothing .field-content a
{
	font-size:20px;
	color:#000;
	font-weight:bold;
	padding-top:20px;
	display:inline-block;
}
#block-views-block-top-attractions-block-1 .views-field-nothing .field-content a
{
	font-size:20px;
	color:#000;
	font-weight:bold;
	padding-top:20px;
	display:inline-block;
}
#block-views-block-top-attractions-block-1
{
	margin-top:50px;
}
#block-views-block-top-attractions-block-1 h2
{
	text-align:center;
	font-size: 1.5em!important;
	font-weight: 500!important;

}
#block-views-block-top-attractions-block-1 .more-link
{
	text-align:center;
}
.page-node-type-webform #topwidget{display:none;}
.node--type-webform .field--name-body .col-md-4 .contact
{
	margin: 0 3% 50px 0;
    vertical-align: top;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 3px 0 #6c8088;
    padding: 15px 30px;
    border: 1px solid #ebf0f2;
    border-bottom: none;
    text-align: center;
	min-height:165px;
}
.node--type-webform .field--name-body .col-md-4 .contact h2
{
color:#000;
}
#block-aboutbandhavgarhheader
{
    display:none;
}
.path-frontpage #topwidget{display:none;}
#block-charity-zymphonies-theme-branding
{
    width:200px;
}
#block-webform-3
{
    max-width:580px;
    margin:0 auto;
    background:#f4f4f4;
    padding:20px;
}
.page-node-type-photo-gallery #block-charity-zymphonies-theme-content .content .field__item
{
    display:inline;
}
.path-guest-reviews #block-charity-zymphonies-theme-content .more-link
{
    display:block;
    margin-top: 30px;
}
.messages.messages--status
{
max-width: 750px;
margin: 0 auto;
}
.path-user .topwidget#topwidget,
.path-videos .topwidget#topwidget
{
    display:none;
}
#main-menu li.active a
{
    color:#b5904b;
}
.field--name-field-gallery-images .field__item
{
    display:inline;
}
.field--name-field-gallery-images .field__item img
{
    border:1px solid #ccc;
    padding:5px;
    margin:2px 3px;
}

.button-modal-asian > button {
    background: none repeat scroll 0 0 #b5904b;
    border: medium none;
    color: #FFFFFF;
    right: -55px;
    position: fixed;
    top: 50%;
    transform: rotate(90deg);
    z-index: 99999;
    border-radius: 0px 0px 10px 10px;
    /*padding: 5px 10px;*/
    }
.button-modal-asian > button a
 {
     color:#fff;
 }
.button-modal-asian > button a:hover
{
    color:#fff;
}
.path-frontpage h2.title {
    color: #000;
    text-align: center;
}
.ui-widget-overlay {
    z-index: 0;
}

.views-field-field-image .b-responsive {
    width: 100%;
}


















/*Mobile CSS Start*/
@media only screen and (max-width: 600px) {
.path-uttarakhand-tours #topwidget
{
    background: url(/themes/charity_zymphonies_theme/images/uttarakhand-mobile.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover!important;
    min-height: 130px;
}
.region-search {
        display: block;
    max-width: 204px;
    position: absolute;
    top: -56px;
    left: 100px;
}
.region-header .brand a img {
    height: 45px;
}
.header {
    padding: 0px;
}
.navbar-toggle {
    padding: 10px 0;
}
.region-header {
    padding: 5px 0;
}
#block-aboutbandhavgarhheader h1 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}
#block-aboutbandhavgarhheader h3 {
    color: #ffb135;
    max-width: 470px;
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    padding-top: 20px;
    font-family:Kaufmann;
}
.region-topwidget-third {
    max-width: 380px;
    float: none;
    background: #F1F1F1;
    padding: 10px;
}
.webform-submission-contact-form-client-form input.form-text, .webform-submission-contact-form-client-form input.form-tel, .webform-submission-contact-form-client-form input.form-email {
    width: 99%;
}

#block-charity-zymphonies-theme-page-title h1.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}
#clients {
    background: url(/themes/charity_zymphonies_theme/images/about-page-bk_09.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    padding: 10px 0;
}
#clients #block-aboutbandhavgarhcontentblock {
    max-width: 700px;
    line-height: 25px;
    color: #fff;
    font-size: 17px;
    padding:50px 0;
}
.features {
    font-size: 13px;
    font-weight: normal;
}
#block-views-block-top-attractions-block-1 h2.title {
    padding-left: 20px;
}
#block-generalinformation h2.title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.block-grid, .blazy.block-grid, .item-list > .block-grid
{
    /*padding:20px;*/
}
.path-frontpage .highlighted {
    height: auto;
}
.highlighted .container {
    max-width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: 0;
    margin-left: 0;
}
.webform-submission-contact-form-client-form .form-item {
    width: auto;
    float: none;
    border: 0px dashed red;
}
.flexslider .slider-caption {
display: block;
    position: absolute;
    top: 20%;
    left: 3%;
    z-index: 99;
    width: 100%;
    text-align: left;
    font-size: 1em;
    line-height: 100%;
    color: #fff;
    padding: 0px 5px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
.flexslider .slider-title {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 0;
    margin-bottom: 0;
}
.flexslider .slider-description {
    display: none;
    clear: both;
    font-size: 15px;
    line-height: 17px;
    font-weight: 400;
}
.btn, .node-readmore a, .flexslider .more-link, input[type="submit"] {
    background: #ff982c;
    cursor: pointer;
    color: #fff;
    border: 0;
    padding: 15px 20px;
    line-height: 100%;
    margin-right: 2px;
    display: inline-block;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 12px;
    margin-top:20px;
}
.region-services-first h2.title {
    font-size: 30px;
    font-weight: 700;
    color: #3e3e3d;
    text-align: left;
}
.services .services-list .block {
    padding: 0px;
    background: #fff;
    margin-bottom: 0;
}
#block-aboutbandhavgarh {
    max-width: 600px;
    padding: 0;
    clear: both;
}
#block-aboutbandhavgarh h2.title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.card-nfooorma {
    height: auto;
    margin-bottom: 10px;
}
.navbar-header.col-md-3 {
    max-width: 100%;
}
#blazy-views-top-attractions-block-1-1 .views-field-field-image
{
    padding:1px;
}
.region-primary-menu.expand {
    left: 0;
    right: 20%;
}
.region-primary-menu.expand li a
{
    color:#fff!important;
}
.menu-base-theme li a {
    padding: 15px 10px;
}
#block-aboutjageshwar, #block-hotelinjageshwar {
    margin-top: 0px;
}
a.more-link
{
    margin-bottom: 10px;
}
#block-views-block-top-attractions-block-1 {
    margin-top: 0px;
}
.topwidget#topwidget, .path-guest-reviews #topwidget, .path-blogs #topwidget, .path-uttarakhand-tours #topwidget {
   /* background-size: auto!important;*/
    background-repeat: no-repeat!important;
    height: 150px;
}

#block-charity-zymphonies-theme-page-title h1.page-title {
    color: #fff;
    display:none;
}
.node--view-mode-full a img {
    border: none;
    width: 100%;
    height:auto;
}
.form-email, .form-text, .form-textarea {
    max-width: 100%;
    background: #fff;
}
.header-wrap .header .container
{
        width: auto;
}
.header-wrap .header .container .row {

    margin-right: 0px;
    margin-left: 0px;
}
.header-wrap .header .container .row .col-md-9
{
    flex: 0 0 70%;
    max-width: 70%;
    margin-left: 120px;
}
#block-atthelodge
{
    padding: 15px;
}
#block-hotelinjageshwar
{
    padding: 5px;
}
.blazy--view--blogs .views-field-field-image a img {
    border: none;
    max-width: 100%;
}
}



/*Mobile CSS End*/