/***** RESET *****/
html, body, div, object, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, form, fieldset, input, textarea, select, label, legend, button, a, small, table, th, td {margin:0; padding:0; line-height:1em;}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {display:block;}
audio, canvas, video {display:inline-block;}
body {text-rendering:optimizeLegibility;}
html, fieldset, img, abbr {border:0;}
img {vertical-align:middle;}
ul, ol {padding-left:1.5em;}
input, textarea, select, button {font-size:1em; font-family:inherit;}
input[type="text"] {-webkit-appearance:none; border-radius:0;}
button, input[type="button"], input[type="reset"], input[type="submit"], label[for] {cursor:pointer;}
sup, sub {position:relative; top:-.4em; vertical-align:baseline;}
sub {top:.3em;}
table {border-collapse:collapse; border-spacing:0;}
th {text-align:left;}
code {white-space:pre;}
abbr[title] {cursor:help;}
ins {text-decoration:none;}
q:before, q:after {content:"";}
a:hover, a:focus, a:active {outline:0;}
/***** CLEARFIX *****/
.cf:before, .cf:after {content:""; display:table;}
.cf:after {clear:both;}
/*Font Families*/
@font-face {
    font-family: "Brandon Bold";
    src: url(../fonts/brandon_bld-webfont.ttf) format("truetype"),
         url(../fonts/brandon_bld-webfont.woff) format("woff"),
         url(../fonts/brandon_bld-webfont.woff2) format("woff2");
}
@font-face {
    font-family: "Brandon Light";
    src: url(../fonts/brandon_light-webfont.ttf) format("truetype"),
         url(../fonts/brandon_light-webfont.woff) format("woff"),
         url(../fonts/brandon_light-webfont.woff2) format("woff2");
}
@font-face {
    font-family: "Brandon Medium";
    src: url(../fonts/brandon_med-webfont.woff) format("woff"),
         url(../fonts/brandon_med-webfont.woff2) format("woff2");
}
@font-face {
    font-family: "Brandon Regular";
    src: url(../fonts/brandon_reg-webfont.woff) format("woff"),
         url(../fonts/brandon_reg-webfont.woff2) format("woff2");
}


/*Globals*/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  --brandon-bold: "Brandon Bold", sans-serif;
  --brandon-light: "Brandon Light", sans-serif;
  --brandon-medium: "Brandon Medium", sans-serif;
  --brandon-regular: "Brandon Regular", sans-serif;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

