/*======= FONTS ========*/

@font-face {
  font-family: Rockwell; /* Define a custom font family */
  src: url(./Rockwell-Font/ROCK.TTF); /* Specify the font file path */
}

.font-hel {
  font-family: "Helvetica", "Arial", sans-serif; /* Specify font family fallback options */
}

.sub-headers {
  font-family: "Rockwell", "Arial", sans-serif; /* Use the custom font family */
  color: #664a33; /* Set text color */
  font-weight: bold; /* Set font weight */
  /*display: flex;  Display as flex container */
}

.descriptor {
  font-weight: 600; /* Set font weight */
}

.o-bg {
  color: #d3531f; /* Set text color */
  display: inline-block;
}

.w-bg {
  color: #fff; /* Set text color */
}

.blockquote-footer {
  font-size: 100%; /* Set font size */
}

/*======= STYLES ========*/

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f2f3eb; /* Set background color */
}

.flex {
  display: flex; /* Display as flex container */
}

a{
    color: #889c10;
}

p:not(.top-copy p) {
  color: #707070; 
  font-size: 18px; 
}

.row {
  margin: 0;
}

div#main-wrapper {
  background-color: #f2f3eb; /* Set background color */
}

button {
  background: none;
  outline: none;
  border: none;
  cursor: none;
}

button::-moz-focus-inner {
  border: none;
}

#app {
  min-width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg); /* Use a CSS variable for background color */
}

.loader1 {
  padding: 40px 0;
}

/*======= NAVBAR ========*/

.nav {
  position: fixed;
  z-index: 1;
}

.nav:before,
.nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(
    234,
    234,
    234,
    0.2
  ); /* Set background color with transparency */
  z-index: -1;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s; /* Apply transition effect */
  transform: translateX(0%) translateY(-100%); /* Initial transformation */
}

.nav:after {
  background: white; /* Set background color */
  transition-delay: 0s;
}

.nav:before {
  transition-delay: 0.1s;
}

.nav__content {
  position: fixed;
  top: 50%;
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: calc(2vw + 10px); /* Set font size using a calculation */
  font-weight: 200; /* Set font weight */
  cursor: pointer;
}

.nav__list-item {
  width: 100%;
  margin: 20px 0;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  transition-delay: 0.8s;
  opacity: 0;
  transform: translate(0%, 100%); /* Initial transformation */
  transition: opacity 0.2s ease, transform 0.3s ease; /* Apply transition effects */
  margin-right: 25px;
}

.nav__list-item:before {
  content: "";
  position: absolute;
  background: #000000; /* Set background color */
  width: 20px;
  height: 1px;
  top: 100%;
  transform: translate(0%, 0%); /* Initial transformation */
  transition: all 0.3s ease; /* Apply transition effect */
  z-index: -1;
}

.nav__list-item:hover:before {
  width: 100%; /* Change width on hover */
}

.nav-active .menu-icon__line {
  background-color: #000; /* Set background color */
  transform: translateX(0px) rotate(-45deg); /* Apply transformation */
}

.nav-active .menu-icon__line-left {
  transform: translateX(1px) rotate(45deg); /* Apply transformation */
}

.nav-active .menu-icon__line-right {
  transform: translateX(-2px) rotate(45deg); /* Apply transformation */
}

.nav-active .nav {
  visibility: visible;
}

.nav-active .nav:before,
.nav-active .nav:after {
  transform: translateX(0%) translateY(0%); /* Apply transformation */
}

.nav-active .nav:after {
  transition-delay: 0.1s;
}

.nav-active .nav:before {
  transition-delay: 0s;
}

.nav-active .nav__list-item {
  opacity: 1;
  transform: translateX(0%); /* Apply transformation */
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease; /* Apply transition effects */
}

.nav-active .nav__list-item:nth-child(0) {
  transition-delay: 0.5s;
}

.nav-active .nav__list-item:nth-child(1) {
  transition-delay: 0.6s;
}

.nav-active .nav__list-item:nth-child(2) {
  transition-delay: 0.7s;
}

.nav-active .nav__list-item:nth-child(3) {
  transition-delay: 0.8s;
}

.nav-active .nav__list-item:nth-child(4) {
  transition-delay: 0.9s;
}

/* Desktop */
.navbar {
  width: 100%;
  background-color: #ffff !important; /* Set background color */
}

ul.navbar-nav {
  margin-left: auto;
  order: 2;
}

ul.navbar-nav .active > a {
  color: #889c10 !important; /* Set text color for active link */
  font-weight: 600; /* Set font weight for active link */
}

.navbar-brand {
  display: inherit;
}

.navbar-brand img {
  height: 70px;
  /*height: 130px;*/
}

.navbar-brand div {
  position: absolute;
  background-color: #ffff;
  top: 0;
  left: 200px;
  padding: 5px;
  z-index: 1;
  border: 1px solid #707070;
}

.nav-link {
  text-transform: uppercase;
  font-family: "Helvetica", "Arial", sans-serif;
}

.menu-icon {
  height: 30px;
  width: 30px;
  position: fixed;
  z-index: 2;
  left: 50px;
  top: 30px;
  cursor: pointer;
}

.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #d3531f;
  margin-bottom: 4px;
  transition: transform 0.2s ease, background-color 0.5s ease;
}

.menu-icon__line-left {
  width: 15px;
}

.menu-icon__line-right {
  width: 15px;
  float: right;
}

