@font-face {
  font-family: 'WindsorElongated_DG';
  src:  url('font/WindsorElongated_DG.eot?#iefix') format('embedded-opentype'),  
        url('font/WindsorElongated_DG.woff') format('woff'), 
        url('font/WindsorElongated_DG.ttf')  format('truetype'), 
        url('font/WindsorElongated_DG.svg#WindsorElongated_DG') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* 
  RESET - ADAPTED FROM MEYER RESET
  URL - http://meyerweb.com/eric/tools/css/reset/
  LICENSE - PUBLIC DOMAIN
*/

/* RESET
----------------------------------------------------------------------------------------------------*/
a, abbr, acronym, address, applet, article, aside, audio, 
b, big, blockquote, body, caption, canvas, center, cite, code,
dd, del, details, dfn, dialog, div, dl, dt, em, embed, 
fieldset, figcaption, figure, form, footer, 
header, hgroup, h1, h2, h3, h4, h5, h6, html, 
i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, output, p, pre, q, ruby, 
s, samp, section, main, small, span, strike, strong, sub, summary, sup, 
tt, table, tbody, textarea, tfoot, thead, time, tr, th, td,
u, ul, var, video { 
  font-family: inherit; 
  font-size: 100%; 
  font-weight: inherit; 
  font-style: inherit; 
  vertical-align: baseline; 
  white-space: normal;
  text-align: left; 
  margin: 0; 
  padding: 0; 
  border: 0; 
  outline: 0;
  background: transparent; 
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, main { 
  display: block; 
}
                  
ol, ul { 
  list-style: none; 
}
blockquote, q {
  quotes: none; 
}

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


/*  12 COLUMN : RESPONSIVE GRID SYSTEM
  DEVELOPER : DENIS LEBLANC
  URL : http://responsive.gs
  VERSION : 3.0
  LICENSE : GPL & MIT */


/*  SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
* { 
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(/scripts/boxsizing.htc); 
  /*  If you need support for IE7 and lower make 
    sure the boxsizing.htc file is linked properly.
    More info here:  https://github.com/Schepp/box-sizing-polyfill */
}


/*  MAIN CONTAINER 
  Set the width to whatever you want the width of your site to be. */
.container { 
  max-width: 1200px;
  margin: 0 auto; 
}



/*  SELF CLEARING FLOATS - CLEARFIX METHOD */
.container:after,
.row:after, 
.col:after, 
.clr:after, 
.group:after { 
  content: ""; 
  display: table; 
  clear: both; 
}

/*  DEFAULT ROW STYLES 
  Set bottom padding according to preference */
.row { padding-bottom: 0em;
}
      
                  
/* DEFAULT COLUMN STYLES */
.col { 
  display: block;
  float: left;
  width: 100%;
}

@media ( min-width : 768px ) {
  
  .gutters .col {
    margin-left: 2%;
  }
  
  .gutters .col:first-child { 
    margin-left: 0; 
  }
}




/*  COLUMN WIDTH ON DISPLAYS +768px 
  You might need to play with media queries here to suite your design. */
@media ( min-width : 768px ) {
  .span_1 { width: 8.33333333333%; }
  .span_2 { width: 16.6666666667%; }
  .span_3 { width: 25%; }
  .span_4 { width: 33.3333333333%; }
  .span_5 { width: 41.6666666667%; }
  .span_6 { width: 50%; }
  .span_7 { width: 58.3333333333%; }
  .span_8 { width: 66.6666666667%; }
  .span_9 { width: 75%; }
  .span_10 { width: 83.3333333333%; }
  .span_11 { width: 91.6666666667%; }
  .span_12 { width: 100%; }
  
  .gutters .span_1 { width: 6.5%; }
  .gutters .span_2 { width: 15.0%; }
  .gutters .span_3 { width: 23.5%; }
  .gutters .span_4 { width: 32.0%; }
  .gutters .span_5 { width: 40.5%; }
  .gutters .span_6 { width: 49.0%; }
  .gutters .span_7 { width: 57.5%; }
  .gutters .span_8 { width: 66.0%; }
  .gutters .span_9 { width: 74.5%; }
  .gutters .span_10 { width: 83.0%; }
  .gutters .span_11 { width: 91.5%; }
  .gutters .span_12 { width: 100%; }
}

/*	EXAMPLE STYLES */
body {
	font: 18px/24px 'PT Sans Narrow', sans-serif;
	color: #333;

	background: rgba(210,235,252,1);
	background: -moz-linear-gradient(top, rgba(210,235,252,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(210,235,252,1)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(210,235,252,1) 0%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(210,235,252,1) 0%, rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(210,235,252,1) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(210,235,252,1) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2ebfc', endColorstr='#ffffff', GradientType=0 );
}

header {
	background: url(../images/bg-header.png) 50% 50% no-repeat;
	min-height: 300px;
	padding: 15px 0;
}

#mainmenu{
  font-family: 'WindsorElongated_DG';
}

#mainmenu ul{
	display: block;
	position: relative;
	list-style: none;
	width: 100%;
	text-align: right;
}

#mainmenu ul li{
	display: inline-block;
	position: relative;
    margin-bottom: 10px;
}

