:root {
  --yellow: #b97d10;
  --red: #aa0505;
  --grey: #c0c0c0;
  --grey-dark: #606060;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: "Roboto", sans-serif;
}

.section_about_title {
  font-size: 4rem;
  font-weight: bold;
}

.section_about_description {
  font-size: 2rem;
}

.contact-form {
  /* background-color: #b97d10; */
  padding: 20px;
  border-radius: 25px;
  -webkit-box-shadow: 5px 5px 17px 0px rgba(0, 0, 0, 0.41);
  box-shadow: 5px 5px 17px 0px rgba(0, 0, 0, 0.41);
}

.btn-primary-std {
  text-decoration: none !important;
  background-color: var(--red) !important;
  color: white;
  border-radius: 25px;
  padding: 15px 20px;
}

.social_icon {
  text-decoration: none;
  color: black;
}

.social_icon:hover {
  color: #b97d10;
  transition: ease 0.5s;
}

.owl-stage {
  height: 100%;
}

.owl-item {
  height: 100%;
}

.service-box {
  cursor: pointer;
  height: 500px;
  border: 2px solid black;
  border-radius: 16px;
}

.service-box:hover {
  border-color: var(--red);
  color: var(--red);
}

.service-box-icon {
  font-size: 102px;
}

.game-images {
  border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-toggle {
  color: black !important;
}

.game-img {
  border-radius: 15px;
}

.game-item .game-img .game-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.game-item:hover .game-img .game-social {
  background-color: rgba(0, 0, 0, 0.81);
  opacity: 1;
}

.game-item .game-social .btn {
  display: inline-flex;
  margin: 0 3px;
  color: white;
  background: transparent;
  border: 1px solid white;
}

.game-item .game-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.nav-logo {
  height: 80px;
}

@media screen and (width < 1024px) {
  .service-box {
    height: 300px;
  }
}

@media screen and (width < 768px) {
  .service-box {
    height: 200px;
  }

  .service-box-icon {
    font-size: 64;
  }

  .nav-logo {
    height: 55px;
  }
}

@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1600px;
  }
}
