/*
  #orange: #8dc63f
  #teal: #174a7c
  #gray: #535f66
*/

 @import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700);

html {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

html * {
  font-family: inherit;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
}

header {
  background-color: #174a7c;
  height: 100px;
  width: 100%;
  border-bottom: 4px solid #8dc63f;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

h1, h2 {
  text-transform: uppercase;
  font-weight: bold;
}

h2 {
  font-size: 38px;
}

main {
  margin-top: 100px;
}

.text-green {
  color: #8dc63f;
}

.text-gray {
  color: #535f66;
}

a {
  text-decoration: none;
  transition: all .3s ease;
}

a:hover {
  color: #8dc63f;
}

#hero {
  height: calc(100vh - 100px);
  min-height: 500px;
}

.header-logo-image {
  max-width: 280px;
  height: auto;
}

.main-menu {
  height: 100px;
}

.main-menu ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100px;
}

header .container {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .container::before,
header .container::after {
  content: '';
  display: none;
}

.main-menu a {
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease;
}

.main-menu a:hover {
  color: #8dc63f;
}

.main-menu li:not(:last-child){
  margin-right: 20px;
}

#nav-icon1 {
  width: 40px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #8dc63f;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 13px;
}

#nav-icon1 span:nth-child(3) {
  top: 26px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.video-background {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  z-index: -2;
}

.video-background video {
  width: 100%;
}

.video-background-overlay {
  background-image: none; <!--url('../images/videoBackground.jpg')-->
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: .8;
}


.hero-content img {
  max-width: 360px;
}

.hero-content__white-bar {
  width: 200px;
  border-bottom: 2px solid #fff;
  margin: 30px auto;
}

.hero-content {
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 25px;
  z-index: 0;
}

.hero-content h1 {
	font-size: 20px;
	margin-top: 50px;
  	margin-bottom: 10px;
	text-transform: none;
	font-weight: 400;
	line-height: 30px;
}

.hero-content h2 {
  margin-top: 20px;
	line-height: 50px;
}

.go-down-link {
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 30px;
  font-size: 40px;
}

#gallery {
  border-bottom: 12px solid #8dc63f;
}

#gallery img {
  width: 100%;
  height: auto;
}

/* Make the image fully responsive */
  .carousel-inner img {
    width: 100%;
    height: 100%;
  }

#gallery .carousel-indicators {
  width: auto;
  margin: 0;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: rgba(255, 255, 255, .8);
  box-shadow: 0 0 25px 3px rgba(0,0,0,.8);
}

#gallery .carousel-indicators li,
#gallery .carousel-indicators .active {
  text-indent: 0;
  width: 150px;
  height: auto;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  border: 4px solid rgba(255, 255, 255, .8);
  position: relative;
}

#gallery .carousel-indicators li img {
  opacity: .3;
  transition: all .3s ease;
}

#gallery .carousel-indicators li.active img {
  opacity: 1;
}

#gallery .carousel-indicators li[data-slide-to="0"],
#gallery .carousel-indicators li[data-slide-to="1"],
#gallery .carousel-indicators li[data-slide-to="2"] {
  border-right-width: 1px !important;
}

#gallery .carousel-control,
#gallery .carousel-control:hover {
  background-image: none;
  top: 50%;
  bottom: auto;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  font-size: 46px;
  opacity: .8;
  color: #fff;
}

#gallery .carousel-control.left {
  left: -40px;
}

#gallery .carousel-control.right {
  right: -40px;
}

#map {
  text-align: center;
  padding: 60px 0;
  background-image: url('../images/map-background.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
	height: 500px;

}

#map .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #174a7c;
  opacity: .88;
}

#map .map-content {
  position: relative;
  z-index: 1;
}

#map .map-content img {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 10px auto;
}

.map-convenience-separator {
  height: 80px;
  background-color: #174a7c;
}

#convenience,
#retail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #174a7c;
  position: relative;
}

#convenience > div,
#retail > div {
  flex: 1;
}

#convenience .convenience-image img,
#retail .retail-image img {
  width: 100%;
  height: auto;
}

.convenience-text-split-container {
  max-width: 585px;
  padding: 0 15px;
}

#convenience .convenience-text-split-container {
  padding-left: 35px;
}

#convenience .hero-content__white-bar {
  margin-left: 0;
}

.convenience-subtitle {
  font-size: 18px;
}


#convenience .retail-table {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid #fff;
  margin-top: 60px;
  max-width: 555px;
}

