/**
* Template Name: Gp
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ffc451;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffc451;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #ffc451;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 1.0);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  color: whitesmoke;
  /* text-transform: uppercase; */
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #ffc451;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffc451;
}



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #ffc451;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg-tall.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #ffc451;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}



@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media not screen and (max-width: 768px) {
#hero {
  height: fit-content;
}
  
}

@media (max-width: 768px) {
  #hero {
    height: fit-content;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
  overflow: hidden;
}

.section-title {
  padding-top: 0px;
  padding-bottom: 0px;
}

.section-title p {
  margin: 0;
  margin: 0;
  padding-top: 20px;
  font-size: 20px;
  font-weight: 700;
  /* background-color: bisque; */
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: bisque;
  /* color: rgba(255,228,196,.1); */
  text-shadow: 3px 3px 2px black;
  background: rgb(34,34,48);
  background: linear-gradient(153deg, rgba(34,34,48,0) 0%, rgba(115,78,11,1) 30%);    
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/* .cream-bg {
  background-color: rgb(255,228,196,0.46124387254901966);
 
} */

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.card h3 {
  color: rgb(177,177,177);
  font-size: 1.2rem;
}


.card p {
  line-height: 1.6em;
  font-size: 1rem;
}


.flex-border {
  padding: .80rem;
  margin: 0rem;
  font-size: 1.1rem;

}

.card h2 {
  margin-top: .5rem;
  font-size: 1rem;;
  text-transform: uppercase;
}

.card-text {
  padding-bottom: .8rem;
}

@media (min-width: 768px) {
  .card h2 {
    margin-top: .5rem;
    font-size: 1.7rem;;
    text-transform: uppercase;
  }

  .card p {
    font-size: 1.25rem;
  }
  .card-text {
    padding-bottom: 1.2rem;
  }

}

.broker {
  background-image: url("../img/jpg/brokerbanner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  background-blend-mode: multiply;
  background-color: rgba(164, 103, 195, 0.5); 
  margin-bottom: 20px;
}

.broker h2 {
  font-family: "raleway", sans-serif;
  font-size: 2rem;
  font-weight:700;
  text-shadow: 2px 2px 2px black;
  padding-top: 10px;
  text-align: center;
}

.broker p {
font-family: "raleway", sans-serif;
font-size: 1.5rem;
text-shadow: 2px 2px 2px black;
font-weight: 400;
text-align: center;
padding-bottom: 1px;
}

.broker-list {
  padding-bottom: 15px;
  text-align: center;
  font-size: 1rem;
  text-shadow: 2px 2px 2px black;
  
}

@media (min-width: 768px) {
  broker p {
  font-size: 1.4rem;
  padding-bottom: 20px;
    }
  }


 

.about {
  /* background-color: #ffe4c4; */
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,0.8702074579831933) 0%, rgba(255,228,196,1) 12%, rgba(255,228,196,0.46124387254901966) 100%);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
}


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



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# PattyP photos
--------------------------------------------------------------*/
.contact3 {
  /* background-color: rgba(9, 1, 13, 0.5); */
  padding-top: 20px;
  padding-bottom: 20px;
  max-height: 50vh;
  text-align: center;
  color: bisque;

  background: rgb(34,34,48);
  background: linear-gradient(153deg, rgba(34,34,48,0) 0%, rgba(115,78,11,1) 30%);    
}   

.contact3 h5 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: whitesmoke;
  text-shadow: 3px 3px 2px rgba(0,0,0,0.5);
  font-size: 1.5rem;
}

.contact2 {
  padding-top: 0px;
  padding-bottom: 20px;
  max-height: 50vh;
  text-align: center;
  color: bisque;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.486);
  background: rgb(34,34,48);
  background: linear-gradient(330deg, rgba(34,34,48,0) 0%, rgba(115,78,11,1) 30%);
}


.contact2 p {
  font-size: larger;
  color: bisque;
}

.contact2 a {
  color: lightblue;
}


.industrial {

  background-color:moccasin;
  background-image: url("../img/jpg/whareflip.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: whitesmoke;
  text-shadow: 3px 3px 1px #000;
  background-blend-mode: multiply;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;

}

.industrial h2 {
  text-shadow: 3px 3px 3px #000;
  font-weight: 600;
  font-size: 50px;
}

@media (min-width: 768px) {
  .industrial {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .industrial h2 {
    font-size: 3rem;
  }

}

.property  {
  /* background-color: rgba(115, 78, 11, 0.5); */
  background-color:moccasin;
  background-image: url("../img/jpg/stripmall.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  font-weight: bolder;
  color: whitesmoke;
  text-shadow: 3px 3px 1px #000;
  background-blend-mode: multiply;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;

}

.property  h2 {
  text-shadow: 3px 3px 3px #000;
  font-weight: 600;
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .property {
    padding-top: 60px;
    padding-bottom: 60px;
    
  }
  .property  h2 {
    font-size: 3rem;
  }

}

.land {
  /* background-color: rgba(115, 78, 11, 0.5); */
  background-color:moccasin;
  background-image: url("../img/jpg/land.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: whitesmoke;
  /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
  font-weight: bolder;
  text-shadow: 3px 3px 1px #000;
  background-blend-mode: multiply;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;

}

.land h2 {
  text-shadow: 3px 3px 3px #000;
  font-weight: 600;
  font-size: 50px;
}

@media (min-width: 768px) {
  .land {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .land h2 {
    font-size: 3rem;
  }

}
/*--------------------------------------------------------------
# PattyP photos
--------------------------------------------------------------*/

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  /* text-transform: uppercase; */
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
  text-align: center;
}


#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}