/* FIXES FOR DEFAULT TEMPLATE
---------------------------------- */

/* Margins */
@media screen and (min-width: 992px) {
    .vt-one-content-area {
        margin:0;
    }
}
@media screen and (min-width: 768px){
    #vt_no_rb {
        margin:0;
    }
    #vt_no_rb div[class$="-body"]>.vt-bodycol-content>.reference {
        margin:0;
    }
    #vt_no_rb div[class$="-body"]>.vt-bodycol-content>.rawhtml>.vt-rawhtml {
        margin:0;
    }
}
.vt-one-content-area {
    margin:0;
}
#vt_no_rb div[class$="-body"]>.vt-bodycol-content>.reference {
    margin:0;
}

/* Hide the default CALS footer (VT footer remains visible) */
footer > .row:nth-child(1).active {
    display:none;
}

/* Reset bottom margin */
.parbase > div {
    margin:0;
}

/* Hide feed readers */
div.feedreader.parbase.section {
    display:none;
}

/* BOOTSTRAP GRID TWEAK
---------------------------------- */

.container {
    max-width:1350px;
}

/* GLOBAL
---------------------------------- */

.vt-rawhtml table tr {
    background-color:transparent;
    border:none;
}
.vt-rawhtml .table {
    margin-bottom:0;
}
.vt-rawhtml .table th {
    border:none;
}
button.disabled {
  pointer-events: none;
  background-color: #DFDFDF !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #9F9F9F !important;
  cursor: default;
}
button.ghost {
    padding:15px 30px;
    color:white;
    border:2px solid white;
    letter-spacing:1.5px;
    text-transform:uppercase;
    border-radius:2px;
    background:transparent;
    font-family:gineso-condensed;
    transition: all 0.3s;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
button.ghost:hover, button.ghost:active {
    background:white;
    color:black !important;
}
img.slashTitle {
    display:block;
    margin-left:auto;
    margin-right:auto;
    padding-right:87px;
    max-height:150px;
    max-width:100%;
    margin-top:-20px;
}
.slashTitle2 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 5px;
    display: block;
    padding-left: 45px;
    color:#E87722;
    font-size:4em;
}
.slashTitle2 span {
    font-weight:600;
}
.slashTitle2:before {
    content: "";
    position: absolute;
    left: 80px;
    border-top: 3px solid #E87722;
    width: 140px;
    transform: rotate(135deg);
    transform-origin: 0% 0%;
    top: -35px;
}
a.readMore {
    font-family:gineso-condensed,sans-serif;
    text-transform:uppercase;
}

/* HERO SECTION
---------------------------------- */

#overlay, #sticky-overlay {
    height:100%;
    width:100%;
    background:black;
    z-index:1;
}
#sticky-overlay {
	opacity:.333;
    z-index:0;
    position:absolute;
    top:0;
    display:none;
}
#overlay img {
    max-width: 400px;
    top: calc(50% - 21.5px);
    display: block;
    position: absolute;
    left: calc(50% - 200px);
}
#hero {
    position:relative;
    width:100vw;
    height:100vh; /* Ensures the content below the hero doesn't show; placeholder until script runs */
    overflow:hidden;
    background:black;
}

.aem-AuthorLayer-Edit #hero {
  height:100%!important;
}

#hero video {
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    position:relative;
    display:none;
}
#hero > img {
	width:100%;
    display:none;
}
#hero #heroTextContainer{
    position:absolute;
    width:100%;
    text-align:center;
    margin:0;
    padding:0;
}
#hero #heroTextContainer h1 {
    color:white;
    text-transform:uppercase;
    font-size:6.5vw;
    text-shadow:1px 1px 10px rgba(0,0,0,0.3);
    margin:0;
    opacity: 0;
    -webkit-animation-delay: .75s;
            animation-delay: .75s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
#hero #heroTextContainer h1 span {
    font-size:8vw;
    font-weight:700;
    line-height:1;
    opacity:0;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 1.25s;
            animation-delay: 1.25s;
}
#hero button {
    opacity:0;
    transition: all 0.3s;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    margin-top: 50px;
    margin-right: 25px;
    min-width: 170px;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
}
#hero button:nth-of-type(3){
    margin-right:0;
}
#hero button svg {
    margin-right:10px;
}
#hero button:hover, #hero button:active {
    background:white;
    color:black;
}
#hero #heroSubtitle {
    margin-bottom:0;
    padding-bottom:35px;
    position:absolute;
    bottom:0;
    width:100%;
    text-align:center;
    color:white;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0, 1) 90%);
    display:none;
}