#convenience .retail-cell {
  flex-basis: 25%;
  background-color: #8dc63f;
  height: 200px;
  text-align: center;
  position: relative;
}

#convenience .retail-cell img {
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 130px;
}

#convenience .retail-cell p {
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  top: 90px;
}

#convenience .retail-cell:nth-child(1),
#convenience .retail-cell:nth-child(2),
#convenience .retail-cell:nth-child(3),
#convenience .retail-cell:nth-child(4) {
  border-bottom: 1px solid #fff;
}

#convenience .retail-cell:nth-child(1),
#convenience .retail-cell:nth-child(2),
#convenience .retail-cell:nth-child(3),
#convenience .retail-cell:nth-child(5),
#convenience .retail-cell:nth-child(6),
#convenience .retail-cell:nth-child(7) {
  border-right: 1px solid #fff;
}






.icon-instance {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  margin-bottom: 5px;
}

.icon-instance-icon {
  flex-basis: 60px;
}

.icon-instance-text {
  flex-basis: calc(100% - 60px);
  padding-left: 20px;
}

.icon-instance-icon img {
  width: 100%;
  height: auto;
}

.icon-instance-text h3 {
  text-transform: uppercase;
  font-size: 16px;
  padding-bottom: 10px;
}

.icon-instance-text p {
  padding-top: 8px;
}

.icon-instance-text-separator {
  border-bottom: 2px solid #fff;
  width: 50px;
}

#retail {
  border-bottom: 12px solid #8dc63f;
  padding-bottom: 80px;
}

#retail .retail-text {
  text-align: right;
  padding-right: 35px;
}

#retail .retail-text .hero-content__white-bar {
  margin-right: 0;
}

#retail .convenience-text-split-container {
  margin-right: 0;
  margin-left: auto;
}

#retail .retail-table {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid #fff;
  margin-top: 60px;
  max-width: 555px;
}

#retail .retail-cell {
  flex-basis: 25%;
  background-color: #8dc63f;
  height: 200px;
  text-align: center;
  position: relative;
}

#retail .retail-cell img {
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 130px;
}

#retail .retail-cell p {
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  top: 90px;
}

#retail .retail-cell:nth-child(1),
#retail .retail-cell:nth-child(2),
#retail .retail-cell:nth-child(3),
#retail .retail-cell:nth-child(4) {
  border-bottom: 1px solid #fff;
}

#retail .retail-cell:nth-child(1),
#retail .retail-cell:nth-child(2),
#retail .retail-cell:nth-child(3),
#retail .retail-cell:nth-child(5),
#retail .retail-cell:nth-child(6),
#retail .retail-cell:nth-child(7) {
  border-right: 1px solid #fff;
}

#retailers {
  background-color: #fff;
  padding: 60px 0;
}

.retailers-title {
  position: relative;
}

.retailers-title::before {
  content: '';
  height: 4px;
  background-color: #174a7c;
  position: absolute;
  width: 800px;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.retailers-title h2 {
  background-color: #174a7c;
  font-weight: normal;
  width: 440px;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  padding: 10px 30px;
  position: relative;
}

.retailers-carousel-wrapper {
  margin-top: 60px;
  padding: 0 100px;
}

.retailers-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  margin-top: 0;
}

.retailers-carousel .owl-nav .owl-prev,
.retailers-carousel .owl-nav .owl-next {
  position: absolute;
  top: -40px;
  background-color: #fff;
  border-radius: 0;
}

.retailers-carousel .owl-nav .owl-prev:hover,
.retailers-carousel .owl-nav .owl-next:hover {
  background-color: #fff;
}

.retailers-carousel .owl-nav .owl-prev i,
.retailers-carousel .owl-nav .owl-next i {
  color: #174a7c;
  font-size: 56px;
  transition: all .3s ease;
}

.retailers-carousel .owl-nav .owl-prev {
  left: -100px;
}

.retailers-carousel .owl-nav .owl-next {
  right: -100px;
}

#potential {
  padding: 60px 0;
  text-align: center;
}

.numbers-section-headline {
  margin-top: 80px;
  position: relative;
}

.numbers-section-headline::before {
  content: '';
  width: 800px;
  position: absolute;
  height: 4px;
  width: 800px;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.numbers-section-headline h3 {
  background-color: #fff;
  padding: 10px 30px;
  color: #174a7c;
  text-transform: uppercase;
  text-align: center;
  width: 440px;
  margin: 0 auto;
  font-size: 30px;
  position: relative;
}

.numbers-section-text {
  margin-top: 30px;
}

.numbers-section-text p {
  font-size: 18px;
}

#potential {
  border-bottom: 12px solid #8dc63f;
}

