.w-full {
  width: 100%;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content: space-around;
}
.align-base {
  align-items: baseline;
}

.self-center {
  align-self: center;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}
.gap-4 {
  gap: 2rem;
}
.gap-8 {
  gap: 4rem;
}
.bold {
  font-weight: 700;
}

.font-primary {
  color: var(--primary-color);
}

.font-small {
  font-size: small;
}

.title {
  font-size: 82px;
  line-height: 100%;
}

.description {
  color: var(--dark-color);
  font-size: 20px;
}

.policy-title {
  font-size: 24px;
  font-weight: 800;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: auto;
  padding-top: 8rem;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.grid-col-span-2 {
  grid-column: span 2;
}

.btn {
  display: inline-block;
  padding: 17px 27px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-filled {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
}

.btn-outline {
  color: var(--dark-color);
  border: 1px black solid;
  font-weight: 500;
  background: none;
}

.form-control {
  border: none;
  border-bottom: 1px solid var(--dark-color);
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background: none;
  padding-bottom: 13px;
  font-size: 18px  !important;
  color: var(--dark-color);
  resize: none;
  width: 100%;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}

.row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.success-msg {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  margin: 10px;
  padding: 10px;
  border-radius: 3px;
  color: #270;
  background-color: #dff2bf;
  text-align: center;
  display: none; /* Initially hidden */
}


@media (max-width :1024px) {
  .title {
    font-size: 77px;
  }
}

@media (max-width: 460px) {

  .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
    overflow: auto;
    margin-top: 5rem;
  margin-bottom: 5rem;
  }

  .btn-outline {
    display: grid;
    align-items: center;
  }
  .flex {
    flex-direction: column;
  }

  .title {
    font-size: 46px;
  }

  .description {
    font-size: 16px;
    width: 100% !important;
  }

  .row {
    flex-direction: column;
  }
}
