:root {
  --first-color: #6c78e8;
  --second-color: #171a1d;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
}
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--second-color);
}
.main-header .main-menu__wrapper-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
.main-menu__logo {
  padding: 14px 0 !important;
}
.main-menu__wrapper-inner p {
  font-size: 12px;
  line-height: normal;
  text-align: center;
}
.main-menu__wrapper-inner ul {
  display: flex;
  align-items: center;
  list-style: none;
  column-gap: 10px;
  justify-content: flex-end;
}
.main-menu__wrapper-inner a {
  color: #fff;
  transition: 0.3s;
}
.main-menu__wrapper-inner a:hover {
  color: var(--first-color);
}
.main-header img {
  width: 250px;
}

#one {
  position: relative;
  background: url(../images/bg.webp) no-repeat center / cover;
  z-index: 1;
}
#one::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 26, 29, 0.5);
  z-index: -10;
}
.about-one a, .skill-one a {
  margin-top: 20px;
}
.footer-widget__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
  color: #fff;
}
.footer-widget__links a {
  transition: 0.3s;
  color: #fff;
}
.footer-widget__links a:hover {
  color: var(--first-color);
}
.footer-widget__services p {
  color: #fff;
}
@media screen and (max-width: 991.98px) {
  .main-menu__main-menu-box {
    order: 3;
    grid-column: span 2;
    padding-bottom: 20px;
  }
  .main-header .main-menu__wrapper-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .main-header img {
    width: 200px;
  }
  .testimonial-one img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
  }
  .footer-widget__title-box {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575.98px) {
  .main-header img {
    width: 150px;
  }
  .main-header .main-menu__wrapper-inner {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0;
  }
  .main-menu__main-menu-box {
    grid-column: span 1;
  }
  .main-menu__wrapper-inner ul {
    justify-content: center;
    padding-bottom: 10px;
    padding-left: 0 !important;
  }
  .main-menu__logo {
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }
  .experience-one {
    padding-bottom: 0;
  }
}

#contact form {
  display: flex;
  flex-direction: column;
}
.custom-input {
  width: 100%;
  padding: 10px 16px;
  margin-bottom: 16px;
  border: none;
  border-bottom: 1px solid var(--second-color);
  border-radius: 5px !important;
  outline: none !important;
  transition: 0.3s;
  box-shadow: none;
  background-color: #fff;
}
.custom-input:focus {
  border-bottom: 1px solid var(--first-color);
}
#contact .checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 16px;
  padding-left: 0;
}
#contact .checkbox input {
  position: relative;
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 5px;
  border: 1px solid var(--first-color);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  background: var(--first-color);
  flex-shrink: 0;
}
#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 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-align: left;
  color: #757575;
}
#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);
}
#contact button {
  align-self: center;
  margin-top: 10px;
  background: transparent;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  padding: 14px 30px;
  background-color: var(--first-color);
  transition: 0.5s;
}
#contact button:hover {
  background-color: var(--second-color);
}
@media screen and (max-width: 991.98px) {
  #contact, .about-page {
    padding-top: 220px;
  }
  .experience-one__single {
    height: auto;
  }
}

.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;
  padding-bottom: 0;
  color: #000;
}
.thanks p.thanks-text {
  font-weight: 700;
  color: var(--first-color);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 250px 0 150px;
  }
  .thanks p {
    font-size: 14px;
  }
}


.docs {
  word-break: break-word;
  padding: 150px 0px 70px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  color: var(--second-color);
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 28px;
  color: var(--second-color);
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.929;
  margin-bottom: 4px;
}
.docs a {
  text-decoration: none !important;
  color: var(--first-color);
}
.docs a:hover {
  color: var(--second-color);
}
@media screen and (max-width: 991.98px) {
  .docs {
    padding: 230px 0px 70px;
  }
}