.potential-carousel-wrapper,
.potential-carousel-wrapper > .carousel {
  height: 500px;
}

.potential-instance h3 {
  color: #8dc63f;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  font-size: 32px;
}

.potential-instance-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
	margin-top: 10px;
}

.potential-instance-1-statics {
  display: flex;
  text-align: center;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 100px;
  margin-top: 50px;
}

.potential-instance-1-statics .potential-instance {
  flex-basis: 30%;
}

.potential-instance-1-statics .potential-instance img {
  width: 96px;
  height: auto;
}

.potential-instance-1-statics .potential-instance .potential-stat-number {
  font-weight: 900;
  font-size: 72px;
  color: #8dc63f;
}

.potential-instance-1-statics .potential-instance p {
  font-size: 18px;
  padding: 0 30px;
}

.potential-carousel-wrapper .carousel-control {
  background-image: none;
  height: 40px;
  width: 40px;
  opacity: 1;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.potential-carousel-wrapper .carousel-control i { font-size: 56px; }

.potential-instance-2-logos-wrapper {
  padding: 0 100px;
}

.potential-instance-2-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.potential-logo-instance {
  height: 150px;
  flex-basis: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.carousel-indicators li {
  border: none;
  background-color: #fff;
}

.carousel-indicators li.active {
  background-color: #8dc63f;
}

.map-block-title {
  padding: 60px 0;
  border-bottom: 4px solid #8dc63f;
  text-align: center;
  background-color: #174a7c;
}

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}

#contact {
  padding: 60px 0;
  border-bottom: 4px solid #8dc63f;
}

#contact .subtitle-wrapper {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 60px;
}

#contact .subtitle-wrapper img {
  margin-top: 20px;
  width: 100%;
  max-width: 280px;
  height: auto;
}

#contact .subtitle-wrapper p {
  font-size: 20px;
  margin-top: 20px;
  text-align: left;
}

#contact .contact-socials {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

#contact .contact-socials a {
  font-size: 36px;
  margin: 0 5px;
}

#contact label {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  display: block;
  border: 1px solid #fff;
  width: 100%;
  background-color: transparent;
  height: 40px;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

#contact textarea {
  height: 100px;
  resize: none;
  padding: 10px;
}

#contact .form-contact-us {
  margin-top: 40px;
}

#contact input[type="submit"]{
  text-transform: uppercase;
  font-size: 28px;
  border-radius: 45px;
  border: 2px solid #fff;
  transition: all .3s ease;
  background-color: transparent;
  padding: 10px 50px;
  font-weight: bold;
  margin-top: 30px;
}

#contact input[type="submit"]:hover {
  background-color: #8dc63f;
}

#footer {
  background-color: #174a7c;
}

.footer-content {
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-content img {
  max-width: 280px;
}

.footer-content p {
  font-size: 18px;
}

.form-resp {
  margin-top: 20px;
}

.vertical-carousel {
  width: 200px;
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: rgba(255, 0, 0, .5);
}

#demo ul {
  width: 100%;
  opacity: 0;
  list-style-type: none;
}

#demo li {
  font-size: 18px;
}

/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */

@media (max-width: 1199px){
  .map-convenience-separator {
    height: 60px;
  }

  .convenience-image,
  .retail-image {
    display: none;
  }

  .convenience-text,
  .retail-text {
    flex-basis: 100%;
  }

  .convenience-text-split-container {
    max-width: 100%;
  }

  #retail .retail-table {
    margin: 60px auto;
  }
}