.dropdown-menu {
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* Set background color with transparency */
  padding: 0 10px;
}

.dropdown-menu li {
  padding: 10px 0;
}

.dropdown-menu a {
  color: #fff; /* Set text color */
}

/*======= HERO SECTION ========*/

#top-bar {
  height: 20px;
  width: 100%;
  background-color: #889c10; /* Set background color */
  display: flex;
  justify-content: end;
  padding: 15px 0;
}

#top-bar p {
  color: #fff; /* Set text color */
  line-height: 0;
}

#top-bar p:nth-child(2) {
  padding-right: 150px;
}

#top-bar span:not(#top-bar-divider) {
  font-weight: 600; /* Set font weight */
}

#top-bar-divider {
  margin: 0 10px;
}

#heroSection .hero-copy {
  background-color: #889c10; /* Set background color */
  color: #fff; /* Set text color */
  opacity: 0.93;
  width: 500px;
  padding: 40px;
  position: absolute;
  bottom: 10%;
  /*right: 100px;*/
  -webkit-filter: drop-shadow(-10px 10px 10px #222);
  filter: drop-shadow(-10px 10px 10px #222);
}

#heroSection .slide-imgs {
  border: none;
}

/*======= CAROUSEL ========*/

.carousel img {
  width: 100%;
  height: 80vh; /* Set image height */
  -webkit-filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
  filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
}

.carousel .hero-copy {
  background-color: #889c10; /* Set background color */
  color: #fff; /* Set text color */
  opacity: 0.93;
  width: 40%;
  padding: 40px;
  position: absolute;
  bottom: 10%;
  right: 0;
  -webkit-filter: drop-shadow(-10px 10px 10px #222);
  filter: drop-shadow(-10px 10px 10px #222);
}

.carousel .hero-copy p {
  color: #fff; /* Set text color */
  font-family: "Dancing Script", cursive;
  font-size: 50px; /* Set font size */
}

/*========= SLIDESHOW ==============*/

.slide-imgs:nth-child(1) {
    height: 45vh;
}


.slide-imgs {
  /*border: 10px solid;  Set border style 
  border-image: linear-gradient(90deg, #664a33, #889c10) 1;*/
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #000; /* Set background color */
}

.slide-imgs > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position-y: center;
  background-position-x: center;
  background-repeat: no-repeat;
  position: absolute;
  animation: slide 25s infinite; /* Apply slide animation */
  opacity: 0;
}

.slide-imgs > div:nth-child(2) {
  animation-delay: 5s; /* Delay the animation for the second slide */
}

.slide-imgs > div:nth-child(3) {
  animation-delay: 10s; /* Delay the animation for the third slide */
}

.slide-imgs > div:nth-child(4) {
  animation-delay: 15s; /* Delay the animation for the fourth slide */
}

.slide-imgs > div:nth-child(5) {
  animation-delay: 20s; /* Delay the animation for the fifth slide */
}

.slide-imgs > div:nth-child(6) {
  animation-delay: 25s; /* Delay the animation for the sixth slide */
}

@keyframes slide {
  10% {
    opacity: 1; /* Make the slide visible */
  }

  20% {
    opacity: 1; /* Keep the slide visible */
  }

  30% {
    opacity: 0; /* Fade out the slide */
  }

  40% {
    transform: scale(1.1); /* Apply scaling effect to the slide */
  }
}

/*========= SLIDESHOW ==============*/
/*#belowFold{
overflow-x: hidden;
}*/

#belowFoldMid .image--cover {
    /*width: 170px;
    height: 170px;*/
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 20px auto;
    border: 6px solid #889c10;
    object-fit: cover;
    object-position: center right;
}

.border-right {
    border-right: none !important;
}

.border-bottom {
    border-bottom: none !important;
}

#square-wrapper{
    position: absolute;
    overflow: hidden;
    width: -webkit-fill-available;
}
  


/*======= GALLERY ========*/

#gallery .gallery-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("./images/nursery.jpg") no-repeat fixed 100%; /* Set background image with gradient overlay */
  background-position: center;
  background-size: cover;
  position: relative;
}

#gallery .gallery-inner h1 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translate(
    -50%,
    -50%
  ); /* Center the heading horizontally and vertically */
  font-family: "Rockwell", "Arial", sans-serif;
}

/*======= LAST SECTION ========*/

.last-copy {
  max-width: 100%;
  margin-top: 40px;
  margin-bottom: 100px;
  background-color: #fff;
}

.last-copy img {
  filter: none !important; /* Remove any image filters applied */
  width: 100%;
  margin: auto;
}

.last-copy .col-sm-7 {
  background-color: #889c10;
}

/*.last-copy .col-sm-7 > div {
  top: 50%;
  left: 50%;
  transform: translate(
    -50%,
    -50%
  ); 
}*/

.last-copy .col-sm-7 > div .sub-headers {
  justify-content: center;
  margin-bottom: 30px;
}

.last-copy .col-sm-7 div h2:nth-child(2) {
  color: #fff;
  font-weight: 300;
  margin-bottom: 30px;
}

.last-copy .col-sm-7 div h2:nth-child(1) {
  color: #fff;
}

.last-copy .col-sm-7 div h2:nth-child(1):before {
  position: absolute;
  top: 0px;
  content: " ";
  background: #d3531f;
  height: 2px;
  text-align: center;
}