/* Blur animation */
@-webkit-keyframes blurIn
{
    from
    {
        opacity: 0;
        -webkit-filter: blur(20px);
    }
    to
    {
        opacity: 1;
        -webkit-filter: blur(0px);
    }
}
.blurIn {
    -webkit-animation: blurIn 3s;
       -moz-animation: blurIn 3s;
        -ms-animation: blurIn 3s;
         -o-animation: blurIn 3s;
            animation: blurIn 3s;
}
/* Button animation */
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15%, 0);
    transform: translate3d(0, 15%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeUp {
    -webkit-animation: fadeUp 1.75s;
       -moz-animation: fadeUp 1.75s;
        -ms-animation: fadeUp 1.75s;
         -o-animation: fadeUp 1.75s;
            animation: fadeUp 1.75s;
}

/* FIND YOUR PLACE SLIDER SECTION
---------------------------------- */

/* Instructions and dropdowns */

#findYourPlace .container {
    padding:100px;
}
#findYourPlace h2.slashTitle2 {
    margin-bottom:50px;
}
#findYourPlace p {
    text-align:center;
    font-size:1rem;
    margin-top:20px;
}
#findYourPlace .container > p:first-of-type {
    margin-top:20px;
    margin-bottom:50px;
    line-height:1.5;
}
#findYourPlace button.dropdown-toggle:not(.disabled) {
    color: #861f41;
    border: 2px solid #861f41;
    background: transparent;
}
.dropdown-toggle {
    margin-left:auto;
    margin-right:auto;
    height:54px;
    max-width:100%;
    border:none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; 
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-toggle span {
    display:inline-block;
    white-space: nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:100%;
    vertical-align:middle;
    margin-right: .255em;
    margin-top:-3px;
}
.dropdown-item {
    white-space: normal; /* For the dropdown item line breaks */
    line-height:1.5em;
    padding-top:10px;
    padding-bottom:10px;
}

/* Interest dropdown */

#interests, #interestsOuter { 
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    /*outline: none;*/
    height: 3rem;
    width: 100%;
    font-size: 16px;
    margin: 0 0 8px 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: border .3s, -webkit-box-shadow .3s;
    transition: border .3s, -webkit-box-shadow .3s;
    transition: box-shadow .3s, border .3s;
    transition: box-shadow .3s, border .3s, -webkit-box-shadow .3s;
}
.ui-autocomplete {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 2px;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
}
.ui-autocomplete li.ui-menu-item {
    clear: both;
    min-height: 50px;
    text-align: left;
    font-size: 16px;
    display: block;
    line-height: 1.5em;
    padding: .25rem 1.5rem;
    color: #c64600;
    cursor: pointer;
    display:table;
    width:100%;
}
.ui-autocomplete div {
    display:table-cell;
    vertical-align:middle;
}
.ui-autocomplete li.ui-menu-item:focus, .ui-autocomplete li.ui-menu-item:hover {
    background-color:#f8f9fa;
    color:black;
}
input.disabled, #interestsPlaceholder{
    border:none;
    background-color: transparent;
    border-radius: 0;
    /*outline: none;*/
    height: 3rem;
    width: 100%;
    font-size: 16px;
    margin: 0 0 8px 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: border .3s, -webkit-box-shadow .3s;
    transition: border .3s, -webkit-box-shadow .3s;
    transition: box-shadow .3s, border .3s;
    transition: box-shadow .3s, border .3s, -webkit-box-shadow .3s;
    color: rgba(0,0,0,0.42);
    border-bottom: 1px dotted rgba(0,0,0,0.42);
    pointer-events: none;
    cursor: default;
}
#interestsPlaceholder {
    overflow:hidden;
}
#interestsPlaceholderInner {
    padding-top:6px;
    width:calc(100% - 40px);
    display:inline;
    float:left;
}
#interestsCaret, #interestsOuterCaret {
    width:40px;
    display:inline;
    float:right;
    padding-top:6px;
    vertical-align: .255em;
}
#interestsOuterCaret {
    padding-top:12px;
    cursor:pointer;
}
#interestsCaret::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
#interestsOuter {
    display:none;
}
#interests{
    text-align:center;
    width:calc(100% - 40px);
    float:left;
}
#interestsOuterCaret::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    padding-top:6px;
}

/* The slider */