body * {
  font-family: var(--brandon-regular);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 0px;  /* remove scrollbar space */
    background: transparent;  /* optional: just make scrollbar invisible */
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;
    outline: 0;
}
.container {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

div[class^="col-"] {
  float: left;
}
.col-fifths {
  width: 20%;
  text-align: center;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-6 {
  width: 50%;
}

.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.emphasis {
  font-family: var(--brandon-bold);
  font-size: 1.75em;
  margin: 5px 0;
}
.emphasis-full {
  display: block;
  font-family: var(--brandon-bold);
  font-size: 1.75em;
  margin: 5px 0;
}


.modal-overlay .modal-content .content .col-4 p, .modal-overlay .modal-content .content .col-3 p {
  display: block;
  line-height: 1.25em;
  font-size: 15px;
  width: 95%;
  margin: 0 auto;
}
.modal-overlay .modal-content .content .col-4 img, .modal-overlay .modal-content .content .col-3 img {
  display: block;
  width: auto;
  height: 100px;
  margin: 0 auto 25px auto;
}

.img-container {
  display: block;
  position: relative;
  width: 100%;
  height: 300px;
}




/*Homepage*/
/*body.load .hero-wrapper {
  display: none;
  opacity: 0;
}*/

/*Loading Screen*/
.loading {
  z-index: 999999999;
  position: fixed;
  background-image: url(../img/backgrounds/VitaWorld-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #F1F8FA;
  background: #FFF !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.loading.slideOutRight .loading-container {
  opacity: 0;
}

.loading .screen-overlap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #171b1a;
}

.loading .loading-container {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  z-index: 9;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  background: -webkit-linear-gradient(2deg, #8fa6bc, #9d82b5, #d2a8c4);
  background: -o-linear-gradient(2deg, #8fa6bc, #9d82b5, #d2a8c4);
  background: linear-gradient(88deg, #8fa6bc, #9d82b5, #d2a8c4);
  background-size: 800% 800%;
  -webkit-animation: Gradient 4s ease infinite;
  animation: Gradient 4s ease infinite;
}

@-webkit-keyframes Gradient {
  0%{background-position:0% 56%}
    50%{background-position:100% 45%}
    100%{background-position:0% 56%}
}

@keyframes Gradient {
  0%{background-position:0% 56%}
    50%{background-position:100% 45%}
    100%{background-position:0% 56%}
}



.loading .loading-icon {
  margin: 40px auto 20px;
  width: 100px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}


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

.loading .header-container {
  position: absolute;
    top: 25%;
    left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 28px;
  word-spacing: 4px;
}

.loading .header-container h1 {
  font-family: var(--brandon-bold);
  font-size: 24px;
  color: #FFF;
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
}

.loading .header-container p {
  font-size: 22px;
  font-family: var(--brandon-light);
  color: #FFF;
  text-align: center;
}
.loading .header-container p img {
  height: 80px;
  display: block;
  margin: 10px auto;
}

.loading .header-container .torus-enter .text {
  opacity: 1;
  -webkit-transition: opacity .4s linear;
  -o-transition: opacity .4s linear;
  transition: opacity .4s linear;
}

.loading .header-container .torus-enter img {
  height: 70px;
  width: auto;
  opacity: 0;
  -webkit-transition: opacity .4s linear;
  -o-transition: opacity .4s linear;
  transition: opacity .4s linear;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.loading .header-container .torus-enter.torus-icon {
  position: relative;
  cursor: pointer;
}

.loading .header-container .torus-enter.torus-icon .text {
  opacity: 0;
}

.loading .header-container .torus-enter.torus-icon img {
  opacity: 1;
}

.hero-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.hero-wrapper .image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
}

.image-wrapper #map {
  position: relative;
  display: block;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  opacity: 0;
  position: relative;
}

.hero-wrapper.no-video .image-wrapper img {
  opacity: 1;
}

.hero-wrapper video {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.hero-wrapper video.compensate {
  height: auto !important;
  width: 100% !important;
}

.hero-wrapper.no-video video {
  display: none !important;
}

/*Hover Sections*/

@-webkit-keyframes bubble {
  0% {background-size: 10%;}
  80% {background-size: 75%;}
  100% {background-size: 65%;}
}

.image-wrapper .section {
  position: absolute;
  height: 15%;
  width: 11%;
  display: block;
  z-index: 99;
  cursor: pointer;
  background-image: url(../img/torus.gif);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 10%;
  opacity: 0;
}

.image-wrapper .section:hover,
.image-wrapper .section:active {
  opacity: 1;
  background-size: 70%;
  -webkit-animation-name: bubble;
  -webkit-animation-duration: .5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
}

.image-wrapper #section1 {
  top: 40%;
  left: 41%;
}

.image-wrapper #section2 {
  top: 27%;
  left: 13%;
}

.image-wrapper #section3 {
  top: 38%;
  left: 19%;
}

.image-wrapper #section4 {
  top: 60%;
  left: 61%;
}

.image-wrapper #section5 {
  top: 81%;
  left: 70.5%;
}

.image-wrapper #section6 {
  top: 14%;
  left: 51.5%;
}

.image-wrapper #section7 {
  top: 4%;
  left: 56%;
}

.image-wrapper #section8 {
  top: 11%;
  left: 64%;
}

.image-wrapper #section9 {
  top: 23%;
  left: 67%;
}

.image-wrapper #section10 {
  top: 16%;
  left: 86%;
}

.image-wrapper #section11 {
  top: 47%;
  left: 78%;
}

.image-wrapper #section12 {
  top: 51%;
  left: 60%;
}

.image-wrapper #section13 {
  top: 57%;
  left: 79%;
}

.image-wrapper #section14 {
  top: 33%;
  left: 26%;
}

.image-wrapper #section15 {
  top: 0%;
  left: 66.5%;
}

.image-wrapper #section16 {
  top: 60%;
  left: 46.5%;
}