.last-copy .col-sm-7 div h2:nth-child(1):after {
  position: absolute;
  bottom: 0px;
  content: " ";
  background: #d3531f;
  height: 2px;
  text-align: center;
}

.last-copy .col-sm-5{
  display: flex;
  align-items: center;
}

.last-copy .text-wrap {
  position: relative;
}

/*======= FOOTER ========*/
#footer {
  position: relative;
  background: #f2f3eb;
  border-top: 1px solid #d9dad3;
}

#footer .col-sm-12.col-md-9{
  padding: 0;
}

#footer > .row {
  border-top: 1px solid #d9dad3;
  background-color: #f2f3eb;
  color: #707070;
  position: relative;
  width: 100%;
  margin: 0;
}

#footer img {
  filter: none; /* Remove image filters */
}

#footer .social {
  flex-wrap: nowrap; /* Prevent wrapping of social icons */
}

#footer .social .col-sm-2 {
  padding: 0; /* Remove padding from social icon columns */
}

#footer .social img {
  width: initial; /* Reset image width to its initial value */
}

#footer .footer-logo {
  border-right: 2px solid #664a33; /* Add a right border to the footer logo */
}

#footer .footer-logo img {
  width: 100%;
  height: 130px;
  top: 50%;
  left: 50%;
  transform: translate(
    -50%,
    -50%
  ); /* Center the footer logo vertically and horizontally */
}

#footer .copyright{
    padding-bottom: 10px;
}

#footer .copyright img {
    width: 10px;
}

#footer ul {
  list-style: none;
  padding: 0;
}

#footer li {
  line-height: 2; /* Set line height for list items */
}

/* COPYRIGHT SECTION */

/* Set background color and text color for the copyright section */
/* Add some padding at the bottom */
/* Set width of the copyright section */
/* Adjust the size of the copyright image */

/*============ LOADER ===============*/

.loader1 {
  display: inline-block;
  font-size: 0;
  padding: 40px 0;
}

.loader1 span {
  vertical-align: middle;
  border-radius: 100%;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 3px 2px;
  animation: loader 0.8s linear infinite alternate;
}

.loader1 span:nth-child(1) {
  animation-delay: -1s;
  background: rgba(136, 156, 16, 0.6);
}

.loader1 span:nth-child(2) {
  animation-delay: -0.8s;
  background: rgba(136, 156, 16, 0.8);
}

.loader1 span:nth-child(3) {
  animation-delay: -0.26666s;
  background: rgba(136, 156, 16, 1);
}

.loader1 span:nth-child(4) {
  animation-delay: -0.8s;
  background: rgba(136, 156, 16, 0.8);
}

.loader1 span:nth-child(5) {
  animation-delay: -1s;
  background: rgba(136, 156, 16, 0.4);
}

@keyframes loader1 {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}


/**=========================== LANDSCAPING PAGE ====================================**/

#landscaping .steps {
  padding: 40px;
}

#landscaping .row {
  margin: 100px 0;
}

#landscaping .content {
  font-size: 20px;
  top: 50%;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}

#landscaping button {
  background: #d3531f;
  color: #fff;
  padding: 10px 20px;
}

#landscaping .col-sm-12.d-block.d-md-none {
    margin-top: 20px;
    padding: 0;
}

.vl {
  border-left: 3px solid #cccb9c;
  height: 105px;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  bottom: -106px;
}

#design .col-sm-12:nth-child(2) p {
  padding-left: 200px;
}

#meet-up .col-sm-12:nth-child(2) {
  height: 400px;
  background-image: url(./images/meetup.jpeg);
  background-size: 900px;
  background-repeat: no-repeat;
  background-position-y: -250px;
  background-position-x: right;
  padding-left: 0;
}

#design .col-sm-12:nth-child(1) {
  height: 400px;
  background-image: url(./images/landscape_planning.jpeg);
  background-repeat: no-repeat;
  background-position-y: -200px;
  padding-right: 0;
  position: relative;
}

/*#design .col-sm-12:nth-child(1) .overlay {
  background: linear-gradient(
    to right,
    transparent,
    rgb(169 208 113 / 0%),
    #f2f3eb
  );
  left: 0;
  height: 400px;
}*/

#install .col-sm-12:nth-child(2) {
  height: 400px;
  background-image: url(./images/landscape_install.jpeg);
  background-size: 975px;
  background-repeat: no-repeat;
  background-position-y: -250px;
  background-position-x: right;
  padding-left: 0;
}

#design .col-sm-12:nth-child(2) {
  border-image: linear-gradient(
      to left,
      #d3521f,
      #ecbfae,
      #90a22973,
      #f2f3eb 82%
    )
    30;
  border-width: 3px;
  border-style: solid;
}

#meet-up .col-sm-12:nth-child(1),
#install .col-sm-12:nth-child(1) {
  border-image: linear-gradient(
      to right,
      #d3521f,
      #ecbfae,
      #90a22973,
      #f2f3eb 82%
    )
    30;
  border-width: 3px;
  border-style: solid;
}

/*#meet-up .col-sm-12:nth-child(2) .overlay,
#install .col-sm-12:nth-child(2) .overlay {
  background: linear-gradient(
    to left,
    transparent,
    rgb(169 208 113 / 10%),
    #ffffffd4 89%,
    rgb(242 243 235) 101%
  );
  left: 0;
  height: 400px;
}*/

/*=================== NURSERIES PAGE =====================*/