.slick-slider {
    left:-12.5px; /* It is slightly off-center */
    margin-top:25px;
}
.slick-prev:before, .slick-next:before{
    color:#CE0058;
}
.slick-list { /* Fix the margins, off-center */
    margin: 0 -10px;
    padding:45px 60px !important;
    margin-left:30px !important;
}
.slick-slide { /* Slides themselves */
    margin: 0 10px; /* Spacing betweem all the slides */
    height:225px; /* Set the height for all the slides */
    background-color:#861f41;
}
.slick-slide span { /* The captions for the slides */
    display:block;
    position:absolute;
    color:white;
    bottom: 0;
    left: 0;
    margin:30px;
    line-height:1.25;
    font-weight:600;
    text-shadow:1px 1px 3px black;
}
.slick-center span { /* Caption for the center slide */
    margin:20px;
    margin-bottom:60px;
    font-weight:600;
}
.slick-slide .img { /* Filter for the slide images */
    filter: opacity(.6) brightness(.9) grayscale(.5);
    height:100%;
    width:100%;
}
.slick-center .img { /* Center slide image */
    filter:opacity(1);
    border:10px solid white;
    border-bottom:none;
}
.explore {
    display:none;
    background:#861f41;
    margin-left:10px;
    margin-right:10px;
    width:calc(100% - 20px);
    position:relative;
    bottom:44px;
}
.explore span {
    display:inline-block;
    position:relative;
    margin:0;
    width:100%;
    text-shadow: none;
    font-size:.7em;
    padding-top:3px;
    margin-bottom:-6px;
}
.explore table {
    line-height:1;
    text-align:center;
}
.explore table th {
    width:50%;
    font-weight:600;
}
.explore span a {
    color:white;
}
.explore span svg {
    margin-right:7.5px;
}
.slick-center .explore {
    display:block;
}
.slick-center {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    transform: scale(1.25);   
    position:relative;
    z-index:1;
    background-color:transparent;
}
.slick-prev {
    left:0px;
}
.slick-next {
    right:-40px;
}

div.ui-helper-hidden-accessible {
    display:none;
}

.slick-track > a > div {
    height:100%;
}

/* LATEST UPDATES SECTION
---------------------------------- */

#latestUpdates {
    background:#E87722;
}
#latestUpdates h2 {
    color:white;
    font-size: 3em;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;    
}
#latestUpdates div.col-lg-6:first-of-type {
    padding:0;
    background-size:cover !important;
}
#staticUpdate {
    position:absolute;
    bottom:0px;
    width:100%;
    text-align:center;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0, 1) 90%);
    margin-bottom:0;
    color:white;
    padding-left:40px;
    padding-right:40px;
}
#staticUpdate h3 {
    font-style:italic;
}
#staticUpdate button {
    margin-top:20px;
}
#latestUpdates p {
    font-size:1rem;
    line-height:1.5;
    padding-bottom:60px;
}
#latestUpdates a {
    color:white;
}
#updates {
    padding:0
}
#updates > div.row:first-of-type button {
    margin-bottom:40px;
}
#updates > div.row:nth-of-type(2) {
    padding:5vw;
    background:#aa5312;
}
#updates > div.row:nth-of-type(3) {
    background:#aa5312;
    font-family:gineso-condensed,sans-serif;
    color:white;
    text-transform:uppercase;
    font-style:italic;
    padding-left:5vw;
    padding-right:5vw;
    padding-bottom:2.5vw;
    display:block;

}
#updates > div.row:nth-of-type(3) svg {
    margin-right:7.5px;
}
#updates p {
    line-height:1.5;
    color:white;
}
#updates p.description {
    font-size:1rem;
    margin-bottom:20px;
}
#updates a.readMore {
    color:white;
}
#updates > div:nth-child(1) > div:nth-child(1) {
    padding-left:0px;
    padding-top:5vw;
    padding-left:5vw;
}
#updates > div:nth-child(2) > div:nth-child(1) {
    padding-left:0;
}
#updates .col-md-6:nth-of-type(2){
    padding-right:0px;
}
#updates h3, #updates h3 a {
    font-family:gineso-condensed,sans-serif;
    color:white;
    margin-bottom:20px;
    font-size:1.75rem;
}
#updates button {
    font-size:1rem;
}
.update:after {
    content: "";
    position: absolute;
    background: white;
    height: 3px;
    width: 2em;
    bottom: -1.5em;
    left: 0;
}
.update:nth-child(2):after {
    left: 15px;
}

#updates > div:nth-child(1) > div:nth-child(2) > div, #latestUpdates > div > div > div:nth-child(1) {
    background-position:center;
}

/* SOCIAL MEDIA SECTION
---------------------------------- */

#socialMedia {
    background:#f8f6f8;
}

#socialMedia > .container {
    padding:100px;
    padding-top:125px;
}
#socialMedia h2.slashTitle2 {
    color:#CE0058;
}
#socialMedia h2.slashTitle2:before {
    border-top: 2px solid #CE0058;   
}


/* Hide the Juicer logo */

h1.referral {
    display:none !important;
}

#socialMedia #socialIntro a {
    text-decoration:none;
}
#socialMedia img.slashTitle {
    margin-bottom:20px;
}
#socialMedia p:first-of-type{
    margin:0;
}
#socialIcons {
    margin-left:30px;
    font-size:2em;
    text-align:center;
    display:none;
}
#socialIcons a {
    color:#508590;
}
#socialMedia #socialIcons li {
    display: inline;
    list-style-type: none;
    margin-right: 20px;
    font-size: 1.2em;
}
#socialMedia #socialIcons li:last-of-type {
    margin-right:0;
}

