:root {
  --first-color: #215ae7;
  --second-color: #1850dc;
}
img {
  max-width: 100%;
}
#plates {
  padding: 20px 0;
}
.custom-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.custom-box {
  padding: 20px;
}
.custom-box:nth-of-type(1) {
  background-color: #D1CDD9;
  color: #A52A8E;
  border: 1px solid #A52A8E;
}
.custom-box:nth-of-type(2) {
  background-color: #d6ccee;
  color: #3250AA;
  border: 1px solid #3250AA;
}
.custom-box:nth-of-type(3) {
  background-color: #eff6ff;
  color: #3250AA;
  border: 1px solid #3250AA;
}
.service-box:hover::before {
  background-color: #eff6ff;
}
.footer-docs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style-type: none;
  padding: 0;
}
@media screen and (max-width:991.98px) {
  #main-menu {
    background: #fff !important;
  }
  #navbarCollapse {
    text-align: center;
  }
  #home {
    padding-top: 30px;
  }
  .service-box {
    height: auto;
  }
  .contact-box {
    padding: 20px 0 40px;
  }
}
.btn-text {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
#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:2px;
  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(../images/check.svg) no-repeat center ;
  background-size: 10px auto;
}
#contact .checkbox label {
  padding: 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);
}

/*verification*/
.verification {
  display: none;
}
.verification--open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  top: 0px;
  background-color: #fff;
  overflow: hidden;
  position: fixed;
  z-index: 10000;
}
.verification__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 802px;
  padding: 62px 78px 80px;
  background-color: #fff;
  border: 2px solid var(--second-color);
  border-radius: 20px;
}
.verification img {
  width: 50px;
  margin-bottom: 10px;
}
.verification__text {
  margin-bottom: 48px;
  font-size: 2.625em;
  line-height: 130%;
  text-align: center;
  color: #222;
  margin-bottom: 10px;
}
.verification__btns {
  display: flex;
  width: 100%;
  column-gap: 10px;
  padding-top: 10px;
}
.verification__btn {
  width: 100%;
  margin-bottom: 20px;
  padding: 16px 30px;
  border: none;
  outline: none;
  background-color: var(--first-color);
  font-size: 1.25em;
  line-height: 120%;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}
.verification__btn:hover {
  background-color: var(--second-color);
  color: #fff;
}
.verification__btn:active {
  opacity: 0.5;
}
@media screen and (max-width: 991.98px) {
  .verification__area {
    width: 600px;
    padding: 32px 48px;
    background-size: contain;
  }
}
@media screen and (max-width: 767.98px) {
  .verification__area {
    width: 400px;
    padding: 32px;
    background-position: center center;
  }
  .verification__text {
    margin-bottom: 14px;
    font-size: 1.5em;
  }
  .verification__btns {
    flex-direction: column;
  }
  .verification__btn {
    min-width: 210px;
    margin-bottom: 16px;
    padding: 16px;
  }
}
@media screen and (max-width: 575.98px) {
  .verification__area {
    width: 280px;
    padding: 16px;
  }
  .verification__btn {
    min-width: 180px;
    font-size: 1em;
    margin-bottom: 12px;
    padding: 12px;
  }
}

.game {
  display: none;
}
.game.open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  top: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: fixed;
  z-index: 10000;
  padding: 0 10px;
}
.close-icon {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  .game .container {
    width: 100%;
  }
  .game iframe {
    height: 400px;
  }
}

.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: inherit;
}
.thanks p.thanks-text {
  font-weight: 700;
  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);
}
.docs a:hover {
  color: var(--second-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 100px 0px 50px;
  }
}