#mainmenu ul li a{
	font-size: 22px;
	padding: 3px 9px;
	border-radius: 7px;
	border: 2px solid transparent;
	text-transform: uppercase;
	text-decoration: none;
	color: #006633;
}
#mainmenu ul li.current a{
	border-color: #006633;
	color: #669933;
}
#mainmenu ul li:hover a{
	color: #669933;
}

#welcome{
	background: #b9d9ab;
	min-height: 140px;
	padding: 30px 0;
}

#welcome #user1{
  font-family: 'WindsorElongated_DG';
  font-size: 24px;
  color: #006633;
  line-height: 130%;
}

article {
	min-height: 300px;
	padding: 45px 0 30px 0 !important;
}

#social{
	background: #2daae2;
	min-height: 80px;
	padding: 30px 0;
	text-align: center;
}

footer {
	background: url(../images/bg-footer.png) 50% 100% no-repeat;
	min-height: 140px;
	padding: 15px 0;
}

.jg_element_gal,
.jg_element_cat{
	padding: 0 5px;
	margin-bottom: 10px;
}

.jg_photo_container img,
.jg_photo{
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.jg_catelem_photo{
	float: none !important;
}

.jg_element_txt a,
.jg_catelem_txt{
  	font-family: 'WindsorElongated_DG';
  	color: #2daae2;
  	font-size: 24px;
}

.jg_catelem_txt ul{
	padding: 0 !important;
}

.jg_element_txt a:hover{
  	text-decoration: none;
}

.jg-header, h1, h2, h3{
  	font-family: 'WindsorElongated_DG';
	text-align: left !important;
	font-size: 30px;
	color: red;
	margin-bottom: 30px;
}
.pull-left {max-width:100%;}
.jg-header{
	margin-bottom: 15px;
}

.pagination{
	margin-bottom: 30px;
}

.pagination ul{
	display: block;
	list-style: none;
	position: relative;
}

.pagination ul li{
	display: inline-block;
	position: relative;
	text-align: center;
	margin: 5px !important;
}

.pagination ul li a{
	color: #2daae2;
}

#sociallinks{
	display: table;
	position: relative;
	margin: 0 auto;
	text-align: center;
}

#sociallinks li{
	display: table-cell;
	padding: 0 5px;
	height: 58px;
	vertical-align: middle;
}

.soc_arrow{
	width: 146px;
	background: url(../images/soc_arrow.png) 50% 50% no-repeat;
	padding: 0 20px !important;
}

#sociallinks li a{
	text-decoration: none;
	border: 2px solid #fff;
	border-radius: 29px;
	width: 62px;
	height: 62px;
	display: block;
	position: relative;
}

#sociallinks li p{
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}

#user2{
	position: relative;
}

.nesku4gal{
	display: block;
	position: absolute;
	background: url(../images/photogalbg.png);
	top: -50px;
	right: 0;
	width: 542px;
	height: 269px;
}

.nesku4gal a{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -100px;
	margin-top: -25px;
	height: 44px;
	width: 200px;
	background: #669933;
	border-bottom: 2px solid #076d3d;
	color: #fff;
	font-size: 20px;
	line-height: 44px;
  	font-family: 'WindsorElongated_DG';
  	padding: 0 20px;
  	border-radius: 10px;
  	text-transform: uppercase;
  	text-align: center;
  	text-decoration: none;
}

.nesku4gal a:hover{
	background: #076d3d;
	border-bottom: 0px;
	margin-top: -23px;
}


.blog .item{
	position: relative;
}


