@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;600&family=Poppins:wght@300;400;600&display=swap');

/* -----------------------------------
     Global
----------------------------------- */
* {
  margin: 0;
  padding: 0;
  font-family: inherit;
  outline: none !important;
}

*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #506172;
  font-weight: 300;
  position: relative;
  scroll-behavior: smooth;
}

b,
strong {
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  line-height: 1.4;
  color: #152035;
  margin: 0;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p:first-letter,
h5:first-letter {
  text-transform: capitalize;
}

a,
button,
.btn {
  text-decoration: none;
  color: inherit;
  transition: all 0.7s ease-in-out;
}

.btn-link.focus,
.btn-link:focus,
.btn-link:hover {
  text-decoration: none;
  box-shadow: none;
}

.btn {
  font-weight: 600;
  margin: 5px 0;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin-bottom: 0;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.bg-primary {
  background-color: var(--brand-blue) !important;
}

.circled {
  border-radius: 100%;
}

.bg-secondary {
  background-color: var(--brand-gold) !important;
}

.list-inline li {
  display: inline-block;
}

.max-width-400 {
  width: 400px;
}

.rounded-15 {
  border-radius: 15px;
}

.border-light {
  border: 1px solid #50426E !important;
}

.inner-width {
  width: 600px;
  margin: auto;
}

.card {
  background-color: transparent;
  border: 0px;
}

.form-control:focus {
  outline: none !important;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.container-fluid {
  max-width: 1280px;
}

.container-full {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* ------------------------------
     Helpers
------------------------------ */
.sign {
  width: 500px;
  margin: auto;
  display: block;
  position: relative;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.sign-form .btn-custom {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sign-form .sign-controls {
  margin: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}

.sign-form .sign-controls .btn-link {
  color: #506172;
  font-weight: 400;
}

.sign-form .sign-controls .custom-control label {
  line-height: 23px;
}

.sign-form .btn-link {
  color: #152035;
  font-size: 14px;
  font-weight: 600;
}

.sign-form .btn-link:hover {
  color: var(--brand-gold) !important;
  text-decoration: none;
}

.sign-form p {
  font-size: 14px;
  margin-bottom: 0px !important;
}

.sign-form .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
}

.sign-form .custom-checkbox .custom-control-input:checked~.custom-control-label::before:focus {
  outline: none;
}

.page404 {
  width: 600px;
  margin: auto;
}

.page404 .content {
  text-align: center;
}

.page404 .content h1 {
  font-size: 200px;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 30px;
}

.page404 .content h3 {
  margin-bottom: 10px;
}

.page404 .content p {
  margin-bottom: 30px;
}

.pagination {
  padding: 0px 0px 50px 0px;
}

.pagination ul {
  text-align: center;
  margin: auto;
}

.pagination ul li {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--brand-gold);
  text-align: center;
  margin-right: 8px;
  line-height: 35px;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.pagination ul li:last-child {
  margin-right: 0px;
}

.pagination ul li a {
  color: var(--brand-gold);
  font-weight: 600;
}

.pagination ul li a i {
  line-height: 35px;
}

.pagination ul li.active,
.pagination ul li:hover {
  background-color: var(--brand-gold);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.pagination ul li.active a,
.pagination ul li:hover a {
  color: #ffffff;
}

.search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #F9F9FF;
  -webkit-transform: translate(0%, 100%) scale(0, 0);
  transform: translate(0%, 100%) scale(0, 0);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.search-width {
  max-width: 600px;
  margin: auto;
  position: relative;
}

.search.search-open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}

.search .close {
  position: fixed;
  top: 30px;
  right: 30px;
  color: #ffffff;
  background-color: var(--brand-gold);
  border: none;
  opacity: 1;
  visibility: visible;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  cursor: pointer;
}

.search .close:hover {
  opacity: 1 !important;
  background-color: var(--brand-gold);
}

.search-form {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 40px;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.search-form input {
  font-size: 16px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  color: inherit;
  border: 0px;
  font-weight: 600;
  border-radius: 40px 0px 0px 40px;
  padding: 15px 10px 15px 30px;
  z-index: 1;
  border: 1px solid #eee;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.search-form .search-btn {
  background-color: var(--brand-gold);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0px;
  cursor: pointer;
  border-radius: 0px 40px 40px 0px;
  width: 130px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.search-form .search-btn:hover {
  background-color: var(--brand-gold);
  color: #ffffff;
}

.newslettre {
  padding: 70px 0px 70px 0px;
  /*background-color: #ffffff;*/
}

.newslettre-width {
  width: 600px;
  margin: auto;
}

.newslettre-form {
  margin: auto;
  margin-bottom: 50px;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 20px;
}

.newslettre-form .form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.newslettre-form .form-group {
  margin-bottom: 0;
  width: 100%;
}

.newslettre-form .form-control {
  height: 45px;
  background-color: #F9F9FF;
  border: 0px;
  padding: 0px 20px;
  border-radius: 20px 0 0 20px;
  color: #506172;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #eee;
}

.newslettre-form .form-control:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  background-color: #ffffff;
  border: 1px solid #eee;
}

.newslettre-form .submit-btn {
  background-color: var(--brand-gold);
  width: 150px;
  height: 45px;
  border-radius: 0 20px 20px 0;
  color: #ffffff;
  font-weight: 600;
  margin-top: 0px;
  border: 1px solid var(--brand-gold);
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.newslettre-form .submit-btn:hover {
  background-color: var(--brand-blue);
  border: 1px solid #fff;
}

.newslettre-info h5 {
  margin-bottom: 10px;
  color: #152035;
}

.footer .social-icones {
  text-align: right;
}

.footer .social-icones li {
  margin-right: 15px;
  font-weight: 500;
}

.footer .social-icones li a {
  margin-right: 0px;
  color: #506172;
  border: 2px solid #fff;
  margin: 0;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: block;
  padding: 5px;
}

.footer .social-icones li a:hover {
  color: var(--brand-gold) !important;
  border-color: var(--brand-gold) !important;
}

.footer .social-icones li a img {
  width: 15px;
}

.footer .social-icones li a i {
  margin-right: 0;
  color: #506172;
  margin-right: 0;
  transition: all 0.3s;
}

.footer .social-icones li a:hover i {
  color: var(--brand-gold);
}

.footer .social-icones li:last-child {
  margin-right: 0px;
}

.footer .footer-links {
  list-style: none;
  padding-left: 0;
}

.footer .footer-links a:hover {
  color: var(--brand-gold);
}

.input-lg {
  padding: .75rem;
}

@media (max-width: 768px) {
  .text-center-xs {
    text-align: center;
  }

  .footer .social-icones {
    text-align: center;
  }

  .social-icones {
    margin: 15px 0;
  }

  .center-xs,
  .footer .footer-links,
  .widget-title {
    text-align: center;
  }
}

.btn-custom {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 22px;
  text-transform: capitalize;
  border-radius: 20px;
  background-color: var(--brand-gold);
  color: #ffffff;
  border: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.btn-custom:hover,
.btn-custom:focus {
  color: #ffffff;
  background-color: var(--brand-gold);
  outline: none;
  opacity: 0.8;
}

.link {
  background-color: var(--brand-gold);
  color: #ffffff !important;
  padding: 1px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 600 !important;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--brand-gold);
}

.link:hover {
  color: #ffffff;
  background-color: #152035;
  border: 1px solid var(--brand-dark);
}

.link .arrow_right {
  margin-top: 4px;
  margin-left: 5px;
}

.link .arrow_left,
.link .arrow_back {
  margin-top: 4px;
  margin-right: 5px;
}

.dot {
  width: 4px;
  height: 4px;
  background-color: var(--brand-gold);
  border-radius: 50%;
  display: block;
  margin: 2px 6px !important;
}

.social-icones li a {
  display: block;
  text-align: center;
  margin-right: 10px;
}

.social-icones li a i {
  color: #506172;
}



.social-media a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  text-align: center;
  margin-right: 2px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.social-media a i {
  font-size: 13px;
  line-height: 30px;
  color: #ffffff;
}

.social-media a:hover {
  background-color: #F9F9FF;
}

.social-media a:hover i {
  color: #506172;
}

.color-facebook {
  background-color: #3b5998;
}

.color-instagram {
  background-color: #c32aa3;
}

.color-youtube {
  background-color: #e52d27;
}

.color-twitter {
  background-color: #1dcaff;
}

.color-dribbble {
  background-color: #ddd;
}

.color-pinterest {
  background-color: #bd081c;
}

/*margin-bottom*/
.mb-100 {
  margin-bottom: 100px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

/*margin-top*/
.mt-100 {
  margin-top: 100px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mt-10 {
  margin-top: 10px;
}

.mt--10 {
  margin-top: -10px;
}

.mt--20 {
  margin-top: -20px;
}

.pt-85 {
  padding-top: 85px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.mr-15 {
  margin-right: 15px;
}

.ml-15 {
  left: 15px;
}

/* ===== home landing animation ====== */
.full-height-section {
  height: 100vh;
  padding: 15vh 0;
  background-image: url('../img/goldenrod-tree.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  /*    align-items: center;*/
  text-align: center;
  overflow: hidden;
}

.title-container {
  position: relative;
  width: 100%;
  text-align: center;
}

.title {
  opacity: 0;
  position: absolute;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  left: 0;
  right: 0;
}

.first-title {
  transform: translateX(-100%);
  font-size: 2em;
  animation: swipeRight 1.5s ease-in-out forwards;
}

.third-title {
  transform: translateY(200%);
  font-size: 2em;
}

.third-title {
  animation: swipeDown 1.5s ease-in-out forwards 1.5s;
}

.third-title-change {
  opacity: 0;
  display: none;
}

.second-title,
.second-title-change {
  font-size: 3em;
  opacity: 0;
  transform: translateY(50%);
}

.second-title {
  animation: fadeIn 1.5s ease-in-out forwards 3.5s;
}

.second-title-change {
  opacity: 0;
}

@keyframes swipeRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes swipeDown {
  to {
    transform: translateY(200%);
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeInCharacter {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes addGrowth {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes legacyTextChange {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ===== home landing animation ====== */

/*slider switch */
.theme-switch {
  display: inline-block;
  height: 20px;
  position: relative;
  width: 40px;
}

.theme-switch-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
}

.theme-switch-wrapper label {
  margin-bottom: 0px !important;
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: transparent;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #506172;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slider:before {
  position: absolute;
  content: "";
  left: 4px;
  top: auto;
  width: 12px;
  height: 12px;
  background-color: #506172;
  bottom: 3px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 1px solid #506172;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

input:checked+.slider {
  background-color: transparent;
  border: 1px solid #d9d9d9;
}

input:checked+.slider:before {
  -webkit-transform: translateX(18px);
  transform: translateX(18px);
  background-color: #d9d9d9;
}

/* ------------------------------
     Section
------------------------------ */
.section {
  margin-top: 65px;
  /*background-color: #F9F9FF;*/
}

.section-title {
  margin-bottom: 30px;
  margin-top: 5px;
}

.section-title h5 {
  text-transform: capitalize;
  position: relative;
}

.section-title h5:after {
  background-color: var(--brand-gold);
  display: block;
  position: absolute;
  content: "";
  left: auto;
  top: -5px;
  width: 30px;
  height: 2px;
}

.section-title p {
  margin-bottom: 0;
}

/* -----------------------------------
    Navigation
----------------------------------- */
.navbar {
  background-color: #ffffff;
  padding: 10px 15px;
}

.header__main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navbar-scroll {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/*header.navbar.navbar-scroll {*/
header.navbar {
  -webkit-box-shadow: 0px 0 3px rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0 3px rgba(255, 255, 255, 0.6);
}

.logo img {
  max-height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}

.logo-white {
  display: none;
}

.logo .display-none {
  display: none;
}

.logo .display-block {
  display: block;
}

.nav-item {
  position: relative;
  display: inline-block;
}

.cart-counter {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #D3191D;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  border-radius: 50%;
  text-align: center;
  min-width: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item .fa-shopping-cart {
  font-size: 20px;
}

.header__action-items .menu-btn {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .cart-counter {
    font-size: 10px;
    padding: 2px 5px;
  }
}


.nav-item .nav-link {
  font-weight: 500;
  color: #152035;
  font-size: 16px;
  padding: 0px 40px 0px 0px;
  display: inline-block;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.nav-item .nav-link i {
  color: var(--brand-gold);
}

.nav-item .nav-link.active,
.nav-item .nav-link:hover {
  color: var(--brand-gold) !important;
  background-color: transparent;
}

.nav-item:last-child .nav-link {
  padding-right: 0 !important;
}

.nav-item .dropdown-toggle::after {
  margin-left: 0;
  vertical-align: 0;
  border: 0;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  vertical-align: middle;
  transform: rotate(0deg);
  display: inline-block;
  padding-left: 6px;
}

.navbar-nav .dropdown-menu {
  background-color: #ffffff;
  position: absolute;
  top: 40px;
  z-index: 10;
  border-radius: 20px;
  padding: 30px 30px 15px 30px;
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  border: 0;
}

.navbar-nav .dropdown-sub-menu {
  background-color: #ffffff;
  margin-left: 200px;
  position: absolute;
  top: 0px;
  padding: 30px;
  padding-bottom: 10px;
  z-index: 10;
  border-radius: 5px;
}

.navbar-nav .dropdown-item {
  font-size: 14px;
  padding: 0px 0px 15px 0px;
  color: #131315;
  font-weight: 600;
  text-transform: capitalize;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item.active {
  background-color: transparent;
  color: #f67280;
}

.navbar-nav .dropdown-item:hover:after,
.navbar-nav .dropdown-item:focus:after,
.navbar-nav .dropdown-item.active:after {
  opacity: 1;
}

.header__navbar {
  position: relative;
}

.logo {
  margin-right: auto;
}

.header__action-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

@media all and (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 40px;
    padding-left: 0;
  }

  .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
  }

  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 30px;
    transform: rotateX(deg);
    transition: all 0.3s ease-in-out;
  }

  .dropdown-menu.fade-up {
    top: 180%;
  }
}

@media all and (max-width: 1200px) {
  .header__navbar {
    background: #ffffff;
    position: absolute;
    top: 60px;
    width: 100%;
    left: 0;
    right: 0px;
    overflow-y: auto;
    transition: all 0.5s ease-in-out;
    background-color: #ffffff;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .header__navbar .dropdown-menu {
    box-shadow: none;
    padding: 10px 0px 30px 0px;
    position: relative;
    top: 0;
    width: calc(100% - 60px);
    margin: 0px 30px 20px 30px;
    border-radius: 10px;
    background-color: #F9F9FF;
  }

  .header__navbar .dropdown-menu li {
    padding: 0px 30px;
  }

  .header__navbar .dropdown-item {
    padding: 20px 0px 0px 0px;
  }

  .header__navbar .navbar {
    padding: 0;
  }
}

.nav-item .dropdown-menu {
  border: 0px;
  padding: 20px;
  border-radius: 0;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.nav-item .dropdown-menu .dropdown-item {
  color: #152035;
  padding: 0;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: capitalize;
  text-wrap: wrap;
}

.nav-item .dropdown-menu .dropdown-item:hover,
.nav-item .dropdown-menu .dropdown-item.active {
  background-color: transparent;
  color: var(--brand-gold) !important;
}

.nav-item .dropdown-menu li:last-child .dropdown-item {
  margin-bottom: 0;
}

.nav-item:hover .nav-link {
  color: var(--brand-gold);
}

.navbar-toggler {
  width: 30px;
  height: 40px;
  position: relative;
  margin: 0;
  padding: 0;
  margin-left: 15px;
  border: none;
}

.navbar-toggler span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  -webkit-box-shadow: 0px -8px 0 0px #152035, 0px 8px 0 0px #152035;
  box-shadow: 0px -8px 0 0px #152035, 0px 8px 0 0px #152035;
  background: #152035;
}

.navbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.navbar-right .social-icones {
  margin-right: 10px;
}

.navbar-right .search-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--brand-gold);
  text-align: center;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-right .search-icon i {
  line-height: 35px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 600;
  display: block;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.navbar-right .search-icon:hover {
  background-color: var(--brand-gold);
}

.dropdown {
  /*    position: static;*/
}

.menu-img-caption {
  position: absolute;
  bottom: 8px;
  left: 15px;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  width: 100%;
  padding: 15px;
  font-weight: bold;
  text-shadow: 0 0 15px rgb(0 0 0 / 60%);
  letter-spacing: 1px;
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 80%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 80%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

@media all and (min-width: 991px) {
  .nav-item .dropdown-menu {
    -webkit-transition: .3s;
    transition: .3s;
    margin-top: 0;
  }

  .dropdown-menu.fade-up {
    top: 180%;
  }
}

/* ------------------------------
     Layouts
------------------------------ */
/*.masonry-layout .card {
  border: 0;
  border-radius: 0;
  margin-bottom: 0px;
  background-color: transparent;
}

.masonry-layout .card-columns {
  -webkit-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

.masonry-layout .card-columns .card {
  margin-bottom: 20px;
  margin-top: 40px;
  display: inline-block;
}

.masonry-layout .card-columns .post-card {
  margin-bottom: 0px;
}

.col2-layout .card-columns {
  -webkit-column-count: 2;
  column-count: 2;
}

.col2-layout .post-card {
  margin-bottom: 30px;
}*/

/* ------------------------------
      Widget
------------------------------ */
.widget {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.widget-sm {
  padding: 15px;
}

@media (max-width: 768px) {
  .widget-lg {
    padding: 15px;
  }
}

.widget__title {
  margin-bottom: 15px;
  position: relative;
}

.widget__title:after {
  background-color: var(--brand-gold);
  display: block;
  position: absolute;
  content: "";
  left: auto;
  top: -5px;
  width: 30px;
  height: 2px;
}

.widget__form-title {
  margin-bottom: 15px;
}

.widget__form .form-group {
  margin-bottom: 20px;
}

.widget__form-input {
  background-color: #f0f0f0;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 15px 20px;
  font-size: 14px;
  color: var(--brand-dark);
  display: inline-block;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.widget__form-input:focus,
.widget__form-input:hover {
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  background-color: #ffffff;
}

.form-control:focus {
  border-color: var(--brand-blue);
}

.widget__form-label {
  font-weight: 400;
  font-size: 14px;
}

.widget__form-label span {
  line-height: 0;
}

.widget__form-controls {
  margin: 20px 0px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.widget__form-controls-label {
  line-height: 23px;
}

.widget__form-link {
  color: #131315;
  font-size: 14px;
  font-weight: 600;
  margin-left: 3px;
}

.widget__form-link:hover {
  color: var(--brand-blue) !important;
  text-decoration: none;
}

.widget__form-btn {
  margin-bottom: 20px;
}

.widget__form-btn .btn-custom {
  width: 100%;
  justify-content: center;
}

.widget__form-text {
  font-size: 14px;
  margin-bottom: 0px !important;
  text-align: center;
}

.widget__form-controls-checkbox .widget__form-controls-input:checked~.widget__form-controls-label::before {
  background-color: #f67280;
  border-color: #f67280;
}

.widget__form-controls-checkbox .widget__form-controls-input:checked~.widget__form-controls-label::before:focus {
  outline: none;
}

.widget .title {
  margin-bottom: 20px;
}

.widget-author {
  text-align: center;
}

.widget-author .image {
  position: relative;
  width: 100px;
  height: 100px;
}

.widget-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.widget-author h6 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.widget-author p {
  text-align: center;
  margin-bottom: 20px;
}

.widget-author .social-icones {
  margin: auto;
  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;
}

.widget-author .link {
  margin-bottom: 10px;
}

.widget-latest-posts .last-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.widget-latest-posts .last-post .image {
  width: 90px;
  height: 90px;
  margin-right: 15px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.widget-latest-posts .last-post .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 20px;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.widget-latest-posts .last-post .nb {
  position: absolute;
  content: "";
  left: -5px;
  top: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--brand-gold);
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 2;
  z-index: 1;
}

.widget-latest-posts .last-post .content {
  width: calc(100% - 90px);
}

.widget-latest-posts .last-post .content p,
.widget-latest-posts .last-post .content a {
  font-weight: 600;
  color: #152035;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.widget-latest-posts .last-post .content a:hover {
  color: var(--brand-gold) !important;
}

.widget-latest-posts .last-post .content small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  text-transform: capitalize;
  font-size: 13px;
  color: #506172;
  font-weight: 400;
}

.widget-latest-posts .last-post .content small .dot {
  margin: 0px 6px 0px 0px !important;
}

.widget-latest-posts .last-post .content small span {
  color: var(--brand-gold);
  margin-right: 5px;
  direction: ltr;
}

.widget-latest-posts .last-post .content .link {
  margin-bottom: 8px;
}

.widget-latest-posts .last-post:last-child {
  margin-bottom: 0;
}

.widget-categories li {
  background-color: #F9F9FF;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.widget-categories li a {
  font-weight: 600;
}

.widget-categories li a:hover {
  color: var(--brand-gold);
}

.widget-categories li span {
  float: right;
  color: #506172;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.widget-categories li:last-child {
  margin-bottom: 0px;
}

.widget-instagram {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-gap: 10px;
}

.widget-instagram li {
  overflow: hidden;
  border-radius: 5px;
}

.widget-instagram li img {
  border-radius: 5px;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.widget-instagram li img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.widget-comments {
  margin-bottom: 70px;
}

.widget-comments .comment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.widget-comments .comment-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
}

.widget-comments .comment-item .content p {
  margin-bottom: 15px;
}

.widget-comments .comment-item .content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.widget-comments .comment-item .content .info li {
  margin-bottom: 0;
  font-size: 14px;
  color: #506172;
  text-transform: capitalize;
  font-weight: 400;
}

.widget-comments .comment-item .content .info li.dot {
  margin: 2px 15px !important;
}

.widget-form .form-group {
  margin-bottom: 20px;
}

.widget-form .form-control {
  background-color: #F9F9FF;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 22px 20px;
  font-size: 14px;
  color: #152035;
  display: inline-block;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.widget-form .form-control:focus,
.widget-form .form-control:hover {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  background-color: #ffffff;
}

.widget-form label {
  font-weight: 400;
  font-size: 14px;
}

.widget-form label span {
  line-height: 0;
}

.widget-next-post .small-post,
.widget-previous-post .small-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.cart-preview p {
  color: var(--brand-blue);
  opacity: 1;
  transition: all 0.3s;
}

.cart-preview:hover p {
  opacity: 0.7;
}

.cart-thumbnail,
.widget-next-post .small-post .image,
.widget-previous-post .small-post .image {
  width: 90px;
  height: 90px;
  margin-right: 15px;
  overflow: hidden;
  position: relative;
  border: 3px solid #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.cart-thumbnail img,
.widget-next-post .small-post .image img,
.widget-previous-post .small-post .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.widget-next-post .small-post .nb,
.widget-previous-post .small-post .nb {
  position: absolute;
  content: "";
  left: -5px;
  top: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--brand-gold);
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 2;
  z-index: 1;
}

.widget-next-post .small-post .content,
.widget-previous-post .small-post .content {
  width: calc(100% - 90px);
}

.widget-next-post .small-post .content a,
.widget-previous-post .small-post .content a {
  font-weight: 600;
  color: #152035;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.widget-next-post .small-post .content a:hover,
.widget-previous-post .small-post .content a:hover {
  /*  color: var(--brand-gold) !important;*/
}

.widget-next-post .small-post .content small,
.widget-previous-post .small-post .content small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  text-transform: capitalize;
  font-size: 13px;
  color: #506172;
  font-weight: 400;
}

.widget-next-post .small-post .content small .dot,
.widget-previous-post .small-post .content small .dot {
  margin: 0px 6px 0px 0px !important;
}

.widget-next-post .small-post .content small span,
.widget-previous-post .small-post .content small span {
  color: var(--brand-gold);
  margin-right: 5px;
  direction: ltr;
}

.widget-next-post .small-post .content .link,
.widget-previous-post .small-post .content .link {
  margin-bottom: 8px;
}

.widget-next-post .small-post:last-child,
.widget-previous-post .small-post:last-child {
  margin-bottom: 0;
}

.widget-tags ul li {
  background-color: #F9F9FF;
  padding: 4px 11px;
  margin-bottom: 5px;
  margin-right: 2px;
  border-radius: 20px;
  font-size: 13px;
  text-transform: capitalize;
  color: #506172;
  font-weight: 600;
}

.widget-tags ul li a:hover {
  color: #506172;
}

/* ------------------------------
     Post-card
------------------------------ */
.post-card {
  background-color: #ffffff !important;
  padding: 30px;
  border-radius: 20px !important;
  margin-bottom: 60px;
  display: block;
  position: relative;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.post-card-image {
  margin-top: -60px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  /* squaring photo */
  width: 100%;
  padding-top: 100%;
  /* squaring photo end */
}

.post-card-image img {
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  /* squaring photo */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* squaring photo */
}

.post-card.circled {
  margin-top: 50px;
  /*padding: 18px;*/
}

.post-card.circled .post-card-image {
  width: 110px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100%;
  padding-top: 110px;
  margin-top: -90px;
  margin-bottom: 15px;
}

.post-card.circled .post-card-image img {

}

.post-card.circled .post-card-content h5{
  font-size: 21px;
}

.post-card-image img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.post-card-content .categorie {
  margin-bottom: 10px;
}

.post-card-content h5 {
  margin-bottom: 8px;
}

.post-card-content h5 a {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.post-card-content h5 a:hover {
  color: var(--brand-gold);
}

.post-card-content p {
  margin-bottom: 30px;
}

.post-card-content .introduction p {
  margin-bottom: 15px;
}

.post-card-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-card-info img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  margin-right: 7px;
}

.post-card-info li {
  margin-bottom: 0;
  font-size: 13px;
  color: #506172;
  text-transform: capitalize;
  font-weight: 500;
}

.post-card-info li a:hover {
  color: var(--brand-gold);
}

.post-card-info li.dot {
  margin: 2px 15px !important;
}

.post-card-info li.lead {
  font-size: 16px;
}

.post-card-info li strike {
  opacity: 0.4;
}

.display-5 {
  font-size: 35px;
}

.sale-price {
  opacity: 0.4;
  font-size: 80%;
}

.dark .post-card.transparent-card,
.transparent-card {
  background-color: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: none !important;
}

.dark .post-card.transparent-card-dark,
.transparent-card-dark {
  background-color: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(10px);
  border: none !important;
}

/* ------------------------------
    Post-single
------------------------------ */
.post-single {
  background-color: #ffffff !important;
  padding: 30px;
  border-radius: 20px !important;
  margin-bottom: 30px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.post-single-image {
  margin-top: -60px;
  margin-bottom: 40px;
  border-radius: 20px;
}

.post-single-image img {
  border: 3px solid #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.post-single-video,
.post-single-audio {
  margin-top: -60px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.post-single-video iframe,
.post-single-audio iframe {
  width: 100%;
  height: 400px;
  border: 0px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  border-radius: 20px;
}

.post-single-gallery {
  margin-top: -60px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.post-single-gallery img {
  border-radius: 20px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  margin-bottom: 30px;
}

.post-single-gallery .owl-dots {
  text-align: center;
  line-height: 0;
}

.post-single-gallery .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid var(--brand-gold);
  margin: 0 6px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.post-single-gallery .owl-dot.active span {
  background-color: var(--brand-gold);
}

.post-single-gallery .owl-stage-outer {
  margin-bottom: 0px;
  border-radius: 20px;
}

.post-single-content .categorie {
  margin-bottom: 20px;
}

.post-single-content h4 {
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-single-content h4 a:hover {
  color: var(--brand-gold);
}

.post-single-content p {
  margin-bottom: 30px;
}

.post-single-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 7px;
}

.post-single-info li {
  margin-bottom: 0;
  font-size: 13px;
  color: #506172;
  text-transform: capitalize;
  font-weight: 400;
}

.post-single-body {
  margin-top: 30px;
}

.post-single-body h5 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.post-single-body .image {
  margin-top: 15px;
  margin-bottom: 15px;
}

.post-single-body .image img {
  border-radius: 5px;
}

.post-single-body .image p {
  color: #506172;
  text-align: center;
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 0px;
}

.post-single-body .quote {
  background-color: #F9F9FF;
  padding: 20px;
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.post-single-body .quote i {
  font-size: 30px;
  color: var(--brand-gold);
}

.post-single-body .quote p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #152035;
  font-weight: 600;
}

.post-single-body .quote small {
  color: #506172;
  font-weight: 400;
}

.post-single-body .list {
  margin-bottom: 15px;
}

.post-single-body .list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.post-single-body .list li:before {
  background-color: #506172;
  border-radius: 50%;
  position: absolute;
  content: "";
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
}

.post-single-footer {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-single-footer .tags ul li {
  background-color: #F9F9FF;
  padding: 4px 11px;
  margin-bottom: 5px;
  margin-right: 2px;
  border-radius: 20px;
  font-size: 13px;
  text-transform: capitalize;
  color: #506172;
  font-weight: 600;
}

.post-single-footer .tags ul li a:hover {
  color: #506172;
}

.post-single-footer .social-media {
  text-align: center;
  width: 100%;
}

/* ------------------------------
    Categorie
------------------------------ */
.categorie {
  background-color: var(--brand-gold);
  color: #ffffff;
  padding: 2px 8px;
  display: inline-block;
  margin: auto;
  text-align: center;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--brand-gold);
}

.categorie:hover {
  background-color: var(--brand-blue);
  color: #ffffff !important;
  border: 1px solid #152034;
}

.categorie-section {
  margin-top: 100px;
  margin-bottom: 30px;
}

.categorie-title small a:hover {
  color: var(--brand-gold);
}

.categorie-title h3 {
  margin-bottom: 10px;
}

.categorie-title h3 span {
  color: var(--brand-gold);
}

.categorie-title p {
  margin-bottom: 0px;
}

/* ------------------------------
     Hero
------------------------------ */
.hero {
  margin-bottom: 0px;
  position: relative;
  background-position: center center;
  background-size: cover;
  height: calc(100vh - 65px);
  z-index: 1;
}

.hero:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  bottom: 0;
  z-index: -1;
}

.hero-content {
  text-align: center;
}

.hero-content .categorie {
  margin-bottom: 30px;
}

.hero-content p {
  color: #ffffff;
  font-weight: 500;
  display: none;
}

.hero-content h2 {
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content h2 a:hover {
  color: #ffffff;
}

.hero-content .post-card-info {
  margin: auto;
  margin-top: 30px;
}

.hero-content .post-card-info ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-content .post-card-info li {
  color: #eee;
  font-weight: 600;
}

.hero-content .post-card-info li img {
  display: none;
}

.carousel-hero .owl-carousel {
  margin-bottom: 0px;
  position: relative;
}

.carousel-hero .owl-nav {
  text-align: center;
  line-height: 0;
  margin-bottom: 0px;
  position: absolute;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.carousel-hero .owl-nav .owl-prev,
.carousel-hero .owl-nav .owl-next {
  background-color: transparent !important;
  color: #ffffff !important;
  margin-right: 0px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 18px;
  position: absolute;
  border: 1px solid #ffffff !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.carousel-hero .owl-nav .owl-prev:after,
.carousel-hero .owl-nav .owl-next:after {
  border: 0 none;
  line-height: normal;
  vertical-align: middle;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.carousel-hero .owl-nav .owl-prev span,
.carousel-hero .owl-nav .owl-next span {
  display: none;
}

.carousel-hero .owl-nav .owl-prev:hover,
.carousel-hero .owl-nav .owl-next:hover {
  background-color: var(--brand-gold) !important;
  color: #ffffff !important;
  border: 1px solid var(--brand-gold) !important;
}

.carousel-hero .owl-nav .owl-prev {
  left: 30px;
}

.carousel-hero .owl-nav .owl-prev:after {
  content: "\f104";
}

.carousel-hero .owl-nav .owl-next {
  right: 30px;
}

.carousel-hero .owl-nav .owl-next:after {
  content: "\f105";
}

.top {
  margin-bottom: 0px;
  position: relative;
  background-position: center center;
  background-size: cover;
  height: calc(100vh - 65px);
  z-index: 1;
}

.top:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  bottom: 0;
  z-index: -1;
}

.top-content {
  border: 1px solid green;
  padding: 30px;
  width: 600px;
  margin-right: 400px;
}

.top-content h2 {
  color: #ffffff;
  margin: 20px 0px;
}

/* ------------------------------
    About
------------------------------ */
.about-us {
  background-color: #ffffff !important;
  padding: 30px;
  border-radius: 20px !important;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.about-us-image {
  margin-top: -60px;
  margin-bottom: 50px;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
}

.about-us-image img {
  border-radius: 20px;
}

.about-us .description h6 {
  margin-bottom: 15px;
  font-size: 18px;
}

.about-us .description .quote {
  background-color: #F9F9FF;
  padding: 20px;
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.about-us .description .quote i {
  font-size: 30px;
  color: var(--brand-gold);
}

.about-us .description .quote p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #152035;
  font-weight: 600;
}

.about-us .description .quote small {
  color: #506172;
  font-weight: 400;
}

/* ------------------------------
    contact
------------------------------ */
.contact {
  background-color: #ffffff !important;
  padding: 30px;
  border-radius: 20px !important;
  margin-bottom: 60px;
  display: block;
  position: relative;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.contact .google-map {
  margin-top: -60px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
  line-height: 0;
  border: 0;
  border-radius: 20px;
}

.contact .google-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 20px;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.contact_form h6 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* ------------------------------
    Footer
------------------------------ */
.footer {
  /*background-color: #ffffff;*/
}

.footer-logo {
  max-width: 300px;
  width: 100%;
}

.footer-nav ul li a {
  color: #fff;
  padding: 0 15px;
  display: inline-block;
}

.footer-nav ul li a:hover {
  color: var(--brand-gold);
}

.hr-footer {
  border-top: 1px solid #fff;
  margin-bottom: 30px;
  margin-top: 30px;
}

.footer .copyright {
  padding: 0 0 30px 0;
  border-top: 1px solid rgba(21, 32, 53, 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
  color: #506172;
}

.footer .copyright p a {
  font-weight: 600;
}

.footer .copyright p a:hover {
  color: var(--brand-gold);
}

.footer .back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.back-top {
  width: 45px;
  height: 45px;
  background-color: var(--brand-gold);
  position: fixed;
  bottom: 15px;
  right: 30px;
  border-radius: 50%;
  z-index: 9;
  display: none;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--brand-gold);
}

.back-top i {
  color: #ffffff;
  line-height: 45px;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

.back-top:hover {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  background-color: transparent;
  border: 1px solid var(--brand-gold);
}

.back-top:hover i {
  color: var(--brand-gold);
}

/* -----------------------------
     Preloader
--------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #F9F9FF;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loading .circle {
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--brand-gold);
  -webkit-animation: load 0.9s infinite linear;
  animation: load 0.9s infinite linear;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes load {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

/* ------------------------------
     Responsive
------------------------------ */
@media screen and (max-width: 991px) {
  .container {
    position: relative;
  }

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

  .navbar-nav {
    padding: 15px 15px 30px 30px;
    ;
  }

  .nav-item .dropdown-menu {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 15px;
    background-color: #F9F9FF;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
  }

  .nav-item .dropdown-menu .dropdown-item:hover,
  .nav-item .dropdown-menu .dropdown-item.active {
    color: var(--brand-gold);
  }

  .nav-item .nav-link {
    margin-bottom: 15px;
  }

  .nav-item:last-child .nav-link {
    margin-bottom: 0px;
  }

  .masonry-layout .card-columns {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .max-width {
    margin: auto;
    width: 600px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 21px;
  }

  h6 {
    font-size: 16px;
  }

  .footer-nav ul li a {
    padding: 0 12px;
    margin-bottom: 5px;
  }

  .footer .social-icones li {
    margin-right: 8px;
  }

  .footer .back .back-top {
    right: 15px;
  }

  .masonry-layout .card-columns,
  .col2-layout .card-columns {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .search-form {
    width: 100%;
  }

  .search-form input {
    width: calc(100% - 100px);
  }

  .inner-width,
  .newslettre-width {
    width: auto;
    margin: auto;
  }

  .search .close {
    right: 30px;
  }

  .carousel-hero .owl-nav {
    display: none;
  }

  .dark .nav-item .dropdown-menu {
    background-color: transparent;
  }
}

@media screen and (max-width: 576px) {
  .footer-nav ul li a {
    padding: 0 10px;
  }

  .max-width,
  .search-width {
    max-width: 100%;
    margin: 0;
  }

  .max-width-400,
  .page404,
  .sign {
    width: auto;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content .post-card-info li:nth-child(5),
  .hero-content .post-card-info li:nth-child(6) {
    display: none;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }

  .navbar-right .social-icones,
  .navbar-right .search-icon {
    display: none;
  }

  .theme-switch-wrapper {
    margin-right: 0px;
  }

  .rtl .theme-switch-wrapper {
    margin-left: 0px !important;
    margin-right: 0px;
  }

  .widget-comments .comment-item {
    display: block;
  }

  .widget-comments .comment-item img {
    margin-bottom: 15px;
  }

  .post-single-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .post-single-footer .social-media {
    margin-top: 20px;
    margin-left: 0;
  }

  .page404 .content h1 {
    font-size: 130px;
  }

  .contact .google-map iframe {
    height: auto;
  }
}

@media screen and (max-width: 321px) {
  .post-card-info img {
    display: none !important;
  }

  .post-card-info li.dot {
    margin: 2px 8px !important;
  }

  .hero-content h3 {
    font-size: 24px;
  }

  .widget-instagram {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .newslettre-form .form-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .newslettre-form .form-control {
    border-radius: 20px !important;
  }

  .newslettre-form .submit-btn {
    width: 100%;
    border-radius: 20px !important;
    margin-top: 10px;
  }

  .search .close {
    right: 15px;
    top: 15px;
  }

  .search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .search-form input {
    border-radius: 20px !important;
    width: 100% !important;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
  }

  .search-form .search-btn {
    width: 100%;
    height: 45px;
    border-radius: 20px !important;
    margin-top: 10px;
  }

  .page404 .content h1 {
    font-size: 100px;
  }

  .page404 .content h3 {
    font-size: 24px;
  }

  .sign-form .sign-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .sign-form .sign-controls a {
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .widget-comments .comment-item .content .info li.dot {
    margin: 2px 10px !important;
  }

  .rtl .post-single-footer .social-media {
    margin-right: 0 !important;
  }

  .rtl .sign-form .sign-controls a {
    margin-right: 0 !important;
  }
}

/* ------------------------------
    Dark Mode
------------------------------ */
.dark {
  background-color: var(--brand-dark);
  color: #d9d9d9;
}

.dark .post-single-body .quote,
.dark .widget-tags ul li,
.dark .post-single-footer .tags ul li,
.dark .about-us .description .quote,
.dark .loading,
.dark .custom-control-label::before,
.dark .social-media a:hover {
  background-color: var(--brand-dark);
}

.dark .navbar,
.dark .search,
.dark .widget-form .form-control,
.dark .search-form input {
  background-color: var(--brand-blue);
}

.dark .dropdown-menu,
.dark .nav-item .dropdown-menu {
  background-color: #18023E;
}

.dark .nav-item .dropdown-menu {
  border-top: 3px solid #3E2D5B;
  border-radius: 15px;
  min-width: 250px;
}

.dark .post-card,
.dark .contact,
.dark .post-single,
.dark .about-us {
  background-color: #fff !important;
}

.dark .post-card-dark {
  background-color: rgba(0,0,0,0.4) !important;
}

.dark .post-card-light {
  background-color: rgba(255,255,255,0.4) !important;
}

.dark .post-card,
.dark .post-single,
.dark .search-form {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.dark .social-icones li a i,
.dark .post-card-info li,
.dark .post-single-body .quote small,
.dark .widget-tags ul li,
.dark .widget-latest-posts .last-post .content small,
.dark .post-single-info li,
.dark .post-single-body .image p,
.dark .widget-comments .comment-item .content .info li,
.dark .newslettre-info p,
.dark .footer .social-icones li a,
.dark .footer .copyright p,
.dark .post-single-footer .tags ul li,
.dark .about-us .description .quote small,
.dark .social-media a i:hover,
.dark .post-single-footer .tags ul li a:hover,
.dark .widget-tags ul li a:hover,
.dark .sign-form .sign-controls .btn-link {
  color: #d9d9d9;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h6,
.dark .nav-item .nav-link,
.dark .post-single-body .quote p,
.dark .widget-next-post .small-post .content a,
.dark .widget-previous-post .small-post .content a,
.dark .newslettre-info h5,
.dark .about-us .description .quote p,
.dark .nav-item .dropdown-menu .dropdown-item,
.dark .sign-form .btn-link {
  color: #ffffff;
}

.dark .navbar-toggler span {
  background-color: #ffffff;
  -webkit-box-shadow: 0px -8px 0 0px #ffffff, 0px 8px 0 0px #ffffff;
  box-shadow: 0px -8px 0 0px #ffffff, 0px 8px 0 0px #ffffff;
}

.dark .custom-control-label::before,
.dark .widget-form .form-control {
  border: 1px solid #1d1d1d;
}

.dark .newslettre-form .form-control,
.dark .widget-form .form-control,
.dark .search-form input {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .widget-form .form-control:hover,
.dark .widget-form .form-control:focus,
.dark .search-form input:hover,
.dark .search-form input:focus {
  background-color: #1d1d1d;
  border: 1px solid #1d1d1d;
  -webkit-box-shadow: none;
  box-shadow: none;
}


.dark .newslettre-form .form-control:focus,
.dark .newslettre-form .form-control:hover {
  background: #fff;
}

.dark .categorie:hover,
.dark .link:hover {
  background-color: #ffffff;
  color: #152035 !important;
}

.dark .categorie:hover,
.dark .link:hover {
  background-color: var(--brand-gold);
  color: #ffffff !important;
  border-color: var(--brand-gold);
}

.dark::-webkit-input-placeholder {
  color: #d9d9d9 !important;
}

.dark::-ms-input-placeholder {
  color: #d9d9d9 !important;
}

.dark::-ms-input-placeholder {
  color: #d9d9d9 !important;
}

.dark::placeholder {
  color: #d9d9d9 !important;
}


.animated-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  position: relative;
}

/*.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 51, 91, 0.7);
    z-index: 1;
}*/

.bg-sherpa-experience {
  background-image: url('../img/sherpa-experience.jpeg');
  background-size: cover;
  background-position: center left;
}

.headline-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  /* Ensure text is above the overlay */
}

.animate-headline {
  position: absolute;
  width: 100%;
  color: #fff;
  font-size: 4vw;
  transition: all 1s ease;
}

@media screen and (max-width: 767px) {
  .animate-headline {
    font-size: 7vw;
  }

  .logo img {
    max-height: 35px;
  }

  .header__action-items .menu-btn {
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 400;
  }

  .mr-15 {
    margin-right: 10px;
  }

  .navbar-collapse {
    padding: 0;
  }

  .header__navbar .navbar {
    padding: 0;
  }

  .dark .nav-item .dropdown-menu {
    margin: 0;
    padding: 15px 0;
    margin-bottom: 15px;
    width: 100%;
  }

  .header__navbar .dropdown-menu li {
    padding: 0 15px;
  }
}

.top-text {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.middle-text {
  opacity: 0.7;
  transform: translateY(70px) scale(0.75);
}

.bottom-text {
  opacity: 0.5;
  transform: translateY(125px) scale(0.5);
}

.scroll_icon {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 25px;
  cursor: pointer;
  position: relative;
  margin: 0 auto;
  z-index: 2;
  /* Ensure scroll icon is above the overlay */
}

.scroll_icon:before {
  position: absolute;
  left: 50%;
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 10px;
  border-radius: 50%;
  animation: scroll_icon_animate 1.5s infinite;
}

@keyframes scroll_icon_animate {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(25px);
  }
}

.table-custom thead th,
.table-custom tbody td {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}

.table-custom thead th:first-child,
.table-custom tbody td:first-child,
.table-custom thead th:last-child,
.table-custom tbody td:last-child {
  border-left: none;
  border-right: none;
}

/* Optional: Remove outer border */
.table-custom {
  border: none;
}

.align-middle,
.align-middle tr td,
.align-middle tr th {
  vertical-align: middle;
}

.user-download-icon {
  font-size: 14px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

/*.cart-thumbnail {
  width: 50px;
  border-radius: 5px;
  margin-right: 15px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}*/

.bg-light {
  background-color: #ededed !important;
}

.bg-gray {
  background-color: #F9F9FF !important;
}

.btn.bordered {
  border: 1px solid #dee2e6;
}

#outlineDays .card-header {
  padding: 4px 8px;
}

/* Ebook Details */
.ebook-sub-title {
  font-size: 22px;
  color: #767272;
}

@media (min-width: 991px) {
  #inventureSlider .post-card-image {
    padding-top: 60%;
  }
}

.height-auto {
  height: auto;
}

.post-card-height-full .post-card-image {
  height: auto;
  padding-top: 0;
}

.post-card-height-full .post-card-image img {
  position: static;
}

.testimonial-slider .post-card-image {
  height: 100%;
}

/*  */
.cursor {
  cursor: pointer;
}

.certificate-icon {
  max-width: 80px;
}

.progress-container strong {
  letter-spacing: 1px;
}

.progress-container strong .percent {
  letter-spacing: 0;
  margin-left: 7px;
}

.next-module-title {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
  color: var(--brand-blue);
  text-transform: uppercase;
}

.legacy-module-icon-lg {
  max-width: 70px;
}

.day-title-lg {
  font-size: 23px;
}

.legacy-module-icon-sm {
  max-width: 50px;
}

.day-title-sm {
  font-size: 18px;
  height: 25px;
  padding-right: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.day-content-disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.opacity-50 {
  opacity: 0.5;
}

.btn-auto {
  width: auto;
  margin-left: 2%;
  margin-right: 2%;
}

@media (max-width: 768px) {
  .legacy-module-icon-lg {
    max-width: 45px;
  }
  .day-title-lg {
    font-size: 18px;
  }
  .next-module-title {
    font-size: 12px;
  }
  .progress-container {
    font-size: 15px;
    padding: 5px 10px !important;
  }
  .certificate-container {
    margin-top: 25px;
  }
  .btn-auto {
    width: 100% !important;
    margin: 15px 0 !important;
  }
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--brand-gold);
}

a.text-white,
a:hover.text-white,
a:focus.text-white,
.text-white a,
.text-white a:hover,
.text-white a:focus {
  color: #fff;
}
