@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap");

:root {
  --primary-color: #302ae6;
  --secondary-color: #536390;
  --font-color: #424242;
  --bg-color: #fff;
  --heading-color: #292922;
  --color-background: #fff;
}

[data-theme="dark"] {
  --primary-color: #9a97f3;
  --secondary-color: #818cab;
  --font-color: #e1e1ff;
  --bg-color: #161625;
  --heading-color: #818cab;
  --color-background: #161625;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--font-color);
  font-family: "Quicksand", sans-serif !important;
  height: 100%;
  width: 100%;
}

/*slider switch css */
.theme-switch-wrapper {
  display: flex;
  align-items: center;

  em {
    margin-left: 10px;
    font-size: 1rem;
  }
}

.theme-switch {
  margin-top: 25px;
  margin-right: 25px;
  display: inline-block;
  height: 32px;
  position: relative;
  width: 60px;

}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 24px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 24px;
}

input:checked + .slider {
  background-color: #66bb6a;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


nav {
  display: flex;
  justify-content: flex-end;
  margin-left: 10px;
  margin-right: 10px;
  padding: var(--space-sm);
}


.container {
  width: 90%;
  margin: auto;
  overflow:hidden;

}

.video-section {
  padding: 0;
  margin: 0;
  display: flex;
  position: relative;
  margin-bottom: 0em;
  overflow: hidden;
}

.video-responsive {
  padding-bottom: 56.25%;
}

#player {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100% !important;
  width: 100% !important;
  border: 0;
}

.video-js .vjs-loading-spinner {
  border-color: rgba(107, 0, 255, 0.79);
}


.footer {
  position: fixed;
  font-family: "Oswald", sans-serif;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  text-align: center;
  color: #f4f4f4;
  
}

.icons {
  padding-top: 1rem;
}
.icons a:hover {
  color: red;
}

.icons a {
  text-decoration: none;
  font-size: 2rem;
  margin: 0.5rem;
  color: #f4f4f4;
}

.company-name {
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-family: "Oswald", sans-serif;
  margin-bottom: 2.5em;
}

@media (max-width: 500px) {
  html {
    font-size: 75%;
  }
}

@media (min-width: 501px) and (max-width: 768px) {
  html {
    font-size: 75%;
  }
}