.top-copy {
  background-color: #889c10;
  color: #fff;
  opacity: 0.93;
  width: 100%;
  padding: 20px 40px;
  position: absolute;
  bottom: 10%;
  right: 0;
  font-family: "Dancing Script", cursive;
  font-size: 50px;
  -webkit-clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.top-copy p {
  color: #fff;
}

/*.top-copy::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 0;
  border-bottom: solid 66px #889c10;
  border-right: solid 65px #889c10;
  border-left: solid 65px transparent;
  border-top: solid 65px transparent;
}*/

.item {
  margin: 50px 0;
}

#item-list {
  min-height: 800px;
}

.item-img img {
  width: 100%;
}

#item-list * {
  box-sizing: border-box;
}

#item-list p:not(.top-copy p) {
  font-size: 18px;
}

#item-list input {
  border: 1px solid #ccc;
  font-size: 16px;
  height: 30px;
  padding: 4px 8px;
  width: 50%;
}

#item-list .col-md-12 input {
  position: absolute;
}

#item-list .col-md-4 input {
  position: absolute;
}

#item-list input:focus {
  outline: none;
}

#item-list button:focus {
  outline: none;
}

#item-list button.btn-search,
#item-list button.btn-reset {
  background: #568683;
  border: none;
  height: 30px;
  font-size: 12px;
  padding: 4px;
  position: absolute;
  width: 30px;
}

#item-list .sample {
  height: 50px;
  position: relative;
  margin-bottom: 40px;
}

#item-list .sample.ten input {
  border-radius: 15px;
  width: 100%;
}

#item-list .sample.ten .col-md-4 input {
  transition: all 0.6s ease-in-out 0.3s;
  width: 100%;
}

#item-list .sample.ten .col-md-4 input:focus {
  transition-delay: 0;
  width: 150%;
}

#item-list .sample.ten .col-md-4 input:focus ~ button {
  transform: rotateZ(360deg);
}

#item-list .sample.ten .col-md-4 input:focus ~ button.btn-search {
  background-color: #fff;
  color: #fff;
  left: 150%;
  transition-delay: 0;
}

#item-list .sample.ten .col-md-4 input:focus ~ button.btn-reset {
  /*left: 220px;*/
  transition-delay: 0.3s;
}

#item-list .sample.ten .col-md-4 button {
  transition: all 0.6s ease-in-out;
}

#item-list .sample.ten .col-md-4 button.btn-search {
  background: #ccc;
  border-radius: 50%;
  height: 26px;
  left: 99.2%;
  right: 0;
  position: relative;
  top: 1px;
  transition-delay: 0.3s;
  /*width: 26px;*/
}

#item-list .sample.ten .col-md-4 button.btn-reset {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 10px;
  height: 20px;
  left: 90%;
  line-height: 20px;
  padding: 0;
  top: 5px;
  width: 20px;
  z-index: -1;
}

#item-list .sample.ten .col-md-4 input:focus ~ button.btn-reset {
  left: 155%;
}

#tree-bg {
  position: absolute;
  width: 800px;
  max-width: 800px;
  left: -400px;
  top: 30rem;
  transform: rotate(45deg);
}

#item-list .pagination {
  margin-top: 40px;
  justify-content: end;
}

.pagination button {
  margin: 0 20px;
}

/*========= MODALS ============*/
#item-list .card {
  transition: 0.3s;
  padding: 40px 20px;
  margin-bottom: 100px;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
  filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
}

#list-item-header {
  margin-top: 40px;
  margin-bottom: 0px;
}

#list-item-header,
#list-item-header .col-sm-12 {
  padding: 0;
}

.imgGridBox {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.imgGridBox img {
  display: block;
  width: 100%;
}

.imgOpen {
  position: absolute;
  background-color: #fff;
  bottom: 0;
  right: 0;
  max-width: 20px;
  max-height: 20px;
}

.popupHolder {
  /*visibility: hidden;*/
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100vw;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 888888;
}

.popupFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.popup {
  padding: 20px;
  position: relative;
  background: #fff;
  border-radius: 0.3rem;
  max-width: 95%;
}

.popup h3 {
  margin-top: 20px;
}

.popupClose {
  position: relative;
  font-size: 2rem;
  cursor: pointer;
  z-index: 999999;
}

.popupCnt {
  padding: 2rem 0;
  text-align: center;
}

.popupCnt #img01 {
  max-height: 400px;
}

/*================= CONTACT US  PAGE ===================+*/
#contact-header {
  margin-top: 40px;
}

#contact-wrapper {
  background: #fff;
  padding-bottom: 50px;
}

#contact-wrapper .container{
  padding: 0;
}

.formbold-mb-5 {
  margin-bottom: 20px;
}

.formbold-pt-3 {
  padding-top: 12px;
}

.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.formbold-form-wrapper {
  margin: 0 auto;
  /*max-width: 550px;*/
  width: 100%;
  background: white;
}

.formbold-form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #07074d;
  margin-bottom: 12px;
}

.formbold-form-label-2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.formbold-form-input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  outline: none;
  resize: none;
}

.formbold-form-input:focus {
  border-color: #d3531f;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-btn {
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #d3531f;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold--mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}

.formbold-px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}

/*================= CONTACT US  PAGE ===================+*/

/*============================================ ADMIN =============================================*/
.admin{
  margin-top: 50px;
}

.admin .sample{
  margin: 20px 0;
}