@media (max-width: 991px){
  .main-menu {
    position: fixed;
    top: 100px;
    right: -280px;
    width: 280px;
    height: calc(100vh - 100px);
    background-color: #174a7c;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: all .3s ease;
    z-index: 10000;
  }

  .main-menu.open {
    right: 0;
    opacity: 1;
  }

  .main-menu ul {
    flex-wrap: wrap;
    padding: 35px;
    height: auto;
  }

  .main-menu ul li {
    flex-basis: 100%;
  }

  .main-menu ul li a {
    display: block;
    padding: 10px 0;
  }

  .general-image-background {
    background-image: url('../images/video-background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 100px);
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: -2;
  }

  #map {
    padding-bottom: 0;
    padding-top: 30px;
  }

  #map .map-content img {
    margin-bottom: 0;
  }

  .potential-instance-1-statics .potential-instance .potential-stat-number {
    font-size: 56px;
  }

  .potential-instance-1-statics {
    padding: 0 60px;
  }

  .potential-instance-1-statics .potential-instance p {
    font-size: 14px;
  }

  .potential-logo-instance {
    height: 100px;
  }

  .potential-logo-instance img {
    max-width: 150px;
  }

  .retailers-title::before,
  .numbers-section-headline::before {
    width: 620px;
  }

  .footer-content {
    justify-content: center;
    padding: 30px 15px;
  }

} /* end of (max-width: 991) */



@media (max-width: 767px){
  #hero {
    min-height: 500px;
    position: relative;
  }

  .hero-content {
    top: 50%;
  }

  .hero-content h2,
  #map .map-content h2,
  #convenience h2,
  #retail h2,
  #potential h2 {
    font-size: 24px;
  }

  #map {
    padding-bottom: 0;
    padding-top: 30px;
  }

  #map .map-content img {
    margin-bottom: 0;
  }

  #gallery .carousel-indicators {
    width: 100% !important;
    border: none;
    box-shadow: none;
  }

  #gallery .carousel-indicators li {
    border: none !important;
  }

  .mobile-control-bar {
    height: 50px;
    background-color: #f2f2f2;
  }

  #gallery .carousel-control,
  #gallery .carousel-control:hover {
    color: #8dc63f;
    top: 33px;
  }

  #gallery .carousel-control.left {
    left: 10px;
  }

  #gallery .carousel-control.right {
    right: 10px;
  }

  #retail .retail-text {
    padding-right: 0;
  }

  .retailers-carousel-wrapper {
    padding: 0 50px;
  }

  .retailers-carousel .owl-nav .owl-prev {
    left: -50px;
  }

  .retailers-carousel .owl-nav .owl-next {
    right: -50px;
  }

  .retailers-title h2 {
    width: 210px;
    font-size: 24px;
  }

  .retailers-title::before {
    width: 280px;
  }

  #retail {
    padding-bottom: 0;
  }

  #retailers {
    padding: 40px 0;
  }

  .retailers-carousel-wrapper {
    margin-top: 40px;
  }

  .potential-instance h3 {
    font-size: 22px;
  }

  .potential-instance-subtitle {
    font-size: 16px;
  }

  .potential-instance-1-statics .potential-instance {
    flex-basis: 100%;
  }

  .potential-carousel-wrapper,
  .potential-carousel-wrapper > .carousel {
    height: 980px;
  }

  .numbers-section-headline h3 {
    width: 210px;
    font-size: 24px;
  }

  .retailers-title::before,
  .numbers-section-headline::before {
    width: 280px;
  }

  .numbers-section-headline {
    margin-top: 20px;
  }

  .potential-instance-2-logos-wrapper {
    padding: 0;
  }

  .potential-logo-instance {
    flex-basis: 100%;
  }

  .numbers-section-text p {
    margin-bottom: 10px;
  }

  #potential {
    padding-bottom: 30px;
  }

  #contact input[type="submit"] {
    font-size: 18px;
  }

  .footer-content {
    height: 250px;
  }

  .footer-content p {
    text-align: center;
    font-size: 16px;
  }

  #contact .subtitle-wrapper {
    padding: 0 30px;
  }

  .footer-content img {
    max-width: 200px;
  }

  #demo li {
    font-size: 12px;
    margin-bottom: 20px;
  }
} /* end of (max-width: 767) */


@media (max-width: 560px){
  #convenience .retail-cell {
    flex-basis: 50%;
  }

  #convenience .retail-cell:nth-child(5),
  #convenience .retail-cell:nth-child(6) {
    border-bottom: 1px solid #fff;
  }

  #convenience .retail-cell:nth-child(2),
  #convenience .retail-cell:nth-child(6) {
    border-right: none;
  }
}

@media (max-width: 560px){
  #retail .retail-cell {
    flex-basis: 50%;
  }

  #retail .retail-cell:nth-child(5),
  #retail .retail-cell:nth-child(6) {
    border-bottom: 1px solid #fff;
  }

  #retail .retail-cell:nth-child(2),
  #retail .retail-cell:nth-child(6) {
    border-right: none;
  }
}


