:root {
  --bgcolor: #FFCF40;
  --main-color: #1f1700;
}
body {
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}
p {
  font-size: 18px;
  line-height: 30px;
  color: #444;
  margin: 0;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}
* {
  margin: 0;
  padding: 0;
}
a,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}
a {
  text-decoration: none;
}
h1 {
  font-size: 48px;
}
h3 {
  font-size: 26px;
}
img {
  max-width: 100%;
}
.gap {
  padding: 120px 0;
}
.no-bottom {
  padding-bottom: 0;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  display: block;
}
figure {
  overflow: hidden;
}

/* 1. header */
header {
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  z-index: 1;
  width: 100%;
}
header {
  transition: 0.3s;
}
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.3s;
  background-color: #fff;
  z-index: 100;
}
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 2. hero-section */
.hero-section {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
.hero-text {
  margin: 40px 0;
}
.hero-text p {
  padding: 20px 0 30px;
  font-size: 20px;
  line-height: normal;
}
.hero-text h1 {
  color: #000;
  font-weight: bold;
  line-height: 1;
  border-bottom: 6px solid var(--bgcolor);
}
form#contact-form h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 6px;
  color: #fff;
}
.get-a-quote {
  margin-bottom: 40px;
  background-color: var(--main-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: -1px 0px 44px 15px rgb(0 0 0 / 7%);
  -webkit-box-shadow: -1px 0px 44px 15px rgb(0 0 0 / 7%);
  -moz-box-shadow: -1px 0px 44px 15px rgba(0, 0, 0, 0.7);
}
.get-a-quote input[type="text"],
.get-a-quote input[type="email"] {
  width: 100%;
  padding: 14px 0;
  border: 0;
  outline: 0;
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
  background-color: var(--main-color);
  border-bottom: 3px solid var(--bgcolor);
  transition: 0.3s;
}
.get-a-quote input:focus {
  border-color: #fff;
}
input::placeholder {
  color: #fff;
}
input::-moz-placeholder {
  color: #fff;
}
.radio-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px 0 10px;
}
.radio-button {
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 16px 0;
  border: 1px solid var(--bgcolor);
  border-radius: 5px;
  cursor: pointer;
}
.radio-button p {
  padding-left: 10px;
  color: #fff;  
}
.radio-button input {
  width: 22px;
  height: 22px;
  accent-color: var(--bgcolor);
  cursor: pointer;
}
.group-img {
  position: relative;
}
.group-img svg {
  position: absolute;
  right: 0;
  width: 22px;
  height: auto;
  top: 21px;
}
.checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
  padding-left: 0;
}
.checkbox input {
  position: relative;
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 5px;
  border: 1px solid #fff;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  background: #fff;
  transition: 0.3s;
}
.checkbox input::after {
  content: "";
  height: 20px;
  width: 20px;
}
.checkbox input:checked {
  background-color: var(--main-color);
  border-color: var(--bgcolor);
}
.checkbox input:checked::after {
  content: "";
  background: url(../img/check.svg) no-repeat center;
  background-size: 10px auto;
}
.checkbox label {
  padding: 0;
  font-size: 16px;
  color: #fff;
}
.checkbox label,
.checkbox input {
  cursor: pointer;
}
.checkbox a {
  color: var(--bgcolor);
  margin: 0 auto;
  transition: 0.3s;
}
.checkbox a:hover {
  color: #fff;
}
.btn {
  display: block;
  border: none;
  text-align: center;
  cursor: pointer;
  text-transform: capitalize;
  outline: none;
  overflow: hidden;
  position: relative;
  color: var(--main-color);
  font-weight: 700;
  font-size: 14px;
  background-color: var(--bgcolor);
  padding: 26px 42px;
  border-radius: 60px;
  line-height: 1;
  margin: 16px auto 0;
  border: 3px solid var(--bgcolor);
}
.btn:hover {
  background-color: transparent;
  color: var(--bgcolor);
  border-radius: 50px;
  border: 3px solid var(--bgcolor);
}

/* 3. bg-text */
.bg-text {
  margin: 40px 0 0;
  padding: 20px;
  background-color: var(--bgcolor);
}
.bg-text .text-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.bg-text .text-box p {
  color: var(--main-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

/* 19. footer */
footer {
  position: relative;
  background-color: var(--main-color);
}
footer p {
  font-size: 16px;
  color: #fff;
}
.links h5 {
  font-size: 20px;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
}
.links a,
.footer-docs a {
  color: #d5d5d5;
  transition: 0.3s;
}
.footer-docs a {
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.links a:hover,
.footer-docs a:hover {
  color: var(--bgcolor);
}
.footer-docs ul {
  display: flex;
  padding-left: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.footer-docs li {
  text-align: center;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid var(--bgcolor);
  padding-bottom: 30px;
}
.footer-bottom p {
  color: #fff;
  margin-bottom: 10px;
}
.footer-bottom p.text-mini {
  font-size: 12px;
  color: #d5d5d5;
}
.footer-end {
  border-top: 1px solid #d5d5d52b;
}
.footer-end p {
  text-align: center;
  padding-top: 20px;
  color: white;
  padding-bottom: 20px;
}

@media screen and (max-width: 1199.98px) {
  .hero-text h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 991.98px) {
  .hero-section {
    padding-top: 120px;
  }
  .hero-text {
    margin: 0;
  }
  form#contact-form h3 {
    text-align: center;
  }
  .links {
    padding-top: 30px;
  }
  .footer-bottom {
    text-align: left;
  }
}

@media screen and (max-width: 767.98px) {
  .hero-text h1 {
    font-size: 36px
  }
  .hero-text p {
    padding-bottom: 30px;
    font-size: 16px;
  }
  .links h5,
  footer h3 {
    font-size: 20px !important;
  }
  footer p {
    font-size: 16px;
  }
  .checkbox a {
    font-size: 14px;
  }
}

@media screen and (max-width: 575.98px) {
  .hero-section {
    padding-top: 100px;
  }
  .top-bar a {
    font-size: 16px;
  }
  .top-bar a i {
    display: none;
  }
  .top-bar img {
    width: 150px;
  }
  .hero-text h1 {
    font-size: 24px;
  }
  .hero-text p {
    font-size: 14px;
    line-height: 24px;
  }
  .get-a-quote {
    padding: 40px 20px;
  }
  footer {
    padding-top: 70px !important;
  }
  .links h5,
  footer h3 {
    font-size: 20px !important;
  }
  footer p {
    font-size: 14px;
    line-height: 24px;
  }
  .footer-docs a {
    font-size: 14px;
  }
  .bg-text .text-box {
    flex-direction: column;
    text-align: center;
  }
  .links.text-center {
    padding-top: 0;
    text-align: left !important;
  }
  .footer-docs ul {
    justify-content: flex-start;
  }
}



.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.thanks p.thanks-text {
  color: var(--bgcolor);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}

.docs {
  word-break: break-word;
  padding: 140px 20px 100px;
  
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 28px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.docs p {
  margin-bottom: 20px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--bgcolor);
  transition: 0.3s;
}
.docs a:hover {
  color: var(--main-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 120px 0px 50px;
  }
  .docs li,
  .docs p {
    font-size: 14px;
  }
}