.socialMediaIconContainer {
    display:inline;
    margin-right:45px;
}

#socialMedia img.socialIcon {
    max-width:60px;
    transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;
   cursor:pointer;
}
.socialIconHover {
    width:60px;
    position:absolute;
    margin-left:-64px;
    opacity:0;
    transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;
   cursor:pointer;
}
#socialMedia .socialIcon:nth-child(6){
    margin-right:0px;
}
.j-stacker-wrapper {
    margin-top:70px;
}
#socialMedia ul {
    padding:0;
}
#socialMedia ol li>ul>li::before, #socialMedia ul>li::before, #socialMedia ol li>ul>li::before, #socialMedia ul>li::before {
  /*, .juicer-feed .j-meta*/
    display: none;
}

.vt-rawhtml ol li>ul>li::before, .vt-rawhtml ul>li::before, .vt-text ol li>ul>li::before, .vt-text ul>li::before, .vtnavigation .vt-vtnavigation ol li>ul>li::before, .vtnavigation .vt-vtnavigation ul>li::before {
    width:0px;
    height:0px;
}

.juicer-feed .j-display-filters li {
    padding-left:30px !important;
    margin-right:15px !important;
}

.juicer-feed .j-display-filters li.all:before {
    margin-right:25px !important;
}

.juicer-feed .j-display-filters li:hover:before, .juicer-feed .j-display-filters li.highlight:before {
    color:white !important;
}

.juicer-feed .j-display-filters li:before {
    margin-right:20px !important;
    color:#508590 !important;
}

.j-display-filters, .j-social-icon {
    font-family:Acherus, sans-serif !important;
    font-size:15px !important;
}
.j-social-icon {
    color:#508590 !important;
}
.j-social-icon svg {
    margin-right:6px;
}

.juicer-feed .j-message, .juicer-feed .j-twitter-screen-name {
    font-weight:normal !important;
    font-family: Acherus,sans-serif !important;
    font-size:13px !important;
    line-height:1.5 !important;
}

.j-read-more {
    font-family: Acherus,sans-serif !important;
    font-size:13px !important;
    line-height:1.5 !important;
}

.j-twitter-display-name, .j-poster-meta {
    font-family:gineso-condensed,sans-serif !important;
    font-size:15px !important;
}

.j-twitter.j-twitter-text.j-social.j-twitter-post-icon {
    display:none;
}

.juicer-feed .j-paginate {
    border: 2px solid #508590 !important;
    color: #508590 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-radius: 2px !important;
    background: transparent !important;
    font-family: gineso-condensed !important;
    transition: all 0.3s !important;
    transition-property: all !important;
    transition-duration: 0.3s !important;
    transition-timing-function: ease !important;
    transition-delay: 0s !important;
    padding: 15px 30px !important;
    font-size:1em !important;
    font-weight:500 !important;
    left:35px !important;
    margin-top:0px !important;
}
.juicer-feed .j-paginate:hover {
    background: #508590 !important;
    color:white !important;
}




/* SMART FARM SECTION
---------------------------------- */

#smartFarm p {
    line-height:1.5;
    margin-bottom:40px;
}

#smartFarm a {
    color:white;
}

#smartFarm h2 {
    font-size: 3em;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
}

#smartFarm h3 {
    font-family: gineso-condensed,sans-serif;
    color: white;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

#smartFarmUpdates .col-md-6:first-child {
    padding-left:0;
}

#smartFarmUpdates .col-md-6:nth-child(2){
    padding-right:0;
}

#smartFarmUpdates .col-md-6:after {
    content: "";
    position: absolute;
    background: white;
    height: 3px;
    width: 2em;
    bottom: -1.5em;
    left: 0;
}

#smartFarmUpdates .col-md-6:nth-child(2):after {
    left:15px;
}

#smartFarmUpdates p.description {
    font-size:1rem !important;
}


/* EVENTS SECTION
---------------------------------- */

#events .container {
    padding:100px;
    padding-top:125px;
}

#events h2.slashTitle2 {
    color:#508590;
}
#events h2.slashTitle2:before {
    border:2px solid #508590;
}

#events img:first-of-type {
    margin-bottom:40px;
}

#events .col-12.col-md-6.col-lg-4 {
    margin-bottom:30px;
    margin-top:30px;
}
.event {
    display: table;
    table-layout:fixed;
    width:100%;
    margin-bottom:30px;
    height:100%;
}
.eventDate {
    display:table-cell;
    vertical-align:middle;
    padding:20px;
    border-right:1px solid black;
    width:75px;
}
.eventDate p {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    align-items: center;
    margin:0;
    font-family: gineso-condensed;
    font-weight:600;
    text-transform: uppercase;
    font-style: italic;
    font-size: 30px;
}
.event .info {
    padding:0px 20px;
    display:table-cell;
    vertical-align:middle;
    overflow-wrap: break-word;
}
.event .info p {
    font-size:1rem;
    line-height:1.75;
}

