.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  padding: 10px;
}
.modal-body .inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 485px;
}
.modal-body .bg {
  border-radius: 20px;
  background: url("../images/form-bg.jpg") no-repeat center/cover;
}
.modal-body .text:not(.hidden) {
  display: flex;
}
.modal-body .text > div {
  margin: auto;
  text-align: center;
}
.modal-body .text .btn-close {
  background-color: rgba(46, 44, 40, 0);
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  padding: 24.5px 20px;
  border: 1px solid rgb(46, 44, 40);
  transition: all 0.3s linear;
}
.modal-body .text .btn-close:hover {
  color: rgb(222, 184, 93);
  border-color: rgb(222, 184, 93);
}
.modal-body .form {
  position: relative;
  padding: 50px;
}
.modal-body .form .btn-close {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
}
.modal-body .form .btn-close svg path {
  transition: fill 0.3s linear;
}
.modal-body .form .btn-close:hover svg path {
  fill: rgb(46, 44, 40);
}
.modal-body h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}
.modal-body h2 + p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.modal-body form input {
  background-color: transparent;
  width: 100%;
  margin-bottom: 10px;
}
.modal-body form [type=text], .modal-body form [type=email] {
  font-size: 16px;
  border-radius: 10px;
  padding: 24.5px 20px;
  border: 1px solid rgba(184, 174, 150, 0.4);
  transition: all 0.3s linear;
}
.modal-body form [type=text]:hover, .modal-body form [type=email]:hover {
  border-color: rgb(222, 184, 93);
}
.modal-body form [type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(46, 44, 40, 0);
  width: 100%;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  padding: 24.5px 20px;
  border: 1px solid rgb(46, 44, 40);
  transition: all 0.3s linear;
}
.modal-body form [type=submit] span.icon {
  background-image: url("../images/button-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 8px;
  display: block;
  width: 24px;
  height: 24px;
}
.modal-body form [type=submit]:hover {
  color: rgb(222, 184, 93);
  border-color: rgb(222, 184, 93);
}
.modal-body form [type=submit]:hover span.icon {
  background-image: url("../images/button-hover.svg");
}
.modal-body form label {
  display: none;
}
.modal-body form + p {
  color: #B8AE96;
  font-size: 14px;
  margin-top: 10px;
}
.modal-body form + p a {
  color: #2E2C28;
}
.modal-body form + p a:hover {
  color: rgb(222, 184, 93);
}

.modal-dialog-large .form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
}
.modal-dialog-large .form {
  min-width: 720px;
}

@media (min-width: 800px) {
  .column.text {
    min-width: 350px;
    text-align: center;
  }
}

.offcanvas-body {
  padding-inline: 16px !important;
}
.offcanvas-body form + p {
  color: #B8AE96;
  font-size: 14px;
  font-weight: 400;
}
.offcanvas-body form + p a {
  color: #2E2C28;
}
.offcanvas-body [type=submit] {
  color: #2E2C28;
  border-radius: 10px;
  border: 1px solid #2E2C28;
  background-color: transparent;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offcanvas-body [type=submit] .icon {
  margin-left: 8px;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/button-black.svg") no-repeat center;
}
.offcanvas-body [type=submit]:hover {
  color: rgb(222, 184, 93);
  border-color: rgb(222, 184, 93);
}
.offcanvas-body [type=submit]:hover .icon {
  background-image: url("../images/button-hover.svg");
}
.offcanvas-body .column {
  text-align: center;
  color: #2E2C28;
}
.offcanvas-body .column h2 {
  font-size: 27px;
  font-weight: 700;
}
.offcanvas-body .column p {
  font-size: 15px;
  font-weight: 500;
}
.offcanvas-body .form form {
  margin-top: 15px;
}
.offcanvas-body .form label {
  display: none;
}
.offcanvas-body .form .form-item {
  padding-bottom: 10px;
}
.offcanvas-body .form input {
  color: #2E2C28;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(184, 174, 150, 0.4);
  width: 100%;
}
.offcanvas-body .form input:hover {
  border-color: rgb(222, 184, 93);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog-large {
    max-width: fit-content;
  }
  .modal-dialog-middle {
    max-width: 610px;
  }
  .modal-dialog {
    margin-right: auto;
    margin-left: auto;
    margin-top: 15%;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.offcanvas.offcanvas-bottom {
  border-radius: 30px 30px 0 0;
  background-color: #fff;
  height: auto !important;
}
.offcanvas.offcanvas-bottom > .offcanvas-header {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 10;
}
.offcanvas.offcanvas-bottom .btn-close {
  display: block;
  background: url("../images/down.png") no-repeat center/100% auto;
  width: 100%;
  height: 25px;
  padding: 0;
  margin: 0;
}
.offcanvas.offcanvas-bottom .btn-close svg {
  display: none !important;
}
.offcanvas.offcanvas-bottom .text .offcanvas-header {
  margin: 0;
  padding: 0;
}
.offcanvas.offcanvas-bottom .text button {
  color: #2E2C28 !important;
}
.offcanvas.offcanvas-bottom .text .btn-close {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #2E2C28;
  border-radius: 10px;
  width: 100%;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.offcanvas-body {
  position: relative;
}

#offcanvasExample {
  top: 58px;
}