:root {
  --details: #663c3c;
  --hover: #cf2d2d;
}

.wrapper ul {
  list-style-type: disc;
  padding-left: 20px;
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

.header {
  padding: 8px 0px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.header img {
  max-width: 260px;
}

.header p {
  color: #202020;
  margin-bottom: 0;
  text-align: right;
}

.wrapper {
  padding: 200px 0;
}

.wrapper h1 {
  text-align: center;
  margin-bottom: 16px;
  font-size: calc(1rem + 1.5vw);
}

.wrapper p:last-child {
  margin-bottom: 0;
}

.wrapper p:not(:last-child) {
  margin-bottom: 16px;
}

.wrapper a {
  text-decoration: none;
  cursor: pointer;
}

.footer {
  padding: 80px 0;
  background-color: var(--details);
}

.footer a {
  color: #000;
}

.footer img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 8px;
  display: block;
}

.footer ul {
  list-style-type: none;
  padding-left: 0;
}

@media (max-width: 767.98px) {
  .header .container {
    flex-direction: column;
  }

  .header p {
    text-align: center;
    font-size: 14px;
  }

  .header img {
    width: 150px;
  }
}

.submitBnt {
  width: 100%;
  color: #fff;
  background-color: var(--details);

  border: 0;
  transition: all 0.1s ease-in;
}

.submitBnt:hover {
  background-color: var(--hover);
  color: #202020;
}

.custom-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-form-control {
  padding-left: 16px;
  border: 2px solid #b3b3b3;
  height: 45px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
}

.custom-form-control:focus,
.custom-form-control:active {
  border-color: #202020;
}

.custom-form-group label {
  margin-left: 8px;
  text-align: left;
  font-weight: 300;
  font-family: inherit;
  cursor: pointer;
  font-style: italic;
  display: inline-block;
}

.mandatory {
  color: #ff1500;
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.custom-form-group {
  display: flex;
  align-items: baseline;
}

.custom-form-group input {
  border: 1px solid #ccc;
  background: #fff;
  padding: 0 12px;
  line-height: 38px;
  border-radius: 2px;
  width: 13px !important;
  height: 13px !important;
}

.thanksBody {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.thanksContainer {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 150px 0 90px;
}

.thanksLogo {
  max-width: 120px;
  width: 100%;
}

.copyright {
  text-align: center;
}

a {
  text-decoration: none;
  transition: all .3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--hover);
}

.wrapper a {
  color: var(--details);
  font-weight: 600;
  transition: all .3s ease;
}

.wrapper a:hover {
  color: var(--hover);
}