.image-wrapper #section17 {
  top: 32%;
  left: 85%;
}

.image-wrapper #section18 {
  top: 70%;
  left: 18%;
}

.image-wrapper #section19 {
  top: 8%;
  left: 89%;
}

.image-wrapper #section20 {
  top: 0%;
  left: 83%;
}

.image-wrapper #section21 {
  top: 3%;
  left: 22%;
}

/*Modal Overlay with Info*/
.modal-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: perspective(1px) translate(-50%, -50%);
          transform: perspective(1px) translate(-50%, -50%);
  padding: 20px;
  border-radius: 50px;
  width: 75%;
  max-height: 97.5vh;
  max-width: 1000px;
  overflow: hidden;
}

.modal-overlay.active {
  z-index: 999;
  opacity: 1;
}

.modal-gradient {
  display: block;
  position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  z-index: -1;
  background-color: #fad0fa;
    filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#fad0fa, endColorstr=#dbfeff);
    background-image:-webkit-gradient(linear, left bottom, right top, from(#fad0fa), color-stop(65%, #dbfeff),to(#e1e3ff));
    background-image:linear-gradient(left bottom, #fad0fa 0%, #dbfeff 65%,#e1e3ff 100%);
    background-image:-webkit-linear-gradient(left bottom, #fad0fa 0%, #dbfeff 65%,#e1e3ff 100%);
    background-image:-o-linear-gradient(left bottom, #fad0fa 0%, #dbfeff 65%,#e1e3ff 100%);
    background-image:-ms-linear-gradient(left bottom, #fad0fa 0%, #dbfeff 65%,#e1e3ff 100%);
    background-image:-webkit-gradient(linear, left bottom, right top, color-stop(0%,#fad0fa), color-stop(65%,#dbfeff),color-stop(100%,#e1e3ff));
    opacity: .9;
}

.modal-overlay .close-modal {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.close-modal:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.close-modal p {
  font-size: 18px;
  word-spacing: 4px;
  letter-spacing: 2px;
  vertical-align: -webkit-baseline-middle;
  display: inline-block;
}

.close-modal img {
  display: inline-block;
  height: 20px;
}

.modal-overlay .modal-content {
  height: auto;
  width: 85%;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin: 0 auto;
  padding: 15px 0;
}

.modal-overlay .modal-content .header {
  font-family: var(--brandon-bold);
  word-spacing: 4px;
  letter-spacing: 2px;
  font-size: 20px;
  text-align: center;
}

.modal-overlay .modal-content .content {
  word-spacing: 2px;
  letter-spacing: 1px;
  margin-top: 15px;
}

.modal-overlay .modal-content .content p {
  line-height: 1.4em;
  margin-bottom: 25px;
  font-size: 16px;
  text-align: center;
}
.modal-overlay .modal-content .content p: {
}


.modal-overlay .modal-content .content p:last-child {
  margin-bottom: 0;
}

.modal-overlay .modal-content .content p b {
  font-family: var(--brandon-bold);
}

/*water purification slide*/


/*mandala gardens slide*/
#mandalaGardenSlide .col-6 {
  height: 250px;
}
#mandalaGardenSlide .col-6:first-child img {
  display: block;
  height: 100%;
  width: auto;
  margin: 0 auto;
}
#mandalaGardenSlide .col-6:nth-child(2) {
  position: relative;
  display: block;
}
#mandalaGardenSlide .col-6:nth-child(2) div {
  position: absolute;
  width: 100%;
}
#mandalaGardenSlide .col-6:nth-child(2) div:first-child {
  top: 18%;
}
#mandalaGardenSlide .col-6:nth-child(2) div:nth-child(2) {
  top: 42%;
}
#mandalaGardenSlide .col-6:nth-child(2) div:nth-child(3) {
  top: 66%;
}
#mandalaGardenSlide .col-6:nth-child(2) div img, #mandalaGardenSlide .col-6:nth-child(2) div p {
  display: block;
  float: left;
}
#mandalaGardenSlide .col-6:nth-child(2) div img {
  width: 30px;
  margin-right: 25px;
}
#mandalaGardenSlide .col-6:nth-child(2) div p {
  font-family: var(--brandon-med);
  font-size: 15px;
  width: 80%;
  text-align: left;
}

