:root {
  --main-color: #b7c1ac;
  --second-color: #ffffff;
  --black-color: #000000;
  --white-color: #FFFFFF;
  --bg-color: #f1f1f1;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif !important;
  overflow-x: hidden;
  width: 100vw;
}

a:link,
a:visited,
a:hover,
a:focus,
a:active {
    color: var(--black-color);
}

header {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  background-color: var(--main-color);
}

main {
    margin-top: 50px;
}

main .date-post {
    font-style: italic;
    font-size: 12px;
}

.paw-walk {
    position: relative;
    display: flex;
    top: 1rem;
    max-width: 100vw;
}

.paw-walk .right-paw,
.paw-walk .left-paw {
    position: absolute;
}

.paw-walk .left-paw {
    left: 0px;
    top: 330px;
    transform: rotate(-25deg);
}

.paw-walk .right-paw {
    left: 26px;
    top: 370px;
    transform: rotate(30deg);
}

.paw-walk .left-paw img.hide {
    opacity: 0;
}

.paw-walk .left-paw img.show {
    opacity: 1;
    transition: ease-in-out 1s;
}

.paw-walk .right-paw img.hide {
    opacity: 0;
}

.paw-walk .right-paw img.show {
    opacity: 1;
    transition: ease-in-out 1s;
}

.curve {
    position: absolute;
    top: 0;
    height: 350px;
    width: 100%;
    bottom: 0;
    z-index: -1;
    background-color: var(--main-color);
}

/*.curve::before {
    content: '';
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 55%;
    height: 100%;
    transform: translate(85%, 60%);
    background-color: var(--white-color);
}

.curve::after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 55%;
    height: 100%;
    transform: translate(-4%, 40%);
    background-color: var(--main-color);
    z-index: -1;
}*/

.sampaio-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sampaio-navbar li.nav-item a:link,
.sampaio-navbar li.nav-item a:visited,
.sampaio-navbar li.nav-item a:active {
    color: var(--black-color);
    opacity: 0.5;
}

.sampaio-navbar li.nav-item a.active {
    opacity: 1.0 !important;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px var(--black-color);
}

.sampaio-navbar
div.navbar-collapse 
ul li.nav-item a:hover {
  opacity: 1.0;
}
.sampaio-navbar div.navbar-collapse.collapsing,
.sampaio-navbar div.navbar-collapse.collapse.show {
    background-color: var(--main-color);
    border-radius: 8px;
}

.sampaio-navbar
.navbar-brand {
  margin: 0 !important;
}

.sampaio-navbar
.navbar-toggler {
  height: 50px;
  width: 50px;
  background-color: var(--main-color);
  border: 1px solid var(--bg-color);
}

.navbar-toggler div {
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background-color: var(--bg-color);
}

.bg-main {
  background-image: linear-gradient(var(--main-color),var(--second-color));
}

/*Photo Gallery*/
.album {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.album:hover {
  transform: scale(1.1);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.album .images_album {
  position: relative;
  width: 150px;
  height: 190px;
}

.album .images_album div.image {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.album .images_album div.image:before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 5px solid #fff;
}

.album .images_album div.image:nth-child(1){
  border: 2px solid #000;
  width: 150px;
  height: 150px;
}

.album .images_album div.image:nth-child(2){
  border: 2px solid #000;
  width: 150px;
  height: 150px;
  top: 10px;
  left: 10px;
}

.album .images_album div.image:nth-child(3){
  border: 2px solid #000;
  width: 150px;
  height: 150px;
  top: 20px;
  left: 20px;
}
.album .images_album div.image:nth-child(1) img,
.album .images_album div.image:nth-child(2) img,
.album .images_album div.image:nth-child(3) img {
  max-width: 150px;
  max-height: 150px;
}

.photo-gallery {
  color: #313437;
  background-color: var(--white-color);
}

.photo-gallery p {
  color: #7d8285;
}

.photo-gallery h2 {
  font-weight: bold;
  margin-bottom: 40px;
  padding-top: 40px;
  color: inherit;
}

@media (max-width:767px) {
  .photo-gallery h2 {
    margin-bottom: 25px;
    padding-top: 25px;
    font-size: 24px;
  }
}

.photo-gallery .intro {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.photo-gallery .intro p {
  margin-bottom: 0;
}

.photo-gallery .photos {
  padding-bottom: 20px;
}

.photo-gallery .item {
  padding-bottom: 30px;
}

.photo-gallery .item img {
  max-height: 200px;
}
/*Photo Gallery*/

/*Footer Basic*/
.footer-basic {
  padding: 40px 0;
  background-color: var(--main-color);
  /*background-image: url('../img/grass.jpg');
  background-size: cover;
  background-position: 0% 40%;*/
  color: var(--black-color);
}

.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-basic li {
  padding: 0 10px;
}

.footer-basic ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-basic ul a:hover {
  opacity: 1;
}

.footer-basic .social {
  text-align: center;
  padding-bottom: 25px;
}

.footer-basic .social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 8px;
  color: inherit;
  opacity: 0.75;
  transition: 0.5s;
}

.footer-basic .social > a > i {
  color: var(--second-color);
}

.footer-basic .social > a:hover {
  opacity: 0.9;
  transition: 0.5s;
  transform: scale(1.2);
}

.footer-basic .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: var(--black-color);
  margin-bottom: 0;
}
/*Footer Basic*/

/*Features Clean*/
.features-clean {
  color: #313437;
  background-color: var(--white-color);
  padding-bottom: 30px;
}

@media (max-width:767px) {
  .features-clean {
    padding-bottom: 10px;
  }
}

.features-clean p {
  color: #7d8285;
}

.features-clean h2 {
  font-weight: bold;
  margin-bottom: 40px;
  padding-top: 40px;
  color: inherit;
}

@media (max-width:767px) {
  .features-clean h2 {
    margin-bottom: 25px;
    padding-top: 25px;
    font-size: 24px;
  }
}

.features-clean .intro {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 60px;
}

@media (max-width:767px) {
  .features-clean .intro {
    margin-bottom: 40px;
  }
}

.features-clean .item {
  min-height: 100px;
  padding-left: 80px;
  margin-bottom: 40px;
}

@media (max-width:767px) {
  .features-clean .item {
    min-height: 0;
  }
}

.features-clean .item .name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
  color: inherit;
}

