	@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300|Syncopate|Open+Sans:400,600);
@import '../css/tmMultimediaGallery.css';
@import '../fonts/font-awesome.css';
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
/*------ template stylization ------*/
body {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 900px;
  background: #273234;
}
body.galleryOpen {
  overflow: hidden !important;
}
body.galleryOpen #content_pages {
  position: fixed !important;
  display: block;
}
body.show-sub-pages {
  overflow: hidden !important;
}
body.show-sub-pages #content_pages {
  height: 100% !important;
}
body.show-sub-pages #content_pages > div {
  overflow-y: scroll !important;
}
body.show-sub-pages #content-2 {
  height: 100% !important;
}
#webSiteLoader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #293536;
}
#webSiteLoader span {
  position: absolute;
  top: 50%;
  left: 50%;
}
.bgCover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/siteBg.jpg) center 0 no-repeat;
  background-size: cover;
  z-index: 0;
}
/*------------- HEADER ---------------------------------------------------------- */
header {
  position: relative;
  width: 100%;
  padding-bottom: 10px;
  top: 0;
  z-index: 50;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header h1 {
  margin: 100px 0 30px 0;
  width: 100%;
  height: 62px;
  text-align: center;
  position: relative;
}
header h1 a {
  display: inline-block;
}
header h1 a img {
  width: 100%;
}
/*---------------- HEADER end ------------------------------------------------*/
/*-------------- FOOTER ---------------------------------------------------- */
footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  margin-top: 50px;
  z-index: 10;
  background: url(../img/footer_bg.png) 0 0 repeat;
}
footer .container {
  text-align: center;
}
footer .container .followList {
  list-style: none;
  margin: 14px 22px 0 0;
  padding: 0;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
footer .container .followList li {
  float: left;
  display: block;
  margin: 0 9px;
}
footer .container .followList li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .container .followList li:hover a {
  text-decoration: none;
  color: #c54d5a;
}
footer .container .copyright {
  display: inline-block;
  font: normal 12px/20px 'Syncopate', sans-serif;
  margin: 0 0 13px 0;
  position: relative;
  text-transform: uppercase;
  vertical-align: middle;
  color: #d8d8d8;
}
footer .container .copyright a {
  float: right;
  color: inherit;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .container .copyright a:hover {
  color: #c54d5a;
  text-decoration: none;
}
/*-----------  FOOTER END  ------------------------------------------------------*/
/*-----------  MENU  ------------------------------------------------------------*/
header #mainNav {
  display: block;
  width: 100%;
	text-align: center;
  overflow: hidden;
  position: relative;
}
header #mainNav.showed .line {
  width: 100%;
}
header #mainNav .line {
  width: 0%;
  height: 1px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header #mainNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
header #mainNav ul li {
  float: left;
  height: 75px;
  margin: 0 18px;
  position: relative;
}
header #mainNav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
header #mainNav ul li a .extra {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: url(../img/act_item.png) 50% 0 no-repeat;
  z-index: 2;
  top: -100px;
  -webkit-transition: all 0.5s ease 0.15s;
  transition: all 0.5s ease 0.15s;
}
header #mainNav ul li a .overHolder {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 4px;
  z-index: 1;
  overflow: hidden;
}
header #mainNav ul li a .overHolder .plane1 {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  font: normal 14px/1em 'Syncopate', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1;
  top: -100px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header #mainNav ul li a .name {
  position: relative;
  display: block;
  font: normal 14px/1em 'Syncopate', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  margin-top: 40px;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