/*neem trees slide*/
#neemTreesSlide .col-3 img {
  width: auto;
  height: 60px;
}
#neemTreesSlide .col-3 p, #oceanSlide .col-3 p {
  font-size: 15px;
  font-family: var(--brandon-bold);
}
#neemTreesSlide .content p:first-child, #oceanSlide .content p:first-child {
  display: block;
  width: 75%;
  margin: 0 auto 25px auto;
}
#oceanSlide .container, #skySlide .container {
  margin: 50px 0;
}
#oceanSlide .content p:last-child,  #skySlide .content p:last-child {
  display: block;
  width: 75%;
  margin: 0 auto;
}

/*recycling slide*/
#recyclingSlide .container {
  margin-bottom: 50px;
}
#recyclingSlide .col-fifths {
  height: 300px;
}
#recyclingSlide .col-fifths div {
  position: relative;
  height: 50%;
  margin-bottom: 20px;
}
#recyclingSlide .col-fifths div img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
#recyclingSlide .col-fifths p {
  font-size: 14px;
  width: 95%;
  margin: 0 auto;
}

/*the sky slide*/
#skySlide .content p:first-child {
  display: block;
  width: 80%;
  margin: 0 auto;
}

/*solar panel slide*/
#solarPanelRoadSlide .col-6 {
  margin-top: 25px;
  margin-bottom: 25px;
}
#solarPanelRoadSlide .col-6 p {
  text-align: left;
  font-family: var(--brandon-bold);
  font-size: 16px;
  padding-left: 50px;
}
#solarPanelRoadSlide .col-6:last-child {
  text-align: center;
}
#solarPanelRoadSlide .col-4 p {
  font-family: var(--brandon-bold);
}
#solarPanelRoadSlide .col-4 img {
  height: 60px;
}
#solarPanelRoadSlide p:nth-child(3) {
  font-family: var(--brandon-bold);
}

/*drones slide*/
.modal-overlay #dronesSlide .content > p:last-child {
  margin: 0 auto;
  width: 66.66%;
}
#dronesSlide .img-container {
  height: auto;
  text-align: center;
  margin-bottom: 55px;
}
#dronesSlide .img-container div {
  position: absolute;
  width: 200px;
}
#dronesSlide .img-container div:nth-child(2) {
  bottom: 50px;
}
#dronesSlide .img-container div:nth-child(3) {
  bottom: -35px;
  left: calc(50% - 100px);
}
#dronesSlide .img-container div:nth-child(4) {
  bottom: 50px;
  right: 0;
}
#dronesSlide .img-container div h2 {
  font-size: 14px;
  font-family: var(--brandon-bold);
  margin-bottom: 5px;
}
#dronesSlide .img-container div p {
  font-size: 15px;
  font-family: var(--brandon-reg);
  line-height: 1em;
}
#dronesSlide img {
  width: 45%;
  margin: 0 0 25px 0;
}

/*hyperloop slide*/
#hyperloopSlide img {
  height: auto;
  width: auto;
}
#hyperloopSlide .col-4 p {
  font-family: var(--brandon-bold);
  display: block;
  width: 90%;
  margin: 0 auto;
  font-size: 12px;
}
#hqSlide h2 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}
#hqSlide p:nth-child(2) {
  width: 85%;
  margin: 0 auto;
  max-width: 650px;
}
#hqSlide p:last-child {
  font-family: var(--brandon-bold);
}
#hqSlide img {
  display: block;
  width: 35%;
  margin: 0 auto;
  min-width: 250px;
}
#hqSlide .img-container {
  max-width: 800px;
  margin: 0 auto;
}
#hqSlide .img-container p {
  position: absolute;
    top: 45%;
    left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 150px;
  color: #666;
  font-size: 18px;
}