.features-clean .item .description {
  font-size: 15px;
  margin-bottom: 0;
}

.features-clean .item .icon {
  font-size: 40px;
  color: var(--main-color);
  float: left;
  margin-left: -65px;
}

/*Features Clean*/

/* User panel */
.logo-dev {
  background: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.user-panel {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #576574;
  z-index: 100;
}

.user-panel .btn-secondary-emporium {
  border: none;
  background-color: #576574;
  color: var(--white-color);
}

.user-login {
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  top: 0;
  background-color: var(--main-color);
}

.user-login form {
  padding: 35px;
}

.user-login .effect{border: 0; padding: 4px 0; border-bottom: 1px solid #ccc; background-color: transparent;}
.user-login .effect ~ .focus-border{position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: #4caf50; transition: 0.4s;}
.user-login .effect:focus ~ .focus-border,
.user-login .has-content.effect ~ .focus-border{width: 100%; transition: 0.4s;}
.user-login .effect ~ label{position: absolute; left: 0; width: 100%; top: 9px; color: #aaa; transition: 0.3s; z-index: -1; letter-spacing: 0.5px;}
.user-login .effect:focus ~ label, .has-content.effect ~ label{top: -16px; font-size: 12px; color: #4caf50; transition: 0.3s;}

.user-login .btn-primary-emporium {
  border: 1px solid #392E32;
  background-color: #392E32;
  color: var(--white-color);
  height: 37px;
  position: relative;
  bottom: -15px;
}

.form__group {
  position: relative;
  padding: 15px 0 0;
  width: 50%;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #392E32;
  outline: 0;
  font-size: 13px;
  color: var(--white-color);
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 12px;
  cursor: text;
  top: 20px;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 12px;
  color: #392E32;
}

.form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, #392E32, #73676b);
  border-image-slice: 1;
}

.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 14px;
  color: #392E32;
  font-weight: 700;
}

.form__field:required, .form__field:invalid {
  box-shadow: none;
}

/* User panel */

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

.uploader label {
  cursor: pointer;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  margin: 0 !important;
}

.uploader input[type='file'] {
  display: none;
}

.loading {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 160px;
}
.loading div {
  animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loading div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--main-color);
  margin: -4px 0 0 -4px;
}
.loading div:nth-child(1) {
  animation-delay: -0.036s;
}
.loading div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.loading div:nth-child(2) {
  animation-delay: -0.072s;
}
.loading div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.loading div:nth-child(3) {
  animation-delay: -0.108s;
}
.loading div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.loading div:nth-child(4) {
  animation-delay: -0.144s;
}
.loading div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loading div:nth-child(5) {
  animation-delay: -0.18s;
}
.loading div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.loading div:nth-child(6) {
  animation-delay: -0.216s;
}
.loading div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.loading div:nth-child(7) {
  animation-delay: -0.252s;
}
.loading div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.loading div:nth-child(8) {
  animation-delay: -0.288s;
}
.loading div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-main {
  background-color: var(--main-color);
}