:root {
  --light-color: #f5f8fd;
  --first-color: #413e66;
  --second-color: #1bb1dc;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
}
#services .icon img {
  width: 36px;  
}
#custom {
  padding: 80px 0 60px;
}
#custom .box {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  margin-bottom: 20px;
  padding: 40px;
  background-color: var(--light-color);
  border: 1px solid var(--first-color);
  border-radius: 5px;
}
#custom .box p {
  margin-bottom: 0;
}
#custom .box .icon {
  flex-shrink: 0;
}
#custom .box img {
  width: 36px;
}
#footer img {
  width: 250px;
}
@media screen and (max-width: 575.98px) {
  #why-us {
    padding: 40px;
  }
  .counters {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
  #why-us .counters span {
    font-size: 24px;
  }
}
/*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 h3 {
  color: var(--second-color);
  text-align: center;
  font-size: 36px;
}
.verification__text {
  margin-bottom: 48px;
  font-size: 18px;
  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: 16px;
  line-height: 120%;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  border-radius: 5px
}
.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 h3 {
    font-size: 24px;
  }
  .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 {
  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: var(--first-color);
}
.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;
  }
}