.blog .item img{
	width: 100%;
	border: 4px solid transparent;
}

.blog .col{
	margin-bottom: 20px;
}

.afisha_detail{
	display: block;
	position: absolute;
	bottom: 30px;
	left:0;
	width: 100%;
	background: #006633;
	height: 36px;
	line-height: 36px;

  	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
}

.afisha_detail h2{
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	font-family: 'PT Sans Narrow', sans-serif;
}
.afisha_detail h2 a{
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	font-family: 'PT Sans Narrow', sans-serif;
	text-decoration: none;
}

.afisha_date{
	display: block;
	position: absolute;
	left: 10px;
	top: -14px;
	width: 64px;
	height: 64px;
	line-height: 64px;
	text-align: center;
	border-radius: 32px;
	background: #66cccc;
	font-size: 30px;
	color: #fff;
  	font-family: 'WindsorElongated_DG';

  	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
}

.afisha_date .article-info{
	display: block;
	text-align: center;
	position: relative;
}

.afisha_lnk{
	margin-left: 84px;
}

.article-info{
	display: none;
}


.afisha_detail .page-header h2{
	margin-bottom: 0px;
}

.jg_row{
	padding: 15px 0 !important;
}


.bird-address{
	background: url(../images/bird-address.png) 0 50% no-repeat;
	height: 92px;
	padding-left: 85px;    padding-top: 10px;
  	font-family: 'WindsorElongated_DG';
  	color: #330000;
  	font-size: 30px;
  	text-align: center;
}
.bird-phone{
	background: url(../images/bird-phone.png) 0 50% no-repeat;
	height: 92px;
	padding-left: 85px;    padding-top: 10px;
  	font-family: 'WindsorElongated_DG';
  	color: #330000;
  	font-size: 30px;
  	text-align: center;
}

.bird-phone .custom{
	float: left;
}
.bird-phone .custom p{
	text-align: center;
}

.addrrpp{
	display: block;
	margin-bottom: 45px;
	margin-top: 35px;
}

.bird-phone a{
	color: #5abbd7;
	font-size: 24px;
}
.bird-phone a:hover{
	text-decoration: none;
}


.footcont{
	padding-top: 30px;
}

.footcont .custom p{
	font-size: 18px;
	color: #330000;
	font-family: 'PT Sans Narrow', sans-serif;
	font-weight: bold;
	text-align: right;
}

.footcont .custom p strong{
	font-size: 24px;
	color: #577ca2;
	font-family: 'PT Sans Narrow', sans-serif;
	font-weight: bold;
}

.modbot{
	padding-bottom: 30px;
	text-align: center;
	position: relative;
}

.modbot p{
	text-align: center;
}

.modbot a{
	display: inline-block;
	position: relative;
	height: 44px;
	width: 200px;
	background: #2daae2;
	border-bottom: 2px solid #1d6887;
	color: #fff;
	font-size: 20px;
	line-height: 44px;
  	font-family: 'WindsorElongated_DG';
  	padding: 0 20px;
  	border-radius: 10px;
  	text-transform: uppercase;
  	text-align: center;
  	text-decoration: none;
}

.modbot a:hover{
	background: #1d6887;
	border-bottom: 0px !important;
	margin-top: 2px;
	height: 42px;
}

.sunsun{
	display: block;
	position: absolute;
	width: 161px;
	height: 94px;
	bottom: -5px;
	right: 20%;
	background: url(../images/sunsun.png) 50% 50% no-repeat;
}




/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

.image-source-link {
  color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

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

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}


.callback {
  width: 413px;
  margin: auto;
  color: #fff;
  position: relative;
}

.callback::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.85;
  background-color: #45bbff;
}

.callback h3 {
  text-align: center;
  font-family: "LatoBlack", sans-serif;
  font-size: 1.125em;
  padding-top: 45px;
  padding-bottom: 42px;
  z-index: 3;
  position: relative;
}

.callback label{
  text-align: center;
  display: block;
  z-index: 3;
  position: relative;
}

.callback label input {
  display: block;
  margin: auto;
  width: 298px;
  border: 1px solid #fff;
  margin-bottom: 19px;
  padding-left: 9px;
  color: #fff;
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: transparent;
}

.callback label input:active, .callback label input:focus{
  border: 1px solid #fff;
}

.callback label input::-webkit-input-placeholder {
  color: #fff;
}

.callback label input::-moz-placeholder {
  color: #fff;
}

.callback label input:-moz-input-placeholder {
  color: #fff;
}

.callback label input:-ms-input-placeholder {
  color: #fff;
}

.callback label button{
  margin: auto;
  margin-top: 23px;
  margin-bottom: 46px;
  background-color: transparent;
  border: 1px solid;
  text-transform: uppercase;
  font-family: "LatoRegular", sans-serif;
  font-size: 0.8125em;
  padding-left: 67px;
  padding-right: 67px;
  padding-top: 16px;
  padding-bottom: 13px;
  border-radius: 10em;
  transition: all .20s ease;
}

.callback label button:hover {
  background-color: #45bbff;
  transition: all .20s ease;
}


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

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

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

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

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

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

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

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

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

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

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

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

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

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

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

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

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

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

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

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

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

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

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

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

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

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

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

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

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

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

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

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

.mfp-figure figure {
  margin: 0;
}

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

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

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

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* Styles for dialog window */
#small-dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

.image-source-link {
  color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

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

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}



.hidden{
	display: none;
}



@media ( max-width : 1120px ) {

  #mainmenu ul li a{
    font-size: 20px;
  }

  .nesku4gal{
    width: 450px;
  }

}
@media ( max-width : 970px ) {

  #mainmenu ul li a{
    font-size: 17px;
  }
  .bird-address p,
  .bird-phone p,
  .bird-phone a{
    font-size: 18px;
  }
  .nesku4gal{
    width: 400px;
  }

}
@media ( max-width : 900px ) {

  #mainmenu{
    padding-left: 30px;
  }

}


@media ( max-width : 768px ) {

	.logo{
		display: block;
		position: relative;
		width: 100%;
		text-align: center;
	}

	.logo img{
		max-width: 200px;
	}

	.bird-address{
		background: url(../images/bird-address.png) 50% 0 no-repeat;
		height: auto;
		padding-left: 0px;    padding-top: 100px;    
	  	font-family: 'WindsorElongated_DG';
	  	color: #330000;
	  	font-size: 30px;
	  	text-align: center;
	  	margin-bottom: 20px;
	}

	.bird-address p{
		text-align: center;
	}

	.bird-phone{
		background: url(../images/bird-phone.png) 50% 0% no-repeat;
		height: auto;
		padding-left: 0px;    padding-top: 100px;
	  	font-family: 'WindsorElongated_DG';
	  	color: #330000;
	  	font-size: 30px;
	  	text-align: center;
	}

	.bird-phone .custom,
	.bird-address .custom{
		float: none;
	}

	#mainmenu ul{
		display: block;
		text-align: center;
	}

	#mainmenu ul li{
		display: inline-block;
		margin-bottom: 10px;
	}

	footer{
		background-size: contain;
		padding-bottom: 100px;
	}

	.footcont .custom p{
		text-align: center;
	}

	footer .logo{
		display: none;
	}

	.footcont{
		padding-top: 0px;
	}

	#sociallinks li{
		display: inline-block;
	}

	#sociallinks li:first-child{
		display: none;
	}

	.soc_arrow{
		display: none !important;
	} 

	.sunsun{
		display: none;
	}

	#user2{
		display: none;
	}

	#welcome #user1{
		padding-left: 20px;
		padding-right: 20px;
		font-size: 20px;
	}
	#user1 p{
		text-align: center;
	}

	.jg_element_gal,
	.jg_element_cat{
		width: 49%;
	}

}

article b, article strong{
  font-weight: bold !important;
}

article i{
  font-style: italic !important;
}

article ul{
  list-style: circle  !important;
  margin-left: 20px !important;
  margin-bottom: 15px !important;
}

#mainmenu ul li .nav-child{
  display: none;
  position: absolute;
  left: 0px;
  top: 100%;
  background: #006633;
  padding: 5px 0px;
  border-radius: 4px;
  width: 250px;
  z-index: 1999;
  text-align: left;
}

#mainmenu ul li:hover .nav-child{
  display: block;
}

#mainmenu ul li .nav-child li{
  display: block;
  position: relative;
  margin: 0;
  padding: 5px 10px;
  line-height: 125%;
}
#mainmenu ul li .nav-child li a{
  font-size: 16px;
  color: #fff;
  line-height: 125%;
}
#mainmenu ul li .nav-child li:hover a{
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
}