/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #d9232d;
}

a:hover {
  color: #e24d55;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# flex box
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #d9232d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e1444d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo a {
  color: #556270;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #556270;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #d9232d;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #d9232d;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #e1444d;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #d9232d;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #556270;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #d9232d;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #d9232d;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  background: #515d6a;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* .services-area {
  margin-top: 45px;
} */
.info i {
  font-size: 20px;
  color: #000;
  float: left;
  width: 44px;
  height: 44px;
  /* background: #e1e1d0; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-radius: 50px;
  transition: all 0.3s ease-in-out; */
}
.info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 12px;
  color: #35343a;
  font-weight: 600;
}

.info {
  border: 10px solid #fff;
}

.mouse {
  padding: 14px 0px 6px 0px;
  border: 5px solid #fff;
  background-color: #efefef;
}
.mouse:hover {
  background: #fff;
}
.mouse-rate {
  padding: 14px 0px 6px 0px;
  border: 5px solid #fff;
  background-color: #efefef;
}
.mouse-rate:hover {
  background: #fff;
}
.keybrd {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.keybrd:hover {
  background: #fff;
}
.microphone {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.microphone:hover {
  background: #fff;
}
.webcam {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.webcam:hover {
  background: #fff;
}
.packet {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.packet:hover {
  background: #fff;
}
.sound {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.sound:hover {
  background: #fff;
}
.fps {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.fps:hover {
  background: #fff;
}
.game {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.game:hover {
  background: #fff;
}
.ping {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.ping:hover {
  background: #fff;
}
.dead-pixel {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.dead-pixel:hover {
  background: #fff;
}
.refresh-rate {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.refresh-rate:hover {
  background: #fff;
}
.internet {
  padding: 14px 0px 6px 0px;
  background-color: #efefef;
  border: 5px solid #fff;
}
.internet:hover {
  background: #fff;
}
.ms-tst {
  background-color: #fff;
}
.ms-img img {
  max-width: 100%;
}
.ms-ttll h2 {
  font-size: 22px;
  padding: 10px 10px 10px 10px;
  font-weight: 700;
  color: #444444;
  text-align: center;
  margin-top: 20px;
}
.ms-ttl h2 {
  font-size: 22px;
  padding: 10px 10px 10px 10px;
  font-weight: 700;
}

.ms-img img {
  max-width: 100%;
  width: 240px;
  padding: 0px 0px 0px 40px;
}

.ms-txt {
  background: #f2f6fa;
  padding: 16px 16px 16px 16px;
  border: 10px solid #fff;
}
.ms-txt p {
  font-size: 13px;
}
.ms-tst-two {
  background: #fff;
}
.ms-txt-two {
  text-align: justify;
  padding: 5px 10px 5px 10px;
}
/*--------------------------------------------------------------
# Common for many columns
--------------------------------------------------------------*/
/* .mose {
  padding: 10px;
} */
/*--------------------------------------------------------------
# Keyboard
--------------------------------------------------------------*/
.kbd-img img {
  max-width: 100%;
}
/*--------------------------------------------------------------
# col-md-4 ke andar dt-card
--------------------------------------------------------------*/
.dt-card {
  /* padding: 20px; */
  background: #fff;
  border-radius: 3px;
}
.dt-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.nk-widget-container {
  background: #fff;
  padding: 15px 5px 5px 15px;
}
.nk-widget-container h3 {
  font-size: 20px;
  font-weight: 700;
  color: #363636;
}
.nk-widget-container p {
  font-family: Helvetica;
  font-size: 16px;
  line-height: 1.8;
}
.nk-widget-container ul {
  font-size: 15px;
  line-height: 1.8;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-widgets {
  color: #ffffff;
  background-color: #000000;
}
.footer-widgets-container {
  padding: 40px;
}
.inside-footer-widgets > div {
  flex: 1 1 0;
}
.has-text-align-center {
  text-align: center;
}
.footer-widget-1 a:hover {
  color: #fff;
}
/* webcam css */

div#webcam-test-error,
div#webcam-test-success {
  display: none;
}

div#webcam-test-container {
  text-align: center;
}

div#webcam-test-container div#show-webcam-test {
  display: none;
  position: relative;
  width: 100%;
}

div#webcam-test-container div#show-webcam-test video#webcam-test-video {
  background-color: #666;
  width: 100%;
}

div#webcam-test-container div#start-webcam-test-container {
  width: 100%;
}

div#webcam-test-container div#start-webcam-test-container div#pre-test-button:hover {
  border: 1px solid #000;
  background-color: #000;
}

div#webcam-test-container div#start-webcam-test-container div#pre-test-button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
  display: inline-block;
  border: 1px solid #ff8000;
  background-color: #ff8000;
  border-radius: 15px;
  height: 190px;
  padding: 25px 0 0 0;
  width: 190px;
  margin: 15px;
  color: #fff;
  box-shadow: 0 2px 4px 0 #0e1e251f, 0 2px 16px 0 #0e1e2552;
}

div#webcam-test-container div#start-webcam-test-container div#pre-test-button svg.icon {
  width: 70px;
  height: 70px;
  margin-top: 10px;
}

div#webcam-test-container div#start-webcam-test-container div#pre-test-button span:hover {
  color: #fff;
}

div#webcam-test-container div#start-webcam-test-container div#pre-test-button span {
  display: block;
  font-size: 16px;
  margin: 8px 5px 0;
  color: #fff;
}

ul {
  margin: 0 0 1.5em 45px;
}

#ccpa {
  color: #fff;
}
