@import url("https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i&display=swap");

* {
  font-family: "Nunito", sans-serif;
}
body {
  font-family: "Nunito", sans-serif;
  color: #141414;
  font-size: 14px;
  background-color: #2c342d !important;
}

/*UTILITIES*/
.rounded-75 {
  border-radius: 0.75rem!important;
}
.p-75 {
  padding: 1.75rem!important;
}

@media (min-width:768px){
  /* PC */
  .d-lg-none {
    display: none;
  }
  .bg-overlay-reg {
    display:block;
  }
  .bg-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
  }

}
@media (max-width:768px){
  /* MOBILE */
  .d-xs-none {
    display: none;
  }
  .bg-overlay, .bg-overlay-reg {
    background-color: rgba(0,0,0,0) !important;
  }

  .bg-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bg-overlay-reg {
    display: block;
  }
  .btn-block-xs {
    display: block !important;
    width: 100%;
  }
}

.min-h-25 {
  min-height: 25%;
}

.bg-img::before {
  content: '';
  position: absolute;
  /*
  background-image: url("../../img/banner-landing-10.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  */
  background-color: #f3eee8;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  width: 100vw;
  height: 100vh;
}

.bg-overlay, .bg-overlay-reg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
  z-index: 2;
  overflow: auto;
}

.bg-dark-opacity {
  /*background-color: rgba(0,0,0,0.5);*/
  background-color: #343434;
  border: 1px solid #707070;
}

.btn-info {
  color: #ffffff !important;
  background-color: #99bd73 !important;
  border-color: #85aa5c !important;
}

.btn-info:hover {
  color: #1D1D1D !important;
  background-color: #FAEBA0 !important;
  border-color: #1D1D1D !important;
}

.btn-outline-info {
  color: #FAEBA0 !important;
  background-color: #1D1D1D !important;
  border-color: #FAEBA0 !important;
}

.btn-outline-info:hover {
  color: #FAEBA0 !important;
  background-color: #1D1D1D !important;
  border-color: #58a799 !important;
}

.text-info-new {
  color: #6EB4A8 !important;
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 16px !important;
  color: #6EB4A8 !important;
}

input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="password"]::-webkit-input-placeholder {
  /* Firefox 19+ */
  font-size: 16px !important;
  color: #6EB4A8 !important;
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="password"]::-webkit-input-placeholder {
  /* IE 10+ */
  font-size: 16px !important;
  color: #6EB4A8 !important;
}

input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="password"]::-webkit-input-placeholder {
  /* Firefox 18- */
  font-size: 16px !important;
  color: #6EB4A8 !important;
}

select, input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"] {
  color: #6EB4A8 !important;
}

select, .form-control {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid #6EB4A8 !important;
  border-radius: 0 !important;
}

.form-control:focus {
  background-color:  #fff !important;
}