.admin .sampleinput{
  padding: 0 10px;
}
.admin .table-wrapper {
  overflow: hidden;
  background: #fff;
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.admin .table-title {
  padding-bottom: 15px;
  background: #435d7d;
  color: #fff;
  padding: 16px 30px;
  margin: -20px -25px 10px;
  border-radius: 3px 3px 0 0;
}

.admin .table-title h2 {
  margin: 5px 0 0;
  font-size: 24px;
}

.admin .table-title .btn-group {
  float: right;
}

.admin .table-title .btn {
  color: #fff;
  float: right;
  font-size: 13px;
  border: none;
  min-width: 50px;
  border-radius: 2px;
  border: none;
  outline: none !important;
  margin-left: 10px;
}

.admin .table-title .btn i {
  float: left;
  font-size: 21px;
  margin-right: 5px;
}

.admin .table-title .btn span {
  float: left;
  margin-top: 2px;
}

.admin table.table tr th,
.admin table.table tr td {
  border-color: #e9e9e9;
  padding: 12px 15px;
  vertical-align: middle;
}

.admin table.table tr th:first-child {
  width: 60px;
}

.admin table.table tr th:last-child {
  width: 100px;
}

.admin table.table-striped tbody tr:nth-of-type(odd) {
  background-color: #fcfcfc;
}

.admin table.table-striped.table-hover tbody tr:hover {
  background: #f5f5f5;
}

.admin table.table th i {
  font-size: 13px;
  margin: 0 5px;
  cursor: pointer;
}

.admin table.table td:last-child i {
  opacity: 0.9;
  font-size: 22px;
  margin: 0 5px;
}

.admin table.table td a {
  font-weight: bold;
  color: #566787;
  display: inline-block;
  text-decoration: none;
  outline: none !important;
}

.admin table.table td a:hover {
  color: #2196f3;
}

.admin table.table td a.edit {
  color: #ffc107;
}

.admin table.table td a.delete {
  color: #f44336;
}

.admin table.table td i {
  font-size: 19px;
}

.admin table.table td img {
  width: 60px;
}

.admin table.table .avatar {
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}

.admin .pagination {
  float: right;
  margin: 0 0 5px;
}

.admin .pagination li a {
  border: none;
  font-size: 13px;
  min-width: 30px;
  min-height: 30px;
  color: #999;
  margin: 0 2px;
  line-height: 30px;
  border-radius: 2px !important;
  text-align: center;
  padding: 0 6px;
}

.admin .pagination li a:hover {
  color: #666;
}

.admin .pagination li.active a,
.admin .pagination li.active a.page-link {
  background: #03a9f4;
}

.admin .pagination li.active a:hover {
  background: #0397d6;
}

.admin .pagination li.disabled i {
  color: #ccc;
}

.admin .pagination li i {
  font-size: 16px;
  padding-top: 6px;
}

.admin .hint-text {
  float: left;
  margin-top: 10px;
  font-size: 13px;
}

/* Custom checkbox */
.admin .custom-checkbox {
  position: relative;
}

.admin .custom-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  margin: 5px 0 0 3px;
  z-index: 9;
}

.admin .custom-checkbox label:before {
  width: 18px;
  height: 18px;
}

.admin .custom-checkbox label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  background: white;
  border: 1px solid #bbb;
  border-radius: 2px;
  box-sizing: border-box;
  z-index: 2;
}

.admin .custom-checkbox input[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  transform: inherit;
  z-index: 3;
  transform: rotateZ(45deg);
}

.admin .custom-checkbox input[type="checkbox"]:checked + label:before {
  border-color: #03a9f4;
  background: #03a9f4;
}

.admin .custom-checkbox input[type="checkbox"]:checked + label:after {
  border-color: #fff;
}

.admin .custom-checkbox input[type="checkbox"]:disabled + label:before {
  color: #b8b8b8;
  cursor: auto;
  box-shadow: none;
  background: #ddd;
}

/* Modal styles */
.admin .modal .modal-dialog {
  max-width: 400px;
}

.admin .modal .modal-header,
.modal .modal-body,
.modal .modal-footer {
  padding: 20px 30px;
}

.admin .modal .modal-content {
  border-radius: 3px;
}

.admin .modal .modal-footer {
  background: #ecf0f1;
  border-radius: 0 0 3px 3px;
}

.admin .modal .modal-title {
  display: inline-block;
}

.admin .modal .form-control {
  border-radius: 2px;
  box-shadow: none;
  border-color: #dddddd;
}

.admin .modal textarea.form-control {
  resize: vertical;
}

.admin .modal .btn {
  border-radius: 2px;
  min-width: 100px;
}

.admin .modal form label {
  font-weight: normal;
}

.admin .modal-content img {
    width: 100%;
}

/*========================================= GALLERY ===============================================*/

#project .col-sm-12 {
  margin: 20px 0;
}
.project-header {
  margin-top: 40px;
}

.gallery {
  margin: 0 0 100px 0;
}

.gallery li {
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.gallery li .img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: width 400ms, left 400ms, right 400ms;
}

.gallery li .img__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
  transition: left 400ms, right 400ms, transform 400ms;
}

.gallery li .img--before,
.gallery li .img--after {
  width: 60%;
  transform: skewX(-15deg);
}

.gallery li .img--before > *,
.gallery li .img--after > * {
  transform: skewX(15deg);
}

.gallery li .img--before {
  right: 49.9%;
}

.gallery li .img--before .img__bg {
  left: 15%;
}

