:root {
  --bl-primary-color: #7f6457;
  --bl-light-color: #cb997e;
  --bl-dark-color: #2a211d;
  --bl-border-radius: 10px;
}

/* 
blue shades
#00b4d8
#4895ef
#00a8e8
#cb997e -> same theme
*/

/* font weight */

.fw-medium {
  font-weight: 500;
}

/* resize */

.resize-none {
  resize: none;
}

/* font size */

.fs-8 {
  font-size: 8px;
}
.fs-10 {
  font-size: 10px;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}

/* 5 Columns */

.col-xs-25,
.col-sm-25,
.col-md-25,
.col-lg-25 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.col-xs-25 {
  width: 20%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-25 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-25 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-25 {
    width: 20%;
    float: left;
  }
}

/* text color */

.bl-text-primary {
  color: var(--bl-primary-color);
}
.bl-text-light {
  color: var(--bl-light-color);
}
.bl-text-dark {
  color: var(--bl-dark-color);
}

/* bg color */

.bl-bg-primary {
  background-color: var(--bl-primary-color);
}
.bl-bg-light {
  background-color: var(--bl-light-color);
}
.bl-bg-dark {
  background-color: var(--bl-dark-color);
}

.bl-bg-gray {
  background-color: #F5F5F5;
}

/* rounded */

.bl-rounded {
  border-radius: var(--bl-border-radius);
}

/* button */

.bl-dark-btn {
  color: #fff;
  background: var(--bl-dark-color);
  border-color: var(--bl-dark-color);
  box-shadow: none;
}
.bl-dark-btn:hover {
  color: #fff;
  background: var(--bl-dark-color);
  border-color: var(--bl-dark-color);
  box-shadow: none;
}
.bl-dark-btn:active {
  color: #fff;
  background: var(--bl-dark-color);
  border-color: var(--bl-dark-color);
  box-shadow: none !important;
}
.bl-dark-btn:focus {
  color: #fff;
  background: var(--bl-dark-color);
  border-color: var(--bl-dark-color);
  box-shadow: none;
}

.bl-flush-btn {
  box-shadow: none;
}
.bl-flush-btn:hover {
  box-shadow: none;
}
.bl-flush-btn:active {
  box-shadow: none;
}
.bl-flush-btn:focus {
  box-shadow: none;
}

/* navbar */

.bl-navbar .navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--bl-dark-color);
}

.bl-logo {
  width: 30px;
}

.bl-navbar {
  position: fixed;
  width: 100%;
  background: transparent;
  top: 0;
  left: 0;
  z-index: 1020;
  transition: 0.4s ease;
  background: var(--bl-light-color);
  box-shadow: 0 2px 10px rgb(0, 0, 0, 0.15);
}
.bl-navbar.active {
  background: var(--bl-light-color);
  box-shadow: 0 2px 10px rgb(0, 0, 0, 0.15);
}
.bl-navbar .bl-navbar-container {
  width: 100%;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  margin-right: auto;
  margin-left: auto;
}
.bl-navbar .navbar-nav .nav-item:not(:last-child) {
  margin-right: 10px;
}
.bl-navbar .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  padding: 8px 20px;
  color: rgba(0, 0, 0, 0.9);
}
.bl-navbar .navbar-nav .nav-link.active,
.bl-navbar .navbar-nav .show > .nav-link {
  color: #fff;
  background: var(--bl-dark-color);
}

.bl-navbar .navbar-toggler {
  border: none;
}

/* section */

.bl-section {
  margin-bottom: 80px;
}

/* fancy image */

.bl-fancy-image {
  border-radius: var(--bl-border-radius);
}

/* form control */

.bl-form-control {
  border: 1px solid transparent;
  transition: border 0.4s ease;
}
.bl-form-control:focus {
  border: 1px solid var(--bl-dark-color);
  box-shadow: none;
}

/* contact us */

.bl-contact-us-container {
  position: absolute;
  top: -200px;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--bl-border-radius);
  background: var(--bl-light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.bl-contact-us {
  padding: 25px;
}

.bl-contact-us-image {
  border-radius: var(--bl-border-radius);
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* footer */

.bl-footer {
  position: relative;
  margin-top: 350px;
  width: 100%;
  padding: 260px 40px 40px 40px;
  color: #fff;
  background: var(--bl-dark-color);
}

.bl-footer-nav .nav-link {
  color: rgba(255, 255, 255, 0.4);
}
.bl-footer-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.bl-footer-address .bl-footer-address-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.bl-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.bl-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.bl-footer-social .link-light {
  color: rgba(255, 255, 255, 0.5);
}
.bl-footer-social .link-light:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* slick */

.bl-slick-prev,
.bl-slick-next {
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: var(--bl-dark-color);
  cursor: pointer;
  border: none;
  border-radius: 100%;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
.bl-slick-prev {
  left: 25px;
}
.bl-slick-next {
  right: 25px;
}

.bl-slide-item {
  background: var(--bl-light-color);
  border-radius: var(--bl-border-radius);
}
.bl-slide-caption {
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  display: inline-block;
  border-radius: var(--bl-border-radius);
}

/* feature icon */

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--bl-light-color);
}
.feature-icon.sm {
  width: 40px;
  height: 40px;
}

/* captcha */

.bl-captcha-container {
  display: flex;
  align-items: center;
}
.bl-captcha {
  width: 110px;
  margin-right: 10px;
  border-radius: 0.2rem;
}
.bl-captcha-input {
  height: 31px;
  max-width: 150px;
}

/* loader */

.bl-loader-wrapper {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 10000;
}
.bl-loader-wrapper.active {
  display: block;
}
.bl-loader-backdrop {
  position: fixed;
  height: 100vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.bl-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--bl-dark-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* media query css */

@media (min-width: 768px) {
  .bl-fancy-image.left {
    box-shadow: 20px 20px 0 var(--bl-light-color);
  }
  .bl-fancy-image.right {
    box-shadow: -20px 20px 0 var(--bl-light-color);
  }

  .bl-slide-item {
    position: relative;
  }
  .bl-slide-caption {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50px;
    min-width: 400px;
    background: #fff;
    transform: translateX(-50%);
    transition: opacity 0.4s ease 0.4s;
  }
  .bl-slide-caption.active {
    opacity: 1;
  }

  .bl-contact-us-container {
    width: 70%;
  }
}

@media (min-width: 992px) {
  .bl-mb-6 {
    margin-bottom: 6rem !important;
  }
  .bl-navbar {
    background: transparent;
    box-shadow: none;
  }
  .bl-contact-us-container {
    width: 80%;
  }
}

@media (min-width: 1200px) {
  .bl-contact-us-container {
    width: 60%;
    max-width: 900px;
  }
}
