.btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.btn:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}
.btn:disabled, .btn[aria-disabled=true], .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary {
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #000000;
  border-color: #000000;
}

.btn--secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--secondary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #cccccc;
}
.btn--outline:hover, .btn--outline:focus {
  border-color: #000000;
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn--outline:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--ghost {
  background-color: transparent;
  color: #000000;
  border: 2px solid transparent;
}
.btn--ghost:hover, .btn--ghost:focus {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--light {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--light:hover, .btn--light:focus {
  background-color: #2c3e36;
  color: #e3b08c;
  transform: none;
  box-shadow: none;
}
.btn--light:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--light-arrow {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
}
.btn--light-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--light-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: none;
  transition: filter 0.2s ease-in-out;
}
.btn--light-arrow:hover, .btn--light-arrow:focus {
  background-color: #2c3e36;
  color: #e3b08c;
  transform: none;
  box-shadow: none;
}
.btn--light-arrow:hover::after, .btn--light-arrow:focus::after {
  filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(1000%) hue-rotate(340deg) brightness(110%);
}
.btn--light-arrow:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--dark {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--dark:hover, .btn--dark:focus {
  background-color: #eae0cf;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--dark:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--dark-arrow {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
}
.btn--dark-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--dark-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: none;
  transition: filter 0.2s ease-in-out;
}
.btn--dark-arrow:hover, .btn--dark-arrow:focus {
  background-color: #eae0cf;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--dark-arrow:hover::after, .btn--dark-arrow:focus::after {
  filter: none;
}
.btn--dark-arrow:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--beige {
  background-color: #eae0cf;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--beige:hover, .btn--beige:focus {
  background-color: #e3b08c;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--beige:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--small {
  padding: 8px 24px;
  font-size: 14px;
}

.btn--large {
  padding: 24px 40px;
  font-size: 18px;
}

.btn--full {
  width: 100%;
}

.btn--icon {
  gap: 8px;
}
.btn--icon svg,
.btn--icon .icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn--arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--arrow::after {
  margin-left: 8px;
}
.btn--arrow:hover::after, .btn--arrow:focus::after {
  transform: translateX(4px);
}
.btn--arrow.btn--dark::after, .btn--dark .btn--arrow::after {
  filter: brightness(0) invert(1);
}

.btn-group {
  display: inline-flex;
  gap: 8px;
}
.btn-group .btn {
  margin: 0;
}

.text-btn-image {
  position: relative;
  width: 100%;
  padding: 90px 0;
}
.text-btn-image__content {
  display: flex;
  align-items: center;
  gap: 86px;
  position: relative;
}
@media (max-width: 768px) {
  .text-btn-image__content {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 320px) {
  .text-btn-image__content {
    gap: 40px;
  }
}
.text-btn-image__left {
  flex: 0 0 603px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .text-btn-image__left {
    flex: 1;
    width: 100%;
    max-width: 100%;
    order: 2;
    gap: 25px;
  }
}
.text-btn-image__logo-wrapper {
  height: 65.276px;
  width: 240.883px;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .text-btn-image__logo-wrapper {
    margin-bottom: 0;
  }
}
.text-btn-image__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
  display: block;
}
.text-btn-image__header {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.text-btn-image__title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 320px) {
  .text-btn-image__title-wrapper {
    gap: 16px;
  }
}
.text-btn-image__title-icon-wrapper {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .text-btn-image__title-icon-wrapper {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 320px) {
  .text-btn-image__title-icon-wrapper {
    width: 45px;
    height: 45px;
  }
}
.text-btn-image__title-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.text-btn-image__headline {
  font-size: 45px;
  font-weight: 700;
  color: #2c3e36;
  line-height: 55px;
  margin: 0;
  font-family: "Gotham", sans-serif;
  letter-spacing: 0;
  flex: 1;
}
@media (max-width: 768px) {
  .text-btn-image__headline {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 320px) {
  .text-btn-image__headline {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.text-btn-image__body {
  font-size: 18px;
  font-weight: 400;
  color: #2c3e36;
  line-height: 28px;
  letter-spacing: 0;
  margin: 0;
}
.text-btn-image__body p {
  margin: 0 0 35px 0;
}
@media (max-width: 768px) {
  .text-btn-image__body p {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .text-btn-image__body p:last-child {
    margin-bottom: 0;
  }
}
.text-btn-image__body strong,
.text-btn-image__body b {
  font-weight: 700;
  color: #736258;
}
@media (max-width: 768px) {
  .text-btn-image__body {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 320px) {
  .text-btn-image__body {
    font-size: 16px;
    line-height: 1.5;
  }
}
.text-btn-image__cta-button {
  white-space: nowrap;
}
@media (max-width: 320px) {
  .text-btn-image__cta-button {
    white-space: normal;
  }
}
.text-btn-image__right {
  flex: 0 0 550px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .text-btn-image__right {
    flex: 1;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    order: 1;
  }
}
@media (max-width: 320px) {
  .text-btn-image__right {
    border-radius: 30px;
  }
}
.text-btn-image__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50px;
}
@media (max-width: 320px) {
  .text-btn-image__image {
    border-radius: 30px;
  }
}