* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.8rem;
    color: #4A4A4A;
}

input {
  font-size: 1.8rem;
}

label {
    color: #4A4A4A;
}

section {
    margin-bottom: 8vh;
}

li::marker {
  color: #D4AF7F;
}

li a {
  color: #4A4A4A;
  text-decoration: none;
}

ul.no-bullets {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

ul.tick-list li:before {
  content: "\2714\0020";
  color:#D4AF7F;
}

footer {
    font-size: 2rem;
}

.h-80 {
  height: 80%;
}

.h-60 {
  height: 60%;
}

.top-10 {
  top: 10%;
}

.start-10 {
  left: 10%;
}

.shadow-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.18);
    z-index: -1;
}

.btn-theme {
    font-size: 2.5rem;
    background-color: #D4AF7F;
    color: white;
}

.btn:hover {
    color: #D4AF7F;
    border: 2px;
    border-style: solid;
    border-color: #D4AF7F;
}

.bg-theme {
  background-color: #D4AF7F;
}

.title {
    text-transform: uppercase;
    font-weight: 500;
    color: white;
    letter-spacing: 2px;
}

.heading-color {
    color: #D4AF7F;
}

.theme-color {
    color: #D4AF7F;
}

.navigation-bg-color {
    background-color: #fdf8f4;
}

.rose-color {
  color: #ffffff;
}

.form-control {
  font-size: 1.8rem;
}

.form-text {
    font-size: 1.25rem;
}

.form-label {
    font-size: 1.6rem;
}

.mountain-container {
    background-image: url('../../hero-mountains.png');
    background-size: cover;
    background-position: center 60%;
}

.forest-container {
    background-image: url('../../hero-forest.png');
    background-size: cover;
    background-position: bottom;
}

.sea-container {
    background-image: url('../../hero-sky.png');
    background-size: cover;
    background-position: center 35%;
}

.pink-container {
    background: #ff2a91;
}

.hero-image {
  -webkit-mask:
    radial-gradient(circle 50px at top    left ,#0000 98%,#000) top    left,
    radial-gradient(circle 50px at top    right,#0000 98%,#000) top    right,
    radial-gradient(circle 50px at bottom left ,#0000 98%,#000) bottom left,
    radial-gradient(circle 50px at bottom right,#0000 98%,#000) bottom right;
  -webkit-mask-size:51% 51%;
  -webkit-mask-repeat:no-repeat;
}

.nav-link {
    font-weight: 400;
    color: black;
    letter-spacing: 2px;
}

.opinion-card {
  min-height: 30vh;
}

.image-opinion {
  border-radius: 100%;
  max-height: 12vh;
  width: auto;
}

.quote-mark {
  font-size: 10rem;
}

.opinion-final-text {
  font-weight: 600;
  font-size: 2rem;
}

.container {
  overflow: hidden;
  .slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;
    .logos {
      display: inline-block;
      margin: 0px 0;
      .fab {
        width: calc(100% / 5);
        animation: fade-in 0.5s 
          cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
      }
    }
  }
}

.step-item {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-span {
  width: 30px;
  height: 30px;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

.template-card-wrapper input[type="radio"]:checked + .template-card {
    border-color: #D4AF7F !important;
    box-shadow: 0 0 0 0.2rem #D4AF7F !important;
}

.template-card-wrapper input[type="radio"]:checked + .template-card .card-title {
    color: #D4AF7F;
    font-weight: bold;
}


@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}