/** Custom Site Styles **/
body {
  overflow-x: hidden;
}

.floating-cta {
  display: grid;
  grid-template-columns: 80px 300px;
  width: 380px;
  height: 250px;
  border-radius: 25px 0px 0px 25px;
  overflow: clip;
  position: fixed;
  z-index: 10;
  top: 35%;
  right: 0px;
  transform: translate(300px);
  transition: all 1s ease;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.floating-cta:hover {
  transform: translate(0px);
}

.cta-container-visible {
  display: flex;
  flex-direction: column;
  background-color: #ba8756;
  color: #fff;
  cursor: pointer;
}
.cta-visible-text {
  display: block;
  width: 250px;
  line-height: 80px;
  transform: rotate(90deg) translate(-80px, 0px);
  transform-origin: bottom left;
  font-family: "inter-variable", sans-serif;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.cta-container-hidden {
  display: grid;
  grid-template-rows: 1fr 60px;
  align-content: center;
  align-items: center;
  background-color: #fff;
}

.cta-content {
  padding: 0px 25px;
}

.cta-content h4,
.cta-content p {
  text-align: center;
}

.cta-content h4 {
  font-family: "inter-variable", sans-serif;
  font-size: 23px;
  line-height: 28px;
  font-weight: bold;
  text-align: center;
  color: #283c36;
}

.cta-content p {
  font-family: "inter-variable", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  color: #2e2e2e;
}

.cta-btn {
  width: 100%;
  height: 60px;
  background-color: #283c36;
  color: #fff;
  font-family: "inter-variable", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  line-height: 60px;
}

.cta-btn:hover {
  color: #fff;
  background-color: #448253;
}

@media (max-width: 1024px) {
  .floating-cta {
    display: none;
  }
}