.event .info span.eventTitle {
    font-family:gineso-condensed;
    font-size:1.5rem;
    line-height:1.5;
}

.event .info span.eventPlace {
    font-size:1rem;
    display:block;
    margin-bottom:15px;
    line-height:2;
}
.event a {
    color:#CE0058;
}


/* GET INVOLVED SECTION
---------------------------------- */
#getInvolved a {
    color:white;
    font-weight:bold;
}
#getInvolved button {
    border:none;
    padding:15px 30px;
    width:60%;
    color:white;
    text-transform:uppercase;
    font-family:gineso-condensed;
    letter-spacing:1.5px;
    border-radius:2px;
    display:block;
}
#alumniButton {
    margin-left:auto;
    margin-right:5px;
}
#givingContainer2 > button {
    margin-right:0;
    margin-left:auto;
}
#getInvolved > div.container-fluid > div > div > div > div:nth-child(2) > button{
    margin-left:0;
    margin-right:auto;
}
#getInvolved button.ghost {
    border:2px solid white;
}
#getInvolved p {
    margin-bottom:20px;
}
#getInvolved p:last-of-type {
    margin-bottom:3em;
}


/* CONTACT SECTION
---------------------------------- */
#contactUs > div > div > div:nth-child(1) {
    min-height:500px;
}
#contactUs a, #contactUs a:visited, #contactUs a:hover {
    color:white;
}

/* Google Map styles */
#map a, #map a:hover {
  color:#c64600;
}
.gm-style .gm-style-iw-c {
    border-radius:0;
}
.gm-style .gm-style-iw {
    color:black;
    font-family:Acherus,sans-serif;
    font-size:14px !important;
}
.gm-style .gm-style-iw span.title{
    font-family: gineso-condensed;
    font-size: 20px;
    display:block;
    margin-bottom:8px;
}
.gm-style .gm-style-iw a {
    display:block;
    margin-top:8px;
}
.gm-style-iw-d > div {
    padding:10px;
}
#contactUs p {
    line-height:1.5;
    margin-bottom:20px;
}
#contactUs ul {
    padding:0;
}
#contactUs input::-webkit-input-placeholder{
    font-size:1rem;
    font-style:italic;
    font-family:gineso-condensed;
    text-transform:uppercase;
    letter-spacing:3px;
    color:rgba(0,0,0,0.42);
}
#mapControlsContainer {
    color:black;
}
#mapControlsContainer ul {
    display: flex;
    flex-direction: row;
    margin-left:0;
    text-align:center;
    margin-top:10px;
}
#mapControlsContainer ul li {
    flex-grow: 1;
    flex-basis: 0;
}
#mapControlsContainer ul li:before {
    content:none;
}
#mapControlsContainer [type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
#mapControlsContainer [type="checkbox"] + label{
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#mapControlsContainer [type="checkbox"] + label:before, #mapControlsContainer [type="checkbox"] + label:after {
    content: '';
    left: 0;
    position: absolute;
    -webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
    transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
    z-index: 1;
}  
#mapControlsContainer [type="checkbox"]:checked + label:before {
    top: 0;
    left: 1px;
    width: 8px;
    height: 13px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    margin-top:7px;
}
#mapControlsContainer [type="checkbox"]:not(:checked) + label:before {
    width: 0;
    height: 0;
    border: 3px solid transparent;
    left: 6px;
    top: 10px;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    margin-top:7px;
}
#mapControlsContainer [type="checkbox"]:checked + label:after {
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #F7EA48;
    background-color: #F7EA48;
    z-index: 0;
    margin-top:4px;
} 
#mapControlsContainer [type="checkbox"]:not(:checked) + label:after {
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid #5a5a5a;
    top: 0px;
    z-index: 0;
    margin-top:4px;
}
#contactUs svg {
    margin-left:5px;
    margin-right:5px;
}
#communications {
    background:#666;
    width:calc(100% + 30px);
    margin-left:-15px;
    padding:15px;
    text-align:center;
}
#communications, #communications a {
    color:white;
    font-weight:600;
    font-size:1rem;
}