.gallery li .img--after {
  left: 49.9%;
}

.gallery li .img--after .img__bg {
  right: 15%;
}

.gallery li .img.focus {
  width: 80%;
}

.gallery li .img.focus .img__bg {
  transform: skewX(15deg) scale(1.1);
  opacity: 1;
}

.gallery li .img.focus.img--single {
  width: 100%;
}

.gallery li .img.focus.img--single .img__bg {
  transform: scale(1.3);
}

.gallery li .img.focus.img--before {
  right: 29.9%;
}

.gallery li .img.focus.img--before .img__bg {
  left: 12%;
}

.gallery li .img.focus.img--after {
  left: 29.9%;
}

.gallery li .img.focus.img--after .img__bg {
  right: 12%;
}

.gallery li .img.unfocus {
  width: 50%;
}

.gallery li .img.unfocus.img--before {
  right: 69.9%;
}

.gallery li .img.unfocus.img--before .img__bg {
  left: 20%;
}

.gallery li .img.unfocus.img--after {
  left: 69.9%;
}

.gallery li .img.unfocus.img--after .img__bg {
  right: 20%;
}

.gallery li .content {
  position: absolute;
  color: #fff;
  z-index: 10;
  text-transform: uppercase;
  /*font-family: "Open Sans";*/
  font-family: "Dancing Script";
  text-shadow: 1px 1px 1px #000;
  font-size: 20px;
  pointer-events: none;
}

.gallery li .content--before {
  top: 15px;
  left: 18px;
}

.gallery li .content--after {
  bottom: 15px;
  right: 18px;
}


/*=================THANK YOU PAGE =======================*/
#thank-you .container{
    background-color: white;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);
    border-radius: 10px;
    margin-top: 150px;
    margin-bottom: 100px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 40px;
    width: auto;
}

#thank-you .container header{
    margin-bottom: 30px;
}

@media (min-width: 320px) {
  #heroSection .slide-imgs{
    margin-top: 100px;
  }
  
  .mobile-nav {
    -webkit-filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
    filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
    padding: 0.5rem 15px;
  }

  #main-wrapper.home {
    margin-top: -10px;
  }

  .sub-headers {
    font-size: 2rem;
  }

  .row img {
    -webkit-filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
    filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
  }

  .design-copy {
    background-color: #f2f3eb;
    max-width: 100%;
    padding: 20px 0 50px 0;
  }

  .design-copy a {
    color: #d3531f;
  }
  
  /*.design-copy .text-left p{
      margin-top: 20px;
      margin-bottom: 0;
  }*/

  #belowFold {
    margin-top: 0;
    position: relative;
    padding: 70px 0px 0px;
  }

  #belowFold a {
    color: #d3531f;
  }

  #belowFold p {
    line-height: 2;
  }

  #belowFold #prop-palm {
    margin-top: 0;
    width: 220px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.8;
    z-index: 100;
  }

  #belowFold .sub-headers {
    position: relative;
    /*z-index: 25;*/
    z-index: 101;
  }

  #belowFold .col-sm-12:nth-child(2) {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #belowFoldMid {
    padding: 20px 0;
    background-color: #fbfbfb;
  }
  
  #belowFoldMid .col-sm-6{
      padding: 0;
  }

  #belowFoldMid .sub-headers {
    margin-bottom: 20px;
  }

  #belowFold .slide-imgs {
    height: 600px;
    margin: auto;
    -webkit-filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
    filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
  }
  
  /*#belowFold .row:nth-child(4) .col-md-6:nth-child(1) img{
    height: 600px;
  }*/

  #gallery {
    padding: 0;
    background-color: #f2f3eb;
  }

  #gallery .gallery-wrapper {
    margin-top: 0px;
  }

  #gallery .gallery-inner {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  #gallery .gallery-inner h1 {
    font-size: 24px;
  }

  .last-copy {
    margin: 20px 0 0 0;
  }

  .last-copy .col-sm-7 > div {
    padding: 20px;
  }

  .last-copy .col-sm-7 div h2:nth-child(1) {
    padding: 15px 0;
    font-size: 30px;
    white-space: nowrap;
  }

  .last-copy .col-sm-7 div h2:nth-child(1):before {
    left: 0;
    right: 0;
  }

  .last-copy .col-sm-7 div h2:nth-child(1):after {
    left: 0;
    right: 0;
  }

  .last-copy .col-sm-7 div h2:nth-child(2) {
    font-size: 24px;
  }

  #footer > .row {
    padding: 40px 0 0 0;
  }

  #footer .row .col-sm-3 {
    margin-bottom: 20px;
  }

  #footer .footer-logo img {
    position: relative;
  }
}

@media (min-width: 540px) {
    
  .sm\:w-half {
    width: 50%;
  }

  .gallery-container {
    margin-top: 150px;
  }

  .container-fluid#project {
    padding: 0 100px;
  }
}