@media (max-width: 413px){
  .hero-content {
    padding: 0 15px;
  }

  .hero-content img {
    max-width: 270px;
  }
} /* end of (max-width: 413) */


@media (max-width: 380px){
  .header-logo-image {
    max-width: 200px;
  }

  #nav-icon1 {
    width: 30px;
    height: 30px;
  }

  #nav-icon1 span:nth-child(2) {
    top: 9px;
  }

  #nav-icon1 span:nth-child(3) {
    top: 18px;
  }

  #nav-icon1.open span:nth-child(1),
  #nav-icon1.open span:nth-child(3) {
    top: 14px;
  }
} /* end of (max-width: 380) */

#floorplans {
  border-bottom: 12px solid #8dc63f; padding: 70px 0 60px;
  background-image: url("../images/floorplans/floorplan-bg-overlay.jpg"); background-position: center; background-size: cover;
}
.tabbable-line > .nav-tabs { border: none; margin: 0 0 40px; }
.tabbable-line > .nav-tabs > li { float: none; display: inline-block; *display: inline; zoom: 1; }
.tabbable-line > .nav-tabs > li,
.tabbable-line > .nav-tabs > li a { background: none !important; }
.tabbable-line > .nav-tabs > li > a { border: 0; color: #ffffff; font-weight: 600; font-size: 24px;  }
.tabbable-line > .nav-tabs > li.open,
.tabbable-line > .nav-tabs > li:hover { border-bottom: 4px solid #8dc63f; }
.tabbable-line > .nav-tabs > li.open > a,
.tabbable-line > .nav-tabs > li:hover > a { border: 0; background: none !important; color: #8dc63f; }
.tabbable-line > .nav-tabs > li.open > a > i, .tabbable-line > .nav-tabs > li:hover > a > i { color: #a6a6a6; }
.tabbable-line > .nav-tabs > li.open .dropdown-menu, .tabbable-line > .nav-tabs > li:hover .dropdown-menu { margin-top: 0px; }
.tabbable-line > .nav-tabs > li.active { border-bottom: 4px solid #8dc63f; position: relative; }
.tabbable-line > .nav-tabs > li.active > a { border: 0; color: #8dc63f; }
.tabbable-line > .tab-content { border: 0; padding: 15px 0; }
.portlet .tabbable-line > .tab-content { padding-bottom: 0; }

.potential-carousel-wrapper .item img.fullslide { max-height: 440px; width: auto; margin: 0 auto 10px; }
#floorplans .tabbable-line { padding-top: 20px; }
#floorplans .potential-carousel-wrapper .item h3 { font-size: 24px; line-height: 24px; margin-bottom: 10px; }
#floorplans .potential-carousel-wrapper .item p { font-size: 16px; line-height: 16px; margin-bottom: 0; }


.potential-carousel-wrapper .item img.popup:hover {opacity: 0.7;  cursor: pointer;}

#modal_image.modal {
  display: none; position: fixed; z-index: 1; padding-top: 100px; left: 0; top: 0; width: 100%; height: 100%;
  overflow: auto; background-color: rgba(0,0,0,0.9); z-index: 9999;
}
#modal_image .modal-content { background: none !important; }
#modal_image .modal-content img { margin: auto; display: block; width: 90%; max-width: 1400px; }

#modal_image .caption { margin: auto; display: block; width: 80%; max-width: 700px; text-align: center; color: #ccc; padding: 10px 0; height: 150px; }

#modal_image .modal-content img,
#modal_image .caption { animation-name: zoom; animation-duration: 0.6s; }

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

#modal_image .close { position: absolute; top: 15px; right: 35px; color: #f0f0f0; font-size: 40px; font-weight: bold; transition: 0.3s; opacity: 1 !important }

#modal_image .close:hover,
#modal_image .close:focus { color: #fff; text-decoration: none; cursor: pointer; }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 767px){
  #modal_image .modal-content img { width: 100%; }
  #floorplans .potential-carousel-wrapper,
  #floorplans .potential-carousel-wrapper > .carousel {
    height: auto !important;
  }
}
@media only screen and (max-width: 1199px) {
    .main-menu li:not(:last-child) { margin-right: 15px; }
    .main-menu a { font-size: 12px; }
}
#video_block{
border-bottom: 12px solid #8dc63f;

}

#video_block { position: relative; padding-bottom: 43%; padding-top: 30px; height: 0; overflow: hidden; }


#video_block iframe, 
#video_block object, 
#video_block embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }