:root {
  --first-color: #002359;
  --second-color: #d20707;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100% !important;
}

header {
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff !important;
  z-index: 100;
  margin-bottom: 0;
}
header *::after, header *::before {
  display: none !important;
}
.navbar {
  display: grid;
  grid-template-columns: 1.5fr 3fr 2fr;
  align-items: center;
  margin-bottom: 0;
  width: 100%;
  padding: 12px 0;
}
#navbar-menu {
  grid-column: 2;
  grid-row: 1;
}
.navbar .attr-nav.button {
  grid-column: 3;
  grid-row: 1;
}
.navbar img {
  width: 250px;
}
.navbar .attr-nav.button ul, .navbar .attr-nav.button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.navbar .attr-nav.button li {
  display: flex;
}
.navbar .attr-nav.button a, .navbar .attr-nav.button button {
  font-size: 13px !important;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #e7e7e7;
  background-color: transparent;
  margin-left: 8px;
  padding: 7px 25px !important;
  outline: none;
  color: var(--first-color);
}
.navbar .attr-nav.button a:hover, .navbar .attr-nav.button button:hover {
  color: var(--second-color);
  border-color: var(--second-color);
}
.nav>li>a:focus, .nav>li>a:hover {
  background-color: var(--second-color);
  color: white;
}
.features .col-md-12 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.features-content .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin-top: 0 !important;
}
.about-content ul {
  margin-bottom: 20px;
}
.services-items .col-md-4 .item {
  height: 420px;
}
.contact-forms img {
  display: block;
  margin: 0 auto;
}
.f-item.about {
  width: 250px;
}

@media screen and (max-width: 991.98px) {
  .navbar .attr-nav.button a, .navbar .attr-nav.button button {
    font-size: 10px !important;
  }
  .navbar {
    grid-template-columns: 0.5fr 1fr 0.5fr; 
  }
  .navbar-toggle {
    margin: 0;
    float: none;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .navbar .attr-nav.button a {
    display: none;
  }
  .navbar img {
    width: 200px;
  }
  header .container {
    width: 100%;
  }
  .navbar-header a {
    display: flex;
    justify-content: center;
  }
  #navbar-menu {
    display: none !important;
    grid-column: span 3;
    grid-row: auto;
  }
  #navbar-menu.active {
    display: flex !important;
    justify-content: center;
  }
  #navbar-menu.active ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 10px;
    border-top: 2px solid var(--first-color);
  }
  .banner-area .light-bg h2 {
    font-size: 40px;
  }
  .banner-area .double-items, .banner-area div, .banner-area {
    height: auto;
  }
  .banner-area {
    padding: 150px 0 100px;
  }
  .banner-area .double-items .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .banner-area ul li, .banner-area p {
    justify-content: center;
  }
  .right-info * {
    color: white;
  }
  .services-items .col-md-4 .item {
    height: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .right-info {
    border: none !important;
    padding-left: 0 !important;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .navbar {
    grid-template-columns: 0.5fr 2fr 1.5fr; 
  }
  .navbar .attr-nav.button button {
    padding: 7px 10px !important;
  }
  .banner-area {
    padding: 120px 0 100px;
  }
  .banner-area .light-bg h2 {
    font-size: 32px;
  }
  .features .col-md-12 {
    grid-template-columns: 1fr;
  }
}

/*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: 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;
  }
}
