:root {
  --primary: #ffe909;
  --grd1: #4e6e2e;
  --grd2: #424cac;
  --bg: #f4f4fc;
}
img {
  max-width: 100%;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  z-index: 10;
  background-color: transparent;
}
.header a {
  display: flex;
  justify-content: center;
}
.header img {
  max-width: 250px;
}

/*1*/
#home img {
  border-radius: 25px;
}
@media screen and (max-width: 575.98px) {
  #home h1 {
    font-size: 24px !important;
  }
}

/*2*/
.features {
  height: 100%;
}
.features img {
  width: 60px;
  height: auto;
}

/*3, 4 */
#blog {
  padding-top: 20px;
}
.blog {
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #about, .blog {
    text-align: center;
  }
  #about .reserve .row {
    flex-direction: column-reverse;
  }
  #about img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575.98px) {
  #about .reserve {
    margin-top: 40px !important;
  }
}

#contact form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.form-column {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 0 15px;
}
.custom-input {
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--grd2);
  outline: none;
  transition: 0.3s;
}
.custom-input:focus {
  border-color: var(--primary);
}
#contact .checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 6px;
}
#contact .checkbox input {
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 5px;
  border: 1px solid var(--grd1);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  background: var(--grd1);
}
#contact .checkbox input::after {
  content: "";
  height: 20px;
  width: 20px;
}
#contact .checkbox input:checked::after { 
  content: "";
  background: url(../images/check.svg) no-repeat center ;
  background-size: 10px auto;
}
#contact .checkbox label, #contact .checkbox input {
  cursor: pointer;
}
#contact .checkbox a {
  color: var(--grd1);
  margin: 0 auto;
  transition: 0.3s;
}
#contact .checkbox a:hover {
  color: var(--primary);
}
#contact button {
  align-self: center;
  border: none;
  outline: none;
  margin-top: 30px;
  padding: 8px 20px;
  background-color: var(--primary);
  color: var(--grd1);
  transition: 0.3s;
  border-radius: 20px;
}
#contact button:hover {
  background-color: var(--grd1);
  color: var(--primary);
}

@media screen and (max-width: 767.98px) {
  #contact {
    padding-bottom: 80px;
  }
  #contact form {
    flex-direction: column;
  }
  .form-column {
    width: 100%;
  }
}


/*footer*/
#footer {
  padding: 80px 0 20px;
  background-color: var(--bg);
  color: #fff;
}
.footer-custom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 50px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#footer img {
  max-width: 250px;
  height: auto;
  margin: 0 0 15px -5px;
}
#footer h3 {
  font-size: 24px !important;
  line-height: normal !important;
  font-weight: 500;
  margin-bottom: 10px;
}
#footer p, #footer a {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 6px;
}
#footer a {
  transition: 0.3s;
  color: var(--primary);
}
#footer a:hover {
  color: #fff;
}
#footer ul {
  padding-left: 0;
}
#footer li {
  display: flex;
}
#footer .footer-doc {
  font-size: 16px;
  margin-bottom: 8px;
}
.copyright {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-custom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 0px;
  }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 80px 0;
}
.thanks .row {
  display: flex;
  justify-content: center;
}
.thanks .col-10 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks .col-10 p {
  text-align: center;
  font-size: 18px;
  color: var(--grd1);
}
.thanks .col-10 p.thanks-text {
  color: var(--grd2);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 160px 0 80px;
  }
  .thanks .col-10 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575.98px) {
  .thanks {
    padding: 180px 0 50px;
  }
}

.docs {
  word-break: break-word;
  padding: 120px 20px 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
}
.docs li {
  color: inherit;
  line-height: inherit;
}
.docs a {
  color: var(--grd1);
}
.docs a:hover {
  color: var(--primary);
}
@media screen and (max-width: 575.98px) {
  .docs {
    padding: 100px 0px 50px;
  }
}