/* IE 10 and 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .eventDate p { 
        max-height:225px;
        text-align:center;
    }
}

/* Responsive */
@media screen and (max-width:650px){
    /*#hero button {
        display:block;
        margin:20px auto !important;
    }
    #hero button:first-of-type{
        margin-top:40px !important;
    }*/
    #hero button svg {
        display:none;
    }
    #hero button {
        min-width:95px;
        padding:15px 10px;
        margin-right:10px;
    }
    #overlay img {
        max-width:300px;
        left: calc(50% - 150px);
    }
    .slashTitle2 {
        left:-22px;
    }
    #updates .col-md-6:nth-of-type(2), #smartFarm .col-md-6:nth-of-type(2) {
        padding-top:50px;
    }
    #events .col-12.col-md-6.col-lg-4 {
        margin-bottom:unset;
    }
    .event {
        text-align:center;
        margin-bottom:unset;
    }
    .eventDate {
        padding:0;
        width:auto;
        display:unset;
        vertical-align:unset;
        padding:unset;
        border-right:unset;
    }
    .eventDate p {
        font-size:20px;
        -webkit-writing-mode: unset;
        -ms-writing-mode:unset;
        writing-mode:unset;
        transform:unset;
        align-items:unset;
    }
    .event .info {
        display:unset;
        vertical-align:unset;
        padding:unset;
    }
}
@media screen and (max-width:768px){
    #hero {
        margin-top:-28px;
    }
    #findYourPlace .slashTitle2 {
        margin-bottom:50px;
    }
    #selectContainer > div:nth-child(2) > div:nth-child(1), #selectContainer > div:nth-child(2) > div:nth-child(2) {
        margin-bottom:40px;
    }
    #interestsOuter, #interestsPlaceholder {
        text-align:center;
    }
    #alumniButton, #giveButton {
        margin-left:auto;
        margin-right:auto;
    }
    #contactUs > div > div > div:nth-child(2) > div:nth-child(1) {
        padding-bottom:5vw !important;
    }
    #contactUs > div > div > div:nth-child(2) > div:nth-child(1) > div > div:nth-child(2) {
        padding-left:0;
        padding-top:20px;
    }
    #chatBotHeaderDuplicate {
        min-width:unset !important;
        width:calc(100% - 40px);
        margin-left:20px;
        margin-right:20px;
    }
    #chatBot {
        min-width:unset !important;
        width:calc(100% - 40px);
        margin-left:20px;
        margin-right:20px;
    }
    #getInvolved button.ghost {
        width:100%;
    }
    footer {
        margin-top:-29px;
    }
}
@media screen and (max-width:991px){
    #hero #heroTextContainer h1 {
        font-size:10vw;
    }
    #hero #heroTextContainer h1 span {
        font-size:13vw;
    }
    #findYourPlace .container {
        padding:60px 30px;
    }
    .slashTitle2 {
        font-size:2.8em;
        letter-spacing:2.5px;
        margin-left:auto;
        margin-right:auto;
    }
    .slashTitle2:before {
        left: 55px;
        border-top: 2px solid #E87722;
        width: 65px;
        top: -11px;
    }
    #updates > div:nth-child(1) > h2 {
        margin-bottom:25px;
    }
    #updates > div:nth-child(2) {
        padding-bottom:calc(5vw + 25px) !important;
    }
    #updates .col-md-6:nth-of-type(2) {
        padding-left:0px;
    }
    .update:nth-child(2):after {
        left:0;
    }
    #socialMedia > .container {
        padding:0;
    }
    #socialMedia {
        padding:60px 30px;
    }
    #socialIcons {
        margin-top:20px;
        margin-left:0;
        text-align:center;
    }
    ul.juicer-feed {
        margin-top:-30px;
    }
    .juicer-feed .j-paginate {
        left:0 !important;
    }
    #smartFarm h2 {
        margin-bottom:40px;
    }
    #smartFarm > div:nth-child(1) > h2 {
        margin-bottom:25px;
    }
    #smartFarm > div:nth-child(2) {
        padding-bottom:calc(5vw + 25px) !important;
    }
    #smartFarm .col-md-6:nth-of-type(2) {
        padding-left:0px;
    }
    #smartFarmUpdates{
        padding-bottom:calc(5vw + 35px) !important;
    }
    #smartFarmUpdates .col-md-6:nth-child(2):after {
        left:0;
    }
    #smartFarm p {
        margin-bottom:30px;
    }
    #events > .container {
        padding:60px 30px;
    }
    #events h2.slashTitle2 {

    }
    #events h2.slashTitle2:before {
        border: 1px solid #508590;
    }
    #getInvolved p {
        margin-bottom:3em;
    }
    #getInvolved button {
        margin-bottom:20px;
    }
    #getInvolved button:nth-of-type(3){
        margin-bottom:0;
    }
}
@media screen and (max-width:1099px){
    /*.explore {
        display:none !important;
    }*/
    .slick-list {
        padding: 45px 0px !important;
    }
    .slick-center span {
        margin-bottom:20px;
    }
    .slick-slide {
        background-color:unset;
    }
    .slick-slide .img {
        filter: unset;
        position:relative;
    }  
}