/*self-driving cars slide*/
#selfDrivingSlide .img-container {
  display: block;
  width: 35%;
  margin: 0 auto;
}
#selfDrivingSlide .img-container img {
  display: block;
  width: 100%;
  height: auto;
}
#selfDrivingSlide .img-container p {
  position: absolute;
  width: 200px;
  font-size: 14px;
}
#selfDrivingSlide .img-container p:nth-child(2) {
  text-align: right;
  top: 8px;
  left: -150px;
}
#selfDrivingSlide .img-container p:nth-child(3) {
  text-align: right;
  top: 50%;
  left: -200px;
}
#selfDrivingSlide .img-container p:nth-child(4) {
  text-align: left;
  top: 10%;
  right: -200px;
}
#selfDrivingSlide .img-container p:nth-child(5) {
  text-align: left;
  top: 50%;
  right: -200px;
}
#selfDrivingSlide .content p:first-child {
  width: 75%;
  margin: 0 auto 25px auto;
}

/*bee slide*/
#beeSlide .img-container {
  height: 375px;
  max-width: 800px;
  margin: 0 auto;
}
#beeSlide .img-container div p {
  display: block;
  font-family: var(--brandon-bold);
  font-size: 12px;
  width: 65%;
  position: absolute;
    top: 50%;
    left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#beeSlide .img-container div {
  position: absolute;
  height: 15.5vw;
  width: 15.5vw;
    max-height: 200px;
    max-width: 200px;
}
#beeSlide .img-container div:first-child {
  background: url(../img/bee_aware/asset_02.png) 50% 50% no-repeat;
  background-size: contain;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
#beeSlide .img-container div:nth-child(2) {
  background: url(../img/bee_aware/asset_01.png) 50% 50% no-repeat;
  background-size: contain;
  left: 13.5%;
}
#beeSlide .img-container div:nth-child(3) {
  background: url(../img/bee_aware/asset_03.png) 50% 50% no-repeat;
  background-size: contain;
  left: 61%;
}
#beeSlide .img-container div:nth-child(4){
  background: url(../img/bee_aware/asset_04.png) 50% 50% no-repeat;
  background-size: contain;
  top: 43%;
  left: 25.5%;
}
#beeSlide .img-container div:nth-child(5){
  background: url(../img/bee_aware/asset_05.png) 50% 50% no-repeat;
  background-size: contain;
  top: 43%;
  left: 49%;
}

/*wind energy slides*/
#windEnergySlide .content p:first-child, #windSlide .content p:first-child {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#windEnergySlide .content > p:last-child, #windSlide .content > p:last-child {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#windEnergySlide .img-container, #windSlide .img-container {
  width: 50%;
  margin: 10px auto 15px auto;
  height: auto;
  min-height: 275px;
}
#windEnergySlide .img-container img, #windSlide .img-container img {
  display: block;
  width: 100%;
}
#windEnergySlide .img-container p, #windSlide .img-container p {
  position: absolute;
  width: 175px;
  font-size: 14px;
}
#windEnergySlide .img-container p:nth-child(2), #windSlide .img-container p:nth-child(2) {
  text-align: left;
  top: 20%;
  left: -180px;
}
#windEnergySlide .img-container p:nth-child(3), #windSlide .img-container p:nth-child(3) {
  text-align: right;
  left: 90%;
  top: 40%;
}


/*neem tree cafe*/
#neemTreeCafeSlide .container {
  margin-bottom: 15px;
}
#neemTreeCafeSlide > div > p:nth-child(1){
  margin-bottom: 0;
}
#neemTreeCafeSlide .img-container {
  display: block;
  width: 75%;
  height: auto;
  margin: 0 auto 20px auto;
}
#neemTreeCafeSlide .img-container img {
  display: block;
  width: 100%;
  height: auto;
}
#neemTreeCafeSlide .img-container ul {
  position: absolute;
    left: 50%;
    top: 25px;
  width: 275px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-left: 0;
  text-align: left;
  font-size: 15px;
}
#neemTreeCafeSlide .img-container ul p {
  font-family: var(--brandon-bold);
  font-size: 15px;
  margin-bottom: 0;
  text-align: left;
}
#neemTreeCafeSlide .img-container ul li {
  padding-left: 0;
}
#neemTreeCafeSlide .container:nth-child(3) img {
  display: block;
  height: 50px;
  width: auto;
  margin: 0 auto 10px auto;
}
#neemTreeCafeSlide .container:nth-child(3) p {
  display: block;
  font-size: 15px;
  width: 80%;
  margin: 0 auto;
}
#neemTreeCafeSlide p:nth-child(4) {
  display: block;
  width: 75%;
  font-size: 18px;
  margin: 0 auto 20px auto;
  font-family: var(--brandon-bold); 
}
#neemTreeCafeSlide .container:nth-child(5) img {
  display: block;
  height: 50px;
  width: auto;
  margin: 0 auto 10px auto;
}
#neemTreeCafeSlide .container:nth-child(5) .col-4:nth-child(2) img {
  height: 100px;
}

