/*
 Theme Name:   Bootstrap 4 Theme Child
 Description:  Boostrap 4 Child Theme
 Author:       Corey Bryant
 Template:     wp-bootstrap-4
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/
/* GLOBAL*/
body {
  overflow-x: hidden;
}

footer#colophon {
  border-top: 20px solid #062440;
}

#site-navigation {
  transition: 0.4s;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.75;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 1);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  opacity: 1;
}

/* HOME */
#txt-foc {
  opacity: 0;
}

#home-body {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

section.jumbotron {
  margin: 0;
  padding: 0;
  border: 0 !important;
}

section.home-ctas {
  background-color: #041729;
  color: #fff;
  padding: 3.5rem 0 2.5rem 0;
  border-bottom: 20px solid #062440;
}

.circle {
  border-radius: 0px;
  height: 225px;
  width: 225px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-size: cover;
  background-position: center;
  transition: 0.4s;
  -webkit-filter: opacity(70%);
  filter: opacity(70%);
  margin-bottom: 20px;
}

.circle:hover {
  -webkit-filter: opacity(100%);
  filter: opacity(100%);
  border-radius: 25px;
}

header#masthead {
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.5);
  border: none;
}

.my-large {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

/* PAGE HERO */
.hero-bg {
  background-size: cover;
  background-position: center center;
  padding: 6rem 0;
  position: relative;
  color: #fff;
}

.hero-bg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  text-align: center;
}

/* ARCHIVES CSS */

.main-image {
  width: 100%;
  padding: 7rem 0rem;
  background-size: cover;
  background-position: center;
  -webkit-filter: opacity(80%);
  filter: opacity(80%);
  transition: 0.4s;
}

.main-image:hover {
  -webkit-filter: opacity(100%);
  filter: opacity(100%);
}

i.fas.fa-chevron-circle-right {
  color: #062440;
}

.model,
.property {
  border-bottom: 2px solid #062440;
  padding-bottom: 12px;
}

.model .entry-title,
.property .entry-title {
  padding-top: 5px;
}
.model h5,
.property h5 {
  min-height: 50px;
}
.model .btn,
.property .btn {
  min-width: 200px;
}
/*PROPERTIES */
.carousel-image {
  height: 250px;
  max-height: 250px;
}

/* ACF EDITS */
.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-image {
  width: 100%;
  margin-bottom: 10px;
}
.gallery-image img {
  width: 100%;
  height: 250px;
}

/* ANIMATIONS */

.navbar-toggler {
  border: none;
  background: transparent !important;
}

.navbar-toggler:focus {
  outline: none;
  background: transparent !important;
}

.navbar-toggler .icon-bar {
  background-color: #fff;
  transform: rotate(0deg) translate(0px, 0px);
  transition: ease all 0.2s;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}

.icon-bar:nth-child(2) {
  width: 16px;
  transition: ease all 0.2s;
}

.navbar-toggler:hover > .icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all 0.2s;
}

.navbar-toggler:active > .icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all 0.2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
  transition: ease all 0.2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  transition: ease all 0.2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  transition: ease all 0.2s;
}

#slide-left-img,
#slide-right-text,
#slide-right-img,
#slide-left-text {
  opacity: 0;
}

.slide-in-left {
  -webkit-animation: slide-in-left 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-left 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  -webkit-animation: slide-in-right 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-right 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-content h1,
.hero-content p,
.text-focus-in {
  -webkit-animation: text-focus-in 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53)
    0.2s both;
  animation: text-focus-in 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.wp-bp-jumbo-overlay .container {
  -webkit-animation: fade-in 1.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s
    both;
  animation: fade-in 1.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 575px) {
  .dropdown-menu {
    background-color: #002140;
  }
  .navbar-dark .navbar-nav .dropdown-menu a {
    color: #fff;
  }
  .carousel {
    margin-bottom: 20px;
  }
  .model-body img {
    margin-bottom: 20px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .gallery-image {
    display: inline-block;
    width: 32.7%;
  }
  .gallery-image img {
    height: 156px;
  }
  .carousel-image {
    height: 400px;
    max-height: 400px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .gallery-image {
    display: inline-block;
    width: 33%;
  }
  .gallery-image img {
    height: 230px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .circle {
    border-radius: 0px;
    height: 300px;
    width: 300px;
  }

  .hero-bg {
    padding: 12rem 0;
  }

  .wb-bp-front-page .wp-bs-4-jumbotron .wp-bp-jumbo-overlay {
    padding: 16rem 2rem;
  }
}
.docs {
  margin-bottom: 10px;
  display: inline-block;
}

.entry-summary.property h3 {
  min-height: 71px;
}
.property-information p {
  margin-bottom: 0.5rem !important;
}