/* Accessibility */
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    outline:unset;
}
*:focus {
    outline-color: #75787b;
    outline-offset: 3px;
    outline-style: dashed;
    outline-width: 2px;
}
#hero button:focus {
    outline-color: white !important;
    outline-style: dashed !important;
    outline-width: 2px !important;
}
#findYourPlace button:focus {
    outline-color: #75787b !important;
    outline-offset: 3px !important;
    outline-style: dashed !important;
    outline-width: 2px !important;
}
#findYourPlace .explore a:focus, #latestUpdates a:focus, #latestUpdates button:focus, #smartFarm a:focus, #smartFarm button:focus {
    outline-color: white !important;
}

#smartFarm a:focus, #smartFarm button:focus{
    outline-color: white !important;
    outline-style: dashed !important;
    outline-width: 2px !important;
}
#getInvolved a:focus, #getInvolved button:focus {
    outline-color: white !important;
    outline-style: dashed !important;
    outline-width: 2px !important;
}

/* Chat bot */
.typing_loader{width:6px;height:6px;border-radius:50%;-webkit-animation:typing 1s linear infinite alternate;-moz-animation:typing 1s linear infinite alternate;-ms-animation:typing 1s linear infinite alternate;animation:typing 1s linear infinite alternate;position:relative;left:-12px;margin:7px 15px 6px}.to .typing_loader{animation:typing-black 1s linear infinite alternate}@-webkit-keyframes typing{0%{background-color:rgba(255,255,255,1);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,.2)}50%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,1),24px 0 0 0 rgba(255,255,255,.4)}100%{background-color:rgba(255,255,255,.2);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,1)}}@-moz-keyframes typing{0%{background-color:rgba(255,255,255,1);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,.2)}50%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,1),24px 0 0 0 rgba(255,255,255,.4)}100%{background-color:rgba(255,255,255,.2);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,1)}}@keyframes typing-black{0%{background-color:rgba(74,74,74,1);box-shadow:12px 0 0 0 rgba(74,74,74,.4),24px 0 0 0 rgba(74,74,74,.2)}50%{background-color:rgba(74,74,74,.4);box-shadow:12px 0 0 0 rgba(74,74,74,1),24px 0 0 0 rgba(74,74,74,.4)}100%{background-color:rgba(74,74,74,.2);box-shadow:12px 0 0 0 rgba(74,74,74,.4),24px 0 0 0 rgba(74,74,74,1)}}@keyframes typing{0%{background-color:rgba(255,255,255,1);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,.2)}50%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,1),24px 0 0 0 rgba(255,255,255,.4)}100%{background-color:rgba(255,255,255,.2);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,1)}}form.convFormDynamic{width:calc(100% - 33px);margin:10px auto 15px;padding:0!important;position:relative;box-shadow:0 0 5px 5px rgba(222,222,222,.4)}form.convFormDynamic textarea.userInputDynamic{border:none;padding:7px 10px;outline:0;font-size:.905rem;float:left;width:calc(100% - 70px);line-height:1.3em;min-height:1.7em;max-height:10rem;display:block;max-width:88%;margin-right:2.5%}form.convFormDynamic input.userInputDynamic{border:none;padding:7px 10px;outline:0;font-size:.905rem;float:left;width:calc(100% - 70px);line-height:1.3em;min-height:1.7em;max-height:10rem;display:block;max-width:88%;margin-right:2.5%}div.conv-form-wrapper div#messages{max-height:71vh;height:auto!important;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}div.conv-form-wrapper *{scrollbar-width:none;-ms-overflow-style:none}div.conv-form-wrapper div#messages:after{content:'';display:table;clear:both}div.conv-form-wrapper{position:relative}div.conv-form-wrapper div.wrapper-messages{position:relative;height:577px;max-height:71vh;overflow-y:scroll;transition:margin .1s}div.conv-form-wrapper:before{content:'';position:absolute;width:100%;display:block;height:30px;top:0;left:0;z-index:2;background:linear-gradient(#fff,transparent)}@media (max-width:767px){div.conv-form-wrapper div#messages,div.conv-form-wrapper div.wrapper-messages{max-height:71vh}}div#feed ul::-webkit-scrollbar,div.conv-form-wrapper div.options::-webkit-scrollbar,div.conv-form-wrapper div.wrapper-messages::-webkit-scrollbar{width:0;height:0;background:0 0}input[type=text].userInputDynamic.error{color:#ac0000!important}input[type=text].userInputDynamic{border-radius:3px;margin:7px 10px}textarea.userInputDynamic.error{color:#ac0000!important}textarea.userInputDynamic{border-radius:3px;margin:7px 10px}div.conv-form-wrapper div#messages{transition:bottom .15s,padding-bottom .15s;position:absolute;bottom:0;height:auto!important;width:100%;padding-bottom:20px}div.conv-form-wrapper div.options{word-wrap:normal;white-space:nowrap;overflow-x:scroll;position:absolute;bottom:100%;width:100%;transform:translateY(-5px)}div.conv-form-wrapper div.options:after{content:'';display:table;clear:both}div.conv-form-wrapper div.options div.option{padding:7px 12px;border:1px solid rgba(6,153,184,.3);display:inline-block;margin:5px;background:#fff;color:#06c5a6;cursor:pointer;border-radius:20px;font-size:.9rem}div.conv-form-wrapper div.message{animation:slideTop .15s ease}div.conv-form-wrapper div.message:after{content:'';display:table;clear:both}div.conv-form-wrapper div.message.ready{animation:bounceIn .2s ease;transform-origin:0 0 0}div.conv-form-wrapper div#messages div.message{border-radius:20px;padding:12px 22px;font-size:.905rem;color:#333;display:inline-block;padding:10px 15px 8px;border-radius:20px;margin-bottom:5px;float:right;clear:both;max-width:65%;word-wrap:break-word}div.conv-form-wrapper div#messages div.message.to{background:#efefef;color:#6f6f6f;float:left;border-top-left-radius:0}div.conv-form-wrapper div#messages div.message.from{background:#06b79a;color:#fff;border-top-right-radius:0}.message.from+.message.to,.message.to+.message.from{margin-top:15px}@keyframes slideTop{0%{margin-bottom:-25px}100%{margin-bottom:0}}@keyframes bounceIn{0%{transform:scale(.75,.75)}100%{transform:scale(1,1)}}div.conv-form-wrapper div.options div.option:hover{background:#eee}div.conv-form-wrapper div.options div.option.selected{background:#06b79a;color:#fff}div.conv-form-wrapper div.options div.option.selected:hover{background:#069c7f}form.convFormDynamic button.submit{padding:3px;border:none;float:left;margin:5px;color:#06c5a6;cursor:pointer;border-radius:8px;font-size:1.1rem;width:36px;height:35px;margin-top:4px;background:#fff;outline:0!important}form.convFormDynamic button.submit:hover{background:#06b79a;color:#fff}button.submit.glow{box-shadow:0 0 10px 5px rgba(6,197,166,.4)}.no-border{border:none!important}.dragscroll{cursor:grab}div#feed ul::-webkit-scrollbar,div.conv-form-wrapper div#messages::-webkit-scrollbar{width:0;background:0 0}span.clear{display:block;clear:both}.spinLoader,.spinLoader:after,.spinLoader:before{background:#06c5a6!important;-webkit-animation:spinLoaderChat 1s infinite ease-in-out;animation:spinLoaderChat 1s infinite ease-in-out;width:1em;height:4em}.spinLoader{color:#06c5a6!important;text-indent:-9999em;margin:50% auto;position:relative;font-size:11px;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation-delay:-.16s;animation-delay:-.16s}.spinLoader:after,.spinLoader:before{position:absolute;top:0;content:''}.spinLoader:before{left:-1.5em;-webkit-animation-delay:-.32s;animation-delay:-.32s}.spinLoader:after{left:1.5em}@-webkit-keyframes spinLoaderChat{0%,100%,80%{box-shadow:0 0;height:4em}40%{box-shadow:0 -2em;height:5em}}@keyframes spinLoaderChat{0%,100%,80%{box-shadow:0 0;height:4em}40%{box-shadow:0 -2em;height:5em}}

/* Chat bot style tweaks */

#chatBotHeaderDuplicate {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index:5;
    min-width:500px;
    cursor:pointer;
    margin-left:20px;
    display:none;
}
#chatBot {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index:5;
    display:none;
    background:white;
    min-width:500px;
    margin-left:20px;
}
.chatBotHeader {
    background:#1e978a;
    font-weight:500;
    font-size: 1em;
    color:white;
    padding:15px 20px;
    line-height:1;
    cursor:pointer;
}
.chatBotHeader svg {
    margin-right:7.5px;
}
#chatBotInner {
    padding:20px;
}
.spinLoader {
    display:none;
}
.message {
    line-height:1.5;
}
div.conv-form-wrapper div#messages div.message.from {
    background:#26c1b2;
}
div.conv-form-wrapper div.options div.option {
    border: 1px solid #26c1b2; 
    color: #26c1b2;
}
form.convFormDynamic button.submit {
    color:#1e978a;
}
form.convFormDynamic button.submit:hover{
    background:#1e978a;
}
.message img {
    max-width:100%;
}
#messages {
    padding:20px;
}
div.conv-form-wrapper:before {
    background:transparent !important;
    width:auto; /* Make sure the header is clickable */
}
.conv-form-wrapper {
    -webkit-box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