@media (min-width: 600px) {
  /*p:not(.top-copy p) {
    font-size: 12px;
  }*/
  
  #main-wrapper.home {
    margin-top: 0;
  }
  
  #heroSection .slide-imgs{
      margin-top: 95px;
  }

  /*======= BELOW FOLD TOP========*/
  
  .design-copy{
    padding: 30px 0 0 0;
  }
  
  /*.design-copy > .row{
    align-items: baseline;
  }*/
  

  .design-copy p {
    line-height: 2;
  }

  .design-copy p i {
    float: right;
    margin: -20px 90px 0 0;
  }

  .design-copy .col-md-6:nth-child(2) {
      padding: 0 15px;
  }

  /*======= BELOW FOLD MID ========*/

  #belowFold {
    padding: 20px 15px;
    margin-top: 50px;
    position: relative;
  }


  #belowFold #prop-palm {
    position: absolute;
    margin-top: -50px;
    z-index: 1;
    right: 0;
    top: 0;
    /*width: initial;*/
    width: 300px;
  }

  #belowFold .col-md-6:nth-child(4) div {
    border: 1px solid;
  }

  #belowFold div#bf-copy-1 .sub-headers,
  #belowFold div#bf-copy-2 .sub-headers,
  #belowFoldMid .sub-headers {
    margin-bottom: 40px;
  }

  #belowFold .row:nth-child(4) .col-md-6:nth-child(1) img {
    /*width: 600px;*/
    border: 10px solid #8a6444ba;
  }

  #belowFoldMid {
    padding: 20px 15px;
    margin-top: 50px;
    position: relative;
    /*background-color: #f2f3eb;*/
  }

  #belowFoldMid a {
    color: #d3531f;
  }

  .border-right {
    border-right: 2px solid #664a33 !important;
  }

  .border-bottom {
    border-bottom: 2px solid #664a33 !important;
  }

  #belowFoldMid .row:nth-child(2) .col-sm-6 {
    /*padding: 40px 0 40px 150px;*/
    padding: 40px 0 40px 0px;
  }

  #belowFoldMid .row:nth-child(3) .col-sm-6:nth-child(2) {
    /*padding: 40px 0 40px 150px;*/
    padding: 40px 0 40px 0px;
  }

  #belowFoldMid .sub-headers {
    margin-bottom: 60px;
  }

  #belowFoldMid p {
    color: #707070;
    line-height: 2;
  }
  
  #belowFold #bg-pattern{
    position: relative;
    width: 120em;
    left: -665px;
    top: 130px;
  }
  
  #gallery {
    padding: 20px 15px;
  }

  #gallery .gallery-inner h1 {
    font-size: 40px;
  }
  
  #gallery .gallery-inner {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .last-copy {
    margin: 40px 0 50px;
  }

  .last-copy .col-sm-7 {
    -webkit-filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
    filter: drop-shadow(5px 5px 5px rgba(84, 84, 84, 0.552));
  }

  .last-copy .col-sm-7 > div {
    white-space: nowrap;
  }

  .last-copy .col-sm-7 div h2:nth-child(1) {
    padding: 15px;
    font-size: 2rem;
  }

  .last-copy .col-sm-7 div h2:nth-child(1):before {
    left: 75px;
    right: 75px;
  }

  .last-copy .col-sm-7 div h2:nth-child(1):after {
    left: 75px;
    right: 75px;
  }

  .last-copy .col-sm-7 div h2:nth-child(2) {
    /*font-size: 2rem;*/
    font-size: 18px;
  }

  #footer {
    padding-top: 50px;
  }
  
  #footer .social .col-sm-2 {
    padding-left: 0;
    margin-right: 10px;
  }

  #footer > .row {
    padding: 50px 15px;
  }

  #footer .col-md-9 {
    padding-left: 100px;
  }

  #footer .col-md-9 .col-sm-3 {
    margin-right: 50px;
  }

  #footer .footer-logo img {
    position: absolute;
  }
  #landscaping .overlay {
    display: block;
  }
  
  #landscape-header .top-copy{
    font-size: 30px;
  }
  
  .popupCnt img {
    max-width: 400px;
  }
  
  #thank-you .container{
    width: 100%;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px){
  
  #list-item-header {
      margin-bottom: 40px;
 }
 
  #top-bar p {
    font-size: 12px;
  }
    
  #top-bar p:nth-child(2) {
    padding-right: 15px;
  }
  
  .navbar{
    padding: 0.2rem 1rem;
  }
  
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  
  .navbar-brand div{
      left: 15px;
  }
  
  .navbar-brand img {
      height: 80px;
  }
  
  li.nav-item {
    margin: 0 0 0 50px;
  }
  
  .nav-link{
    padding: 0 1rem;
    font-size: 14px;
  }
  
  .nav-item::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #d3531f;
    transition: width 0.3s;
  }

  .nav-item:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: relative;
    background: #d3531f;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }

  .nav-item:hover:after {
    width: 100%;
    left: 0;
  }

  .design-copy .col-md-6:nth-child(1) {
    line-height: 100px;
    border-right: 2px solid #664a33;
  }
  
  #heroSection .hero-copy{
    padding: 10px 40px;
  }
  
  #heroSection .hero-copy p{
    font-size: 35px;
    margin: 0;
  }
  
  #heroSection .slide-imgs {
    height: 450px;
    margin-top: 0;
  }
  
  #belowFoldMid .image--cover{
    height: 230px;
    width: 230px;
  }
  
  #belowFold #prop-palm{
    width: 185px;
  }
  
  #gallery .gallery-wrapper {
    margin-top: 50px;
  }
}


@media (min-width: 801px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
  /* tablet, landscape iPad, lo-res laptops ands desktops */
  #top-bar p {
    font-size: 14px;
  }
   
}