body .hero-wrapper {
  opacity: 0;
}


@media (max-width: 500px) and (orientation:portrait){
  .header-container {
    -webkit-transform: rotate(270deg) !important;
        -ms-transform: rotate(270deg) !important;
            transform: rotate(270deg) !important;
    left: 0 !important;
  }
}

@media (max-width: 800px) and (orientation:landscape){

  html {
    width: 100%;
    overflow: auto;
  }

  body {
    width: 100vw;
    height: 100vh;
    overflow: auto;
  }
  .loading-container {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-wrapper {
      width: 100vw;
      height: 100vh;
      position: fixed;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
  }
  .header {
    font-size: 16px !important;
  }
  .header-container {
    top: 7.5% !important;
  }
  .loading .header-container h1 {
    margin-bottom: 35px;
  }
  .header-container p {
    width: 380px;
    margin: 0 auto;
  }
  .emphasis-full, .emphasis {
    display: inline-block;
    font-size: 1.25em;
  }
  .hero-wrapper .image-wrapper {
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .modal-overlay {
    position: fixed !important;
      top: 1%;
      bottom: 1%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: perspective(1px) translate(-50%, 0);
            transform: perspective(1px) translate(-50%, 0);
    max-height: none!important;
    width: 98% !important;
    padding: 10px 20px;
    background-color: #fad0fa;
      filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#fad0fa, endColorstr=#dbfeff);
      background-image:-webkit-gradient(linear, left bottom, right top, from(#fad0fa), color-stop(65%, #dbfeff),to(#e1e3ff));
      background-image:linear-gradient(left bottom, #fad0fa 0%, #dbfeff 65%,#e1e3ff 100%);
      background-image:-webkit-linear-gradient(left bottom, #fad0fa 0%, #dbfeff 65%,#e1e3ff 100%);
      background-image:-o-linear-gradient(left bottom, #fad0fa 0%, #dbfeff 65%,#e1e3ff 100%);
      background-image:-ms-linear-gradient(left bottom, #fad0fa 0%, #dbfeff 65%,#e1e3ff 100%);
      background-image:-webkit-gradient(linear, left bottom, right top, color-stop(0%,#fad0fa), color-stop(65%,#dbfeff),color-stop(100%,#e1e3ff));
    border-radius: 25px;
  }
  .modal-overlay .modal-content {
    width: 95% !important;
    height: 100%;
    padding: 10px 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-overlay .modal-content .content {
    margin-top: 10px;
    padding: 0;
  }
  .modal-overlay .modal-content .content p {
    line-height: 16px;
  }
  .modal-overlay .modal-content .content .col-4 p, .modal-overlay .modal-content .content .col-3 p {
    font-size: 13px;
  }
  .modal-overlay .modal-content .content .col-4 img, .modal-overlay .modal-content .content .col-3 img {
    height: 60px;
    margin: 10px auto 15px auto;
  }
  .modal-overlay .close-modal {
    top: 15px;
    right: 20px;
  }
  .modal-overlay .close-modal img {
    height: 15px;
  }

  .img-container {
    height: 190px !important;
  }

  /*bee slide*/
  #beeSlide .content > p:first-child {
    margin-bottom: 15px;
  }
  #beeSlide .content p:last-child {
    width: 80%;
    margin: 0 auto;
  }
  #beeSlide .img-container {
    width: 250px !important;
    height: 150px !important;
  }
  #beeSlide .img-container div {
    width: 75px;
    height: 75px;
  } 
    #beeSlide .img-container div:nth-child(2) {
      left: 18px;
    }
    #beeSlide .img-container div:nth-child(3) {
      left: 158px;
    }
    #beeSlide .img-container div:nth-child(4) {
      left: 52px;
      top: 62px;
    }
    #beeSlide .img-container div:nth-child(5) {
      left: 123px;
      top: 62px;
    }
  #beeSlide .img-container p {
    display: none !important;
  }

  /*hq slide*/
  #hqSlide p:nth-child(2) {
    width: 100%;
  }
  #hqSlide .content > p:nth-child(2) {
    width: 80%;
  }
  #hqSlide .img-container {
    height: 150px !important;
    margin: 25px auto;
  }
  #hqSlide .img-container p {
    display: none;
  }
  #hqSlide .img-container img {
    height: 100% !important;
    width: auto !important;
    min-width: auto !important;
  }

  /*drone slide*/
  #dronesSlide .content > p:first-child {
    margin-bottom: 0;
  }
  #dronesSlide .img-container {
    margin-bottom: 0;
    height: 185px !important;
  }
  #dronesSlide .content .img-container img {
    height: 70%;
    width: auto;
    margin-top: 25px;
  }
  #dronesSlide .img-container div:nth-child(2) {
    bottom: 70px;
  }
  #dronesSlide .img-container div:nth-child(3) {
    right: 0;
    left: auto;
    bottom: 30px;
  }
  #dronesSlide .img-container div:nth-child(4) {
    bottom: 130px;
  }
  #dronesSlide .img-container p {
    font-size: 14px !important;
  }
  #dronesSlide .content > p:last-child {
    width: 80% !important;
  }

  /*recycling slide*/
  .modal-overlay #recyclingSlide {
    width: 100% !important;
  }
  #recyclingSlide .col-fifths {
    height: 165px !important;
  }
  #recyclingSlide .content > p:last-child {
    width: 55%;
    text-align: left;
    margin-left: 100px;
    margin-top: 50px;
  }
  #recyclingSlide .col-fifths img {
    width: 20%;
  }
  #recyclingSlide .container {
    margin-bottom: 25px;
  }

  /*the ocean slide*/
  #oceanSlide .container, #skySlide .container {
    margin: 25px auto;
  }
  #oceanSlide .content > p:first-child {
    width: 90%;
  }
  #oceanSlide .content > p:last-child {
    width: 100%;
  }
  #oceanSlide .col-3 p {
    font-size: 12px !important;
    width: 90% !important;
    margin-top: 15px;
  }

  /*the sky slide*/
  #skySlide .content > p:first-child {
    width: 100%;
    font-size: 15px;
  }
  #skySlide .content > p:last-child {
    font-size: 15px;
    width: 80%;
    margin: 0 auto;
  }
  #skySlide .container {
    margin: 10px auto;
  }
  .modal-overlay .modal-content#skySlide {
    width: 95%;
  }
  #skySlide .content .col-4 p {
    width: 100%;
    padding: 0 5px;
    line-height: 1.2em;
  }
  #skySlide .content .col-4 img {
    margin: 0 auto 15px auto
  }

  /*water purification slide*/
  #waterPurificationSlide .content > p:last-child {
    display: none;
  }

  /*neem trees slide*/
  #neemTreesSlide .content > p:first-child {
    width: 100%;
  }
  #neemTreesSlide .col-3 img {
    height: 50px;
    margin: 0 auto 15px auto;
  }

  /*mandala garden slide*/
  #mandalaGardenSlide .col-6 {
    height: 145px;
  }
  #mandalaGardenSlide .col-6:nth-child(2) div:first-child {
    top: 0;
  }
  #mandalaGardenSlide .col-6:nth-child(2) div:nth-child(2) {
    top: 36%;
  }
  #mandalaGardenSlide .col-6:nth-child(2) div:nth-child(3) {
    top: 72%;
  }
  #mandalaGardenSlide .col-6 p {
    line-height: 13px;
  }

  /*self-driving slide*/ 
  .modal-overlay #selfDrivingSlide .content > p:first-child {
    width: 100%;
    margin: 0 auto 15px auto;
  }
  .modal-overlay #selfDrivingSlide .content > p:last-child {
    width: 80%;
    margin: 0 auto;
  }
  #selfDrivingSlide .img-container {
    margin: 0 auto 15px auto;
  }
  #selfDrivingSlide .img-container p {
    line-height: 13px;
    font-size: 13px;
  }
  #selfDrivingSlide .img-container p:nth-child(2) {
    top: 10px;
  }
  #selfDrivingSlide .img-container p:nth-child(4) {
    top: 10px;
  }

  /*wind slides*/

  #windEnergySlide .img-container, #windSlide .img-container {
    min-height: auto;
  }
  #windEnergySlide .img-container img , #windSlide .img-container img {
    height: 100%;
    width: auto;
    margin: 0 auto;
  }
  #windEnergySlide .content > p:first-child, #windSlide .content > p:last-child {
    width: 95%;
  }
  #windEnergySlide .img-container p, #windSlide .img-container p {
    font-size: 14px;
  }
  #windEnergySlide .content > p:last-child, #windSlide .content > p:last-child {
    width: 100%;
  }
  #windEnergySlide .img-container p:nth-child(2), #windSlide .img-container p:nth-child(2) {
    left: -145px;
  }
  #windEnergySlide .img-container p:nth-child(3), #windSlide .img-container p:nth-child(3) {
    left: 87%;
  }

  /*solar panel roads slide*/
  #solarPanelRoadSlide .content > p:first-child {
    margin-bottom: 5px;
    padding: 0 50px;
  }
  #solarPanelRoadSlide .content > p:nth-child(3) {
    display: none;
  }
  #solarPanelRoadSlide > div > div:nth-child(4) {
    margin: 20px auto !important;
  }
  #solarPanelRoadSlide .container {
    margin-bottom: 0;
    margin-top: 25px;
  }
  #solarPanelRoadSlide .col-6 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #solarPanelRoadSlide .col-6 p {
    font-size: 15px;
    line-height: 16px;
  }
  #solarPanelRoadSlide .col-6 img {
    width: 60%;
  }
  #solarPanelRoadSlide .col-4:nth-child(2) p {
    padding: 0 10px;
  }

  /*hyperloop slide*/
  #hyperloopSlide img {
    height: 130px;
    margin-bottom: 10px;
  }

  /*solar power slide*/
  #solarPowerSlide .container {
    margin-bottom: 15px;
  }
  #solarPowerSlide .col-4 p {
