:root {
  --first-color: #70bce0;
  --second-color: #1190cb;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
#header-custom {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  z-index: 10;
}
#header-custom .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 8px 0;
  margin: 0 !important;
}
#header-custom .row::before,#header-custom .row::after {
  display: none !important;
}
#header-custom .logo-link {
  display: flex;
  width: auto;
}
#header-custom .header-logo {
  max-width: 250px;
}
#banner .row {
  padding: 100px 0 50px;
}
#banner .row, #services .row, #work-process .row, #questions .row, #contact .row {
  display: flex;
  align-items: center;
}
#services h5, #work-process h5 {
  line-height: normal;
}
.card {
  border: none;
}

@media screen and (max-width:767.98px) {
  #banner .row {
    gap: 20px;
  }
  #banner .caption {
    text-align: center;
  }
  #banner .caption h1 {
    font-size: 2rem;
  }
  #banner .caption .btn {
    margin-top: 10px;
  }
  .services-caption, .process-wrap, #questions .accordion, #contact .contact-content {
    padding: 40px 20px !important;
  }
  #blog {
    padding: 80px 0 40px;
  }
}

#contact .checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
  padding-left: 0;
}
#contact .checkbox input {
  position: relative;
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 50%;
  border: 1px solid var(--first-color);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  background: var(--first-color);
}
#contact .checkbox input::after {
  content: "";
  height: 20px;
  width: 20px;
}
#contact .checkbox input:checked::after { 
  content: "";
  background: url(../img/check.svg) no-repeat center ;
  background-size: 10px auto;
}
#contact .checkbox label {
  padding: 0;
  margin-bottom: 0;
}
#contact .checkbox label, #contact .checkbox input {
  cursor: pointer;
}
#contact .checkbox a {
  color: var(--first-color);
  margin: 0 auto;
  transition: 0.3s;
}
#contact .checkbox a:hover {
  color: var(--second-color);
}
.help-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0 60px;
}
.help-box img {
  width: 100px;
  height: auto;
}
/*footer*/
#footer {
  padding: 40px 0 20px;
  background-color: #f9f9f9;
  color: inherit;
}
#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .container::before, #footer .container::after {
  display: none !important;
}
#footer .footer-info {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#footer img {
  max-width: 250px;
  height: auto;
  margin: 0 0 20px;
}
#footer h3 {
  font-size: 18px !important;
  line-height: normal !important;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
}
#footer p, #footer a {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 6px;
}
#footer a {
  text-decoration: none !important;
  transition: 0.3s;
  color: var(--first-color);
}
#footer a:hover {
  color: var(--second-color);
}
#footer ul {
  padding-left: 0;
}
#footer li {
  display: flex;
}
#footer .footer-doc {
  font-size: 16px;
  margin-bottom: 8px;
}
.copyright {
  border-top: 2px solid var(--first-color);
  padding-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #footer .footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 0px;
    margin-bottom: 30px;
  }
}

.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;
  color: #000;
}
.thanks p.thanks-text {
  color: var(--second-color);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}
.docs {
  word-break: break-word;
  padding: 120px 20px 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--first-color);
  transition: 0.3s;
}
.docs a:hover {
  color: var(--second-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 100px 0px 50px;
  }
  .docs h1 {
    font-size: 2rem;
  }
}