.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-image: url(../public/images/background.jpg);
    background-size: cover;
}

.banner-inbetween {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.icon-bubble {
    background-image: url(../public/images/speech-with-rhi.jpeg);
    background-size: contain;
    height: 150px;
    width: 150px;
    border-radius: 20px;
    box-shadow: 1px 1px 5px gray;
}

.heading {
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.info-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80vw;
    max-width: 500px;
    height: auto;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.272);
}

.info-span {
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 70%;
}

.info-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.demo-site-link {
    position: absolute;
    right: 0px;
    bottom: 20px;
}

.demo-site-area {
    height: 30px;
    width: 30px;
    background-color: transparent;
}

.demo-site-area-inbetween {
    position: absolute;
    left: 0px;
    bottom: 20px;
}

.demo-site-link-inbetween {
    height: 50px;
    width: 50px;
    background-color: transparent;
}

/* ========================== */
/* Start of CSS for Real site */
/* ========================== */

html {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ul { list-style-type: none; }

body {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    width: 100%;
}

.homepage-opener {
    position: absolute;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    top: 0px;
    display: flex;
}

.homepage-opener-leftside {
    background-image: url(../public/images/left-side.png);
    background-size: cover;
    background-position: right;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 50vw;
    height: 100vh;
    z-index: 2000;
    transition: 1s;
}

.homepage-opener-rightside {
    background-image: url(../public/images/right-side.png);
    background-size: cover;
    background-position: right;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 50vw;
    height: 100vh;
    z-index: 2000;
    transition: 1s;
}

.homepage-opener-leftside.open-now {
    left: -50vw;
}

.homepage-opener-rightside.open-now {
    right: -50vw;
}

.homepage-opener-leftside.open-now.finish {
    display: none;
}

.homepage-opener-rightside.open-now.finish {
    display: none;
}

.homepage-opener.finish {
    display: none;
}


section {
    background-image: url(../public/images/background2.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.container {
    background: rgba(255, 255, 255, 0.8);
    width: 95%;
    border-radius: 10px;
    padding: 30px 20px;
}

.homepage-content-header {
    display: flex;
    justify-content: stretch;
    align-items: center;
    margin-bottom: 30px;
}

.homepage-info-text {
    width: 90%;
    margin: auto;
}

.divider-line {
    border-bottom: 2px dashed black;
    flex-grow: 1;
    margin-left: 30px;
}

.homepage-info-btn-area {
    display: flex;
    justify-content: flex-end;
}

.nav-bar {
    height: 90px;
    background: #90E314;
    background: linear-gradient(180deg, rgba(123,199,9,1) 36%, rgb(202, 255, 123) 100%);
    position: sticky;
    top: 0px;
    border-radius: 0px 0px 15px 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.302);
}

.nav-bar .nav-logo {
    height: 80%;
    width: auto;
    border-radius: 25%;
    overflow: hidden;
}

.nav-bar .nav-logo img {
    height: 100%;
}

.nav-links a {
    font-size: 20px;
    padding: 10px 35px;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-radius: 10px;
    color: rgb(85, 85, 85);
    transition: 0.2s;
}

.nav-links a:hover {
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    color: black;
}


.location-banner {
    height: 50vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-image: url(../public/images/background2.png);
    background-size: cover;
}

.header-side-image {
    height: 100%;
    width: 45%;
    max-width: 650px;
    border-radius: 25px;
    background-image: url(../public/images/place-holders/wheat.jpeg);
    background-size: cover;
}

.title-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.location-banner h1 {
    font-size: 50px;
    text-align: center;
}

.btn {
    padding: 15px;
    background: #90E314;
    background: linear-gradient(180deg, rgba(123,199,9,1) 36%, rgb(202, 255, 123) 100%);
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(128, 128, 128, 0.527);
    font-family: inherit;
    transition: 0.3s;
}

.btn:hover {
    box-shadow: 0px 0px 10px #90E314;
}

.contact-btn {
    margin: 20px;
}

.homepage-info-btn {
    margin: 0px;
    margin-top: 20px;
    padding: 8px;
}

.logo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image img {
    width: 80%;
    max-width: 600px;
    height: auto;
}

.staff-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 1300px;
    margin: auto;
}

.staff-card {
    width: 300px;
    height: fit-content;
    min-height: 420px;
    background: #90E314;
    background: linear-gradient(180deg, rgb(151, 194, 87) 36%, rgb(219, 242, 184) 100%);
    border-radius: 20px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.47);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 20px;
}

.staff-image {
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: auto;
}

.staff-text-area {
    padding: 0px 20px 10px 20px;
}

.staff-text-area h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.staff-text-area h5 {
    margin-top: 0px;
    margin-bottom: 5px;
    font-weight: lighter;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}

.staff-text-area span {
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}


/** =======================
 * Contenedor Principal
 ===========================*/
  
  .accordion {
    width: 100%;
    margin: 30px auto 20px;
    background: #9CCC65;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 15px;
    padding-left: 0px;
  }
  
  .accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px 15px 15px 42px;
    color: #1d1d1d;
    font-size: 17px;
    font-weight: 700;
    border-bottom: 1px solid #1d1d1d;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .accordion li:last-child .link { border-bottom: 0; }
  
  .accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px;
  }
  
  .accordion li.open .link {     
    color: #ffffff;
    border: none; 
}
  
  
.submenu {
    display: none;
    background: #90E314;
    background: linear-gradient(180deg, #9CCC65 36%, rgb(219, 242, 184) 100%);
    font-size: 14px;
    padding: 10px 40px 20px 40px;
}

.submenu p {
    color: white;
    margin-bottom: 25px;
}
  
.submenu li { border-bottom: 1px solid #1d1d1d; }

.services-img-area {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.services-img {
    width: 40%;
    height: auto;
    border-radius: 20px;
}

.services-btn-area {
    display: flex;
    justify-content: flex-end;
}

.services-btn {
    padding: 8px 15px;
    background: white;
    background: linear-gradient(180deg, rgb(255 255 255) 36%, rgb(237 237 237) 100%);
}

.services-btn:hover {
    box-shadow: 0px 0px 5px white;
}

.embedded-video-area {
    display: flex;
    justify-content: center;
    width: 90%;
    position: relative;
    margin: auto;
}

.embedded-video-area iframe {
    width: 80%;
    max-width: 800px;
    position: absolute;
    height: 100%;
}

.video-backdrop {
    width: 80%;
    max-width: 800px;
    height: auto;
    position: relative;
}

.homepage-contact-area {
    width: 80%;
    max-width: 700px;
    padding: 30px 0px;
    margin: auto;
}

footer {
    height: 200px;
    background: #90E314;
    background: linear-gradient(180deg, rgb(99, 149, 24) 40%, rgb(159, 177, 132) 100%); 
}

.btn:active {
    box-shadow: inset 1px 1px 5px rgba(72, 72, 72, 0.5);
}

@media only screen and (max-width: 530px) {
    .contact-info {
      width: 100%;
    }
  }