/*    font-family: var(--brandon-bold) !important;
*/    font-size: 14px;
  }
  #solarPowerSlide .col-4 img {
    height: 80px;
  }
  #solarPowerSlide .content > p:last-child {
    width: 80%;
    margin: 0 auto;
  }

  /*neem tree slide*/
  #neemTreesSlide .container {
    margin-bottom: 15px;
  }
  #neemTreesSlide .col-3 img {
    height: 50px;
    margin: 0 auto 5px auto;
  }
  #neemTreesSlide .col-3 p {
    font-size: 12px !important;
  }


  /*neem tree cafe slide*/
  #neemTreeCafeSlide .content > p:first-child {
    width: 80%;
    margin: 0 auto 15px auto;
  }
  #neemTreeCafeSlide .img-container {
    height: auto !important;
    margin-bottom: 10px;
    width: 66.66% !important;
  }
  #neemTreeCafeSlide .img-container ul {
    top: 0;
    left: 60%;
  }
  #neemTreeCafeSlide .img-container ul * {
    font-size: 12px !important;
  }
  #neemTreeCafeSlide .col-4 img {
    margin-bottom: 10px !important;
  }
  #neemTreeCafeSlide .col-4 p {
    font-size: 12px !important;
    width: 100% !important;
  }
  #neemTreeCafeSlide .content .container:nth-child(3) {
    margin-bottom: 0;
  }
  #neemTreeCafeSlide p:nth-child(4) {
    font-size: 14px;
    font-family: var(--brandon-reg);
    margin-bottom: 0;
    margin-top: 15px;
  }
  #neemTreeCafeSlide div:nth-child(5), #neemTreeCafeSlide p:nth-child(6) {
    display: none;
  }

  /*vertical farm slide */
  #verticalFarmSlide .container {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .modal-overlay {
    width: 85%;
  }
  .loading .header-container p img {
    display: block;
    margin: 20px auto;
  }
}