header #mainNav ul li:hover a {
  text-decoration: none;
}
header #mainNav ul li:hover a .name {
  text-decoration: none;
  margin-top: 80px;
}
header #mainNav ul li:hover a .extra {
  top: 0;
}
header #mainNav ul li:hover a .overHolder .plane1 {
  top: 36px;
  color: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100);
}
header #mainNav ul li.active a .name {
  margin-top: 80px;
}
header #mainNav ul li.active a .extra {
  top: 0;
}
header #mainNav ul li.active a .overHolder .plane1 {
  top: 36px;
  color: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100);
}
/*-----------  menu end  --------------------------------------------------------*/
/*-------------------------------------------------------------------------------*/
h2 {
  font: 300 38px/42px 'Source Sans Pro', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 21px;
}
h3 {
  font: 600 13px/18px 'Open Sans', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 8px;
}
p {
  margin-bottom: 31px;
}
.moreBtn {
  font: normal 16px/16px 'Source Sans Pro', sans-serif;
  color: #fff;
  text-transform: uppercase;
  border-radius: 2px;
  background: #c54d5a;
  padding: 14px 37px 13px 20px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.moreBtn:hover {
  color: #fff;
  background: #727984;
  padding: 14px 50px 13px 20px;
}
.moreBtn:after {
  width: 11px;
  height: 100%;
  display: block;
  position: absolute;
  right: 21px;
  top: 1px;
  background: url(../img/arr_more2.png) 50% 50% no-repeat;
  content: " ";
}
/*-----------  CONTENT HOLDER  --------------------------------------------------*/
#glob-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
}
#content > div {
  display: block;
  position: relative;
}
#content_pages {
  position: relative;
  display: block;
  top: 0;
  width: 100%;
  z-index: 100;
}
#content_pages > div {
  width: 100%;
  position: absolute;
  display: none;
}
#category_pages {
  display: none;
}
#ajax-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
#ajax-overlay > div {
  position: absolute;
  top: 50%;
  left: 50%;
}
/*-------------------------------------------------------------------*/
.marg_1 {
  margin-top: 20px;
}
.marg_2 {
  margin-left: 2%;
}
.marg_3 {
  margin-bottom: 20px;
}
.marg_4 {
  margin-top: 24px;
}
.marg_5 {
  margin-left: 15px;
}
.padd_1 {
  padding-top: 68px!important;
}
.padd_2 {
  padding-top: 43px!important;
}
.padd_3 {
  padding: 40px 0 30px 0;
}
/*-------------------------------------------------------------------*/
.wrap {
  overflow: hidden;
}
.closeBtn {
  position: absolute;
  right: 12px;
  top: 11px;
  display: inline-block;
  width: 43px;
  height: 43px;
  border-radius: 500px;
  background: url(../img/close_icon2.png) 0 0 no-repeat;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.closeBtn span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/close_icon2.png) 0 bottom no-repeat;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.closeBtn:hover span {
  opacity: 1;
  filter: alpha(opacity=100);
}
.color_1 {
  color: #ffffff;
}
/*************************   PAGE_1 **********************************/
.splashHolder {
  width: 100%;
  position: absolute;
  text-align: center;
  top: 395px;
  z-index: 2;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.splashHolder.showed {
  opacity: 1;
  filter: alpha(opacity=100);
}
.splashHolder ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 956px;
  position: relative;
  text-align: center;
}
.splashHolder ul li {
  width: 302px;
  height: 142px;
  display: inline-block;
  position: relative;
  border-radius: 142px;
  overflow: hidden;
  margin: 7px 6px;
  border: 1px solid #555555;
}
.splashHolder ul li.linkItem a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.splashHolder ul li.linkItem a .imageItem {
  position: relative;
  display: inline-block;
  float: left;
  margin: 5px;
  z-index: 7;
  border-radius: 500px;
  -webkit-transition: all 0.9s ease-out;
  transition: all 0.9s ease-out;
}
.splashHolder ul li.linkItem a .imageItem img {
  border-radius: 500px;
}
.splashHolder ul li.linkItem a .title {
  font: normal 24px/20px 'Source Sans Pro', sans-serif;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin: 63px 0 57px -17px;
  z-index: 6;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.splashHolder ul li.linkItem a .extraGradient {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: -174px;
  left: 0;
  background: url(../img/grad.png) 0 0 repeat-x;
  z-index: 5;
  -webkit-transition: all 0.4s ease 0.4s;
  transition: all 0.4s ease 0.4s;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.splashHolder ul li.linkItem a .extraPlane1 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}
.splashHolder ul li.linkItem a .extraPlane2 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: -174px;
  left: 0;
  z-index: 3;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.4s ease 0.1s;
  transition: all 0.4s ease 0.1s;
}
.splashHolder ul li.linkItem a .extraPlane3 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  top: -274px;
  left: 0;
  z-index: 2;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.splashHolder ul li.linkItem a .extraPlane4 {
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  top: 0;
  left: 0;
  z-index: 1;
}
.splashHolder ul li.deltaMargin {
  margin-left: 173px;
}
.splashHolder ul li:hover a {
  text-decoration: none;
  /*.imageItem{
                                        .rotateY(-360deg);
                                    }*/
}
.splashHolder ul li:hover a .title {
  color: #c54d5a;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.splashHolder ul li:hover a .extraGradient {
  top: 174px;
  -webkit-transition: all 0.4s ease 0.4s;
  transition: all 0.4s ease 0.4s;
}
.splashHolder ul li:hover a .extraPlane1 {
  height: 0%;
  top: 174px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.splashHolder ul li:hover a .extraPlane2 {
  width: 150%;
  height: 0%;
  top: 174px;
  -webkit-transition: all 0.4s ease 0.1s;
  transition: all 0.4s ease 0.1s;
}
.splashHolder ul li:hover a .extraPlane3 {
  width: 150%;
  height: 0%;
  top: 174px;
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}
.splashHolder ul li:hover a .extraPlane4 {
  height: 100%;
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}
.galleryHolder {
  position: absolute;
  top: 283px;
  width: 100%;
  left: 0;
  z-index: 1;
  display: none;
}
#galleryPrototype5 #mainHolder .closeItem {
  font: normal 14px/20px 'Source Sans Pro', sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 22px 0 0;
  margin: 0 0 0 21px;
  bottom: 0;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#galleryPrototype5 #mainHolder .closeItem:hover {
  padding: 0 32px 0 0;
}
#galleryPrototype5 #mainHolder .title {
  overflow: hidden;
}
#galleryPrototype5 #mainHolder .title span {
  font: normal 24px/18px 'Source Sans Pro', sans-serif;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: block;
  margin: 0;
}
#galleryPrototype5 #mainHolder .controlHolder #mainPagination ul li {
  position: relative;
}
#galleryPrototype5 #mainHolder .controlHolder #mainPagination ul li span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/gall_button.png) 0 0 no-repeat;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#galleryPrototype5 #mainHolder .closeItem {
  background: url(../img/arr_more.png) 100% 50% no-repeat;
}
#galleryPrototype5 #mainHolder .controlHolder #mainPagination ul li {
  background: url(../img/gall_button.png) 0 bottom no-repeat;
}
#galleryPrototype5 #mainHolder .controlHolder #mainPagination ul li:hover span {
  opacity: 1;
  filter: alpha(opacity=100);
}
#galleryPrototype5 #mainHolder .controlHolder #mainPagination ul li.active span {
  opacity: 1;
  filter: alpha(opacity=100);
}
#galleryPrototype5 #fullPreviewHolder {
  border-radius: 100px;
  overflow: hidden;
}
#galleryPrototype5 #fullPreviewHolder .primaryFullImage {
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
#galleryPrototype5 #fullPreviewHolder .primaryFullImage.animateState {
  height: 0;
  -webkit-transition: all 0s ease;
  transition: all 0s ease;
}
#galleryPrototype5 #fullPreviewHolder .secondaryFullImage {
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0s ease;
  transition: all 0s ease;
}
#galleryPrototype5 #fullPreviewHolder .secondaryFullImage.animateState {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#galleryPrototype5 #fullPreviewHolder .fullPreviewLoader {
  background: url(../img/base/previewLoader.gif) 50% 50% no-repeat rgba(0, 0, 0, 0.5);
}
/*************************   PAGE_2 **********************************/
.contentBox1 {
  position: relative;
  width: 970px;
  padding: 47px 51px;
  background: #101010;
  margin: 0 auto;
  margin-top: 36px;
  border-radius: 100px;
}
.figure1 {
  float: left;
  margin-right: 62px;
}
.figure1 img {
  width: 100%;
  border-radius: 46px;
}
/*************************   PAGE_3 **********************************/
.contentBox2 {
  position: relative;
  width: 970px;
  padding: 67px 4.5%;
  background: #101010;
  margin: 0 auto;
  margin-top: 36px;
  border-radius: 100px;
}
.contentBox3 {
  position: relative;
  width: 46%;
  float: left;
  margin: 0 2%;
}
.contentBox3 a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.contentBox3 a:hover {
  color: #c54d5a;
  text-decoration: none;
}
.icon1 {
  float: left;
  margin-right: 8px;
  margin-top: 3px;
}
/*************************   PAGE_4 **********************************/
.contentBox4 {
  position: relative;
  width: 970px;
  padding: 47px 5.2%;
  background: #101010;
  margin: 0 auto;
  margin-top: 36px;
  border-radius: 100px;
}
/*-------------------------- GOOGLE MAP ----------------------------*/
.mapContainer {
  position: relative;
  display: inline-block;
  float: left;
  width: 65%;
  height: 369px;
  margin: 0 4% 0 0;
  border-radius: 46px;
  overflow: hidden;
}
.g_map {
  width: 100%;
  height: 100%;
  float: left;
  background: url(../img/gMapLoader.gif) 50% 50% no-repeat #363636;
}
.g_map iframe {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
}
.space1 {
  width: 78px;
  display: inline-block;
}
.link1 {
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.link1:hover {
  color: #c54d5a;
  text-decoration: none;
}
.form-control {
  height: 45px;
  border-radius: 2px;
}
#search {
  padding-top: 4px;
}
#search input {
  width: 69%!important;
  display: inline-block;
  margin-bottom: 20px;
  float: left;
}
#search .moreBtn:hover {
  padding: 14px 37px 13px 20px;
}
.search_result {
  color: #c54d5a;
}
.search_title {
  margin-bottom: 0!important;
}
.search_title a {
  position: relative;
  color: #ffffff;
  text-decoration: underline;
}
.search_title a:hover {
  color: #c54d5a;
  text-decoration: underline;
}
.search_list {
  margin: 0;
}
.search_list li h3 {
  margin: 0;
  font-size: 16px;
}
.search_list li h3 a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search_list li .search_result {
  color: #c54d5a;
}
.full_link a {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.full_link a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
/*-------------------------- tablet ----------------------------*/
html.tablet header h1 {
  margin: 30px 0 15px 0;
}
html.tablet .contentBox1,
html.tablet .contentBox2,
html.tablet .contentBox4,
html.tablet .contentBox5 {
  margin-top: 0;
}
html.tablet .splashHolder {
  top: 205px;
}
html.tablet .galleryHolder {
  top: 190px;
}
html.ipad .splashHolder ul li .linkItem a .extraPlane1,
html.ipad .splashHolder ul li .linkItem a .extraPlane2,
html.ipad .splashHolder ul li .linkItem a .extraPlane3,
html.ipad .splashHolder ul li .linkItem a .extraPlane4,
html.ipad .splashHolder ul li .linkItem a .extraGradient {
  display: none!important;
}
html.ipad .splashHolder ul li .linkItem:hover a .imageItem {
  transform: rotateY(-360deg);
  -webkit-transform: rotateY(-360deg);
  -moz-transform: rotateY(-360deg);
  -o-transform: rotateY(-360deg);
}
/*-------------------------- mobile WRAP ----------------------------*/
#mobile-wrap #mobile-header h1 {
  margin: 15px 0 0;
  width: 100%;
  text-align: center;
}
#mobile-wrap #mobile-header h1 a {
  width: 100%;
  display: inline-block;
}
#mobile-wrap #mobile-header #mobile-navigation {
  width: 100%;
  margin: 20px 0;
  font-size: 16px;
}
#mobile-wrap #mobile-content {
  background: #101010;
}
#mobile-wrap #mobile-content .folioList {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 90%;
  margin-left: 5%;
}
#mobile-wrap #mobile-content .folioList li {
  display: block;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#mobile-wrap #mobile-content .folioList li ._thumb {
  width: 100%;
}
#mobile-wrap #mobile-content .folioList li ._thumb img {
  width: 100%;
}
#mobile-wrap #mobile-content .folioList li ._name {
  font: 20px/30px 'Source Sans Pro', sans-serif;
  position: absolute;
  width: 100%;
  color: #ffffff;
  background: #263132;
  text-transform: uppercase;
  text-align: center;
  bottom: 0;
}
#mobile-wrap #mobile-content .folioList li ul {
  display: none;
}
#mobile-wrap #mobile-content .contentBox1,
#mobile-wrap #mobile-content .contentBox2,
#mobile-wrap #mobile-content .contentBox4,
#mobile-wrap #mobile-content .contentBox5 {
  background: transparent;
  border-radius: 0;
  padding-right: 8px;
  padding-left: 8px;
  margin-top: 0;
}
#mobile-wrap #mobile-content .figure1 {
  margin-top: 52px;
}
#mobile-wrap #mobile-footer .copyright {
  font: normal 12px/20px 'Syncopate', sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  margin: 30px 0 30px 0;
  position: relative;
}
#mobile-wrap #mobile-footer .copyright a {
  color: inherit;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#mobile-wrap #mobile-footer .copyright a:hover {
  color: #c54d5a;
  text-decoration: none;
}
/*----- media queries ------*/
@media (max-width: 1220px) {
  #galleryPrototype5 {
    width: 970px;
  }
  #galleryPrototype5 #fullPreviewHolder {
    width: 770px;
  }
  #galleryPrototype5 #mainHolder {
    z-index: 200;
  }
}
@media (max-width: 991px) {
  .splashHolder {
    top: 285px;
  }
  .splashHolder ul {
    width: 750px;
  }
  #mainPagination {
    padding-left: 0!important;
  }
  #galleryPrototype5 {
    width: 750px;
  }
  #galleryPrototype5 #mainHolder {
    width: 100%;
    margin: 0;
  }
  #galleryPrototype5 #mainHolder .closeItem {
    margin: 0 0 20px;
  }
  #galleryPrototype5 #mainHolder .title {
    width: 100%;
    height: 50px;
  }
  #galleryPrototype5 #mainHolder .title span {
    margin: 15px 0;
  }
  #galleryPrototype5 #mainHolder .controlHolder {
    width: 100%;
    height: auto;
  }
  #galleryPrototype5 #fullPreviewHolder {
    width: 100%;
    height: 400px;
  }
  #nextButton {
    right: 30px;
  }
  #prevButton {
    left: 30px;
  }
  .closeIcon1 {
    top: 30px;
    right: 30px;
  }
  .fullscr-btn {
    right: 30px;
    bottom: 30px;
  }
  .contentBox1 {
    width: 750px;
    padding-top: 15px;
    margin-top: 0;
  }
  .contentBox2 {
    width: 750px;
    padding: 67px 7.5%;
  }
  .contentBox4 {
    width: 750px;
    padding: 67px 7.5%;
  }
  .figure1 {
    width: 100%;
    margin: 40px 0 20px;
  }
  .figure1 img {
    width: 100%;
  }
  .contentBox3 {
    width: 100%;
    margin: 0 0 10px;
  }
  .full_width {
    width: 100%;
  }
}
@media (max-width: 767px) {
  header h1 {
    margin-top: 50px;
  }
  .splashHolder {
    top: 230px;
  }
  .splashHolder ul {
    width: 100%;
  }
  .galleryHolder {
    top: 220px;
  }
  #galleryPrototype5 {
    width: 100%;
  }
  #galleryPrototype5 #mainHolder {
    width: 100%;
    margin: 0;
  }
  #galleryPrototype5 #mainHolder .closeItem {
    padding-left: 15px;
  }
  #galleryPrototype5 #mainHolder .title {
    padding-left: 15px;
  }
  #galleryPrototype5 #mainHolder .title span {
    margin: 15px 0;
  }
  #galleryPrototype5 #mainHolder .controlHolder {
    width: 100%;
    height: auto;
  }
  #galleryPrototype5 #fullPreviewHolder {
    width: 96%;
    margin-left: 2%;
    height: 400px;
  }
  #galleryPrototype5 #mainPagination > ul {
    padding-left: 15px;
  }
  .contentBox1 {
    width: 96%;
  }
  .contentBox2 {
    width: 96%;
  }
  .contentBox4 {
    width: 96%;
  }
  .mapContainer {
    width: 100%;
    margin: 0 0 30px;
  }
}
@media (max-width: 540px) {
  header #mainNav ul li {
    margin: 0 6px;
  }
  header #mainNav ul li a .name {
    font-size: 12px;
  }
  header #mainNav ul li a .overHolder .plane1 {
    font-size: 12px;
  }
  #search input {
    width: 100%!important;
  }
}
@media (max-width: 480px) {
  .mapContainer {
    height: 250px;
  }
  .full_width {
    width: 100%;
  }
}
@media (max-width: 380px) {
  header #mainNav ul li {
    margin: 0 4px;
  }
  header #mainNav ul li a .name {
    font-size: 10px;
  }
  header #mainNav ul li a .overHolder .plane1 {
    font-size: 10px;
  }
}
/*Core variables and mixins*/
/* 3d mixins */
/* end 3d mixins */