@media (min-width: 1000px) {
    
  #top-bar p {
    font-size: 16px;
  }
  
  #top-bar p:nth-child(2) {
    padding-right: 30px;
  }
  
  .navbar {
    padding: 0.5rem 30px;
  }
  
  .navbar-brand div{
    left: 50px;
  }
  
  li.nav-item {
    margin: 0 0 0 75px;
  }
  
  .nav-link{
    font-size: 16px;
  }
  
  #list-item-header {
    margin-top: 0px;
  }
  
  .design-copy{
    padding: 40px 30px 0;
  }
  
  .design-copy .row p:nth-child(1){
    padding-left: 20px;
  }
  
  #belowFoldMid {
    padding: 20px 30px;
  }
  
  #belowFold .slide-imgs, #belowFold .row:nth-child(4) .col-md-6:nth-child(1) img{
    max-width: 450px;  
  }
  
  #belowFold #bg-pattern {
    left: -545px;
  }
  
  #gallery{
    padding: 20px 30px;
  }
  
  .last-copy img{
    max-width: 400px;
  }
  
  .last-copy .col-sm-7 div h2:nth-child(2){
    font-size: 24px;
  }
  
  #contact-header {
    margin-top: 0px;
  }

  #contact-info {
    padding: 0 30px;
  }

  #contact-wrapper {
    padding: 50px 0;
  }
}

@media (min-width: 1025px) {
  /* big landscape tablets, laptops, and desktops */
  #main-wrapper {
    margin-top: 100px;
  }
}

@media (min-width: 1200px) {
  #main-wrapper.landscape .container {
    max-width: 1500px;
  }
  
  #belowFold #bg-pattern {
    left: -490px;
  }
  
}

@media (min-width: 1281px) {
  /* hi-res laptops and desktops */
  
  #top-bar p:nth-child(2) {
    padding-right: 50px;
  }
  
  .navbar {
    padding: 0.5rem 50px;
  }
  
  .navbar-brand div{
      left: 100px;
  }
  
  .navbar-brand img {
    height: 100px;
  }
  
  /*#heroSection {
    padding: 20px 150px;
  }*/
  #heroSection {
    padding: 20px 50px;
  }
  
  #heroSection .hero-copy{
    right: 10px;
  }
  
  #heroSection .slide-imgs {
    height: 70vh;
  }
  
  #belowFoldMid {
    padding: 20px 50px;
  }
  
  #belowFold #prop-palm{
    width: 300px;
  }
  
  #belowFoldMid .image--cover{
    margin: 20px;
    float: left;
    shape-outside: circle();
    width: 250px;
    height: 250px;
  }
  
  /*#belowFold div#bf-copy-1,
  #belowFold div#bf-copy-2 {
    padding: 40px 150px;
    margin: 0;
    z-index: 2;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }*/
  #belowFold #bg-pattern{
    left: -430px;
  }
  
  div#bf-copy-1 {
    padding: 40px 150px 40px 15px;
  }
  
  div#bf-copy-2 {
    padding: 40px 15px 40px 150px;
  }
  
  #gallery{
    padding: 20px 30px;
  }
  
  #gallery .gallery-inner h1 {
    font-size: 60px;
  }
  
  #landscape-header .top-copy{
    font-size: 50px;
  }
}

@media (min-width: 1450px) {
  .navbar-brand img {
    height: 120px;
   }
   
   #belowFold #bg-pattern {
    left: -345px;
   }
}

@media (min-width: 1600px) {

   #belowFold #bg-pattern {
     width: 130em;
   }
}

@media (min-width: 1700px) {

   #belowFold #bg-pattern {
     top: 85px;;
     left: -250px;
   }
}

@media (min-width: 1800px) {

   #belowFold #bg-pattern {
     left: -230px;
   }
}



@media (min-width: 2000px) {
  /* hi-res laptops and desktops */
  #heroSection {
    /*padding: 20px 200px;*/
  }
}

@media screen and (max-width: 1010px) {
  .gallery {
    width: auto;
  }

  .gallery li .img--before .img__bg {
    left: 4vw;
  }

  .gallery li .img--after .img__bg {
    right: 4vw;
  }

  .gallery li .img.focus .img__bg {
    transform: skewX(10deg) scale(1.1);
  }
}

@media screen and (max-width: 950px) {
  .gallery li .img--before,
  .gallery li .img--after {
    transform: skewX(-10deg);
  }

  .gallery li .img--before > *,
  .gallery li .img--after > * {
    transform: skewX(10deg);
  }

  .gallery li .img--before .img__bg {
    left: 15%;
  }

  .gallery li .img--after .img__bg {
    right: 15%;
  }
}

@media screen and (max-width: 650px) {
  /*.navbar-brand img {
    height: 70px;
  }*/

  #main-wrapper {
    margin-top: 130px;
  }

  .gallery li {
    width: 100%;
  }

  .project-images {
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  #belowFoldMid .col-sm-6 {
    margin: 20px 0;
  }
  #landscaping .row {
    margin: 50px 0 !important;
  }

  #landscaping .overlay {
    display: none !important;
  }

  #meet-up .col-sm-12:nth-child(2) {
    height: 380px !important;
  }

  #design .col-sm-12:nth-child(1) {
    height: 210px !important;
  }

  #install .col-sm-12:nth-child(2) {
    height: 260px !important;
  }

  #meet-up .col-sm-12:nth-child(2),
  #design .col-sm-12:nth-child(1),
  #install .col-sm-12:nth-child(2) {
    background-size: 100% !important;
    background-position-y: 0 !important;
    background-position-x: 0 !important;
  }
}