@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap");
:root {
  --font-family: "Inter", Arial, sans-serif;
  --default-text: #141414;
  --secondary-text: #282828;
  --primary: #ae1b73;
  --primary-accent: #680942;
  --secondary: #0b7d7d;
  --secondary-accent: #0b4a4a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-family);
  font-size: 16px;
}

::before,
::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: var(--default-text);
  text-decoration: none;
}
.fw-900 {
  font-weight: 900;
}
.fw-800 {
  font-weight: 800;
}
.fw-700 {
  font-weight: 700;
}
.fw-400 {
  font-weight: 400;
}

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
nav li {
  margin-left: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 20px;
}

/* .navbar-nav .nav-link.active {
  color: #fff;
  background: var(--secondary);
  border-radius: 5px;
  border-bottom: 3px solid var(--secondary-accent);
} */

.section {
  position: relative;
  padding: 100px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.section.dark {
  color: #fff;
}
.section h2 {
  font-weight: 700;
}

#home {
  background-image: url("/img/bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#demos {
  background-image: url("/img/mic-bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#services {
  background-image: url("/img/mic-bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#contact {
  background-color: #141414;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.intro {
  display: flex;
  max-width: 1000px;
}

.intro img {
  margin-right: 30px;
}

.intro h1 {
  font-size: 48px;
  margin-bottom: 0;
}


.intro p {
  font-size: 18px;
}

.button {
  padding: 0.75rem 1.5rem;
  font-size: 18px;
}

.btn-default {
  background: var(--primary);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  border-bottom: 3px solid var(--primary-accent);
  letter-spacing: 0.5px;
  text-align: center;
}
.btn-default:hover {
  color: #fff;
  background-color: var(--primary);
}

.button-sm {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.btn-alt {
  background: var(--secondary);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  border: 0;
  border-bottom: 3px solid var(--secondary-accent);
  letter-spacing: 0.5px;
}
.btn-alt:hover {
  color: #fff;
}

@media screen and (max-width: 1660px) {
  .intro {
    max-width: 80%;
  }
  .intro h1 {
    font-size: 40px;
  }
  .intro h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 1440px) {
  .intro .profile {
    width: 250px;
  }
  .intro h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 1200px) {
  nav li {
    margin-left: 25px;
  }

  nav a {
    font-size: 15px;
    padding: 6px 15px;
  }

  .intro {
    max-width: 85%;
  }
  .intro .profile {
    width: 200px;
  }
  .intro h1 {
    font-size: 32px;
  }

  .intro p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1000px) {
  header img {
    width: 200px;
  }
  .intro {
    max-width: 90%;
  }
  .intro .profile {
    width: 180px;
  }
}

@media screen and (max-width: 900px) {
  nav li {
    margin-left: 15px;
  }

  nav a {
    font-size: 13px;
    padding: 6px 12px;
  }
  .intro {
    display: block;
    margin-top: 0;
  }
  .intro .profile {
    width: 200px;
    margin: 0 0 20px;
  }
}

@media screen and (max-width: 700px) {
  #home {
    padding-bottom: 2rem;
  }
  #demos > div {
    flex-wrap: wrap;
  }
  .demo {
    width: 100%;
  }
  nav ul.unstyled {
    display: none;
  }
}

.nav-pills .nav-item .nav-link {
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
}

.nav-pills .nav-item .nav-link.active {
  color: var(--secondary);

  background: #fff;
  font-weight: bold;
}
.tab-content-bg {
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 50px;
}

.demo {
  width: 100%;
  margin-bottom: 20px;
}

.demo-list {
  flex-grow: 1;
  padding: 40px 0;
}
.demo-info-pane {
  border-left: 1px solid #fff;
  padding: 2rem;
  flex-grow: 1;
}
#player-container div {
  cursor: pointer;
  text-indent: -999999px;
  height: 60px;
  width: 60px;
  padding: 12px 18px;
  border-radius: 50%;
  z-index: 2;
  background-image: url("/img/icons/play.png");
  background-repeat: no-repeat !important;
  background-position: center;
}

.card {
  flex-basis: 18%;
  border-radius: 0;
  border: none;
  margin: 1rem;
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 1400px) {
  .card {
    flex-basis: 30%;
  }
}

@media screen and (max-width: 800px) {
  .card {
    flex-basis: 40%;
  }
}

@media screen and (max-width: 700px) {
  .section {
    padding: 75px 50px 50px !important;
  }
  .card {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 500px) {
  .tab-content-bg,
  .section {
    padding: 75px 20px !important;
  }
  #contact {
    padding-bottom: 120px !important;
  }
  .section {
    min-height: auto;
  }
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-body h5 {
  font-weight: 700;
}

.card-body h5,
.card-body p {
  color: #141414;
}

.card-body a {
  margin-top: auto;
}

#contact {
  padding: 100px 20%;
}

#contact .wrap {
  display: flex;
}

@media screen and (max-width: 1200px) {
  #contact {
    padding: 100px;
  }
}

@media screen and (max-width: 700px) {
  #contact .wrap {
    display: block;
  }
  form {
    margin-top: 50px;
  }

  .navbar-brand img {
    max-width: 180px;
  }

  .grecaptcha-badge {
    display: none;
  }
}

#contact .wrap > div {
  flex: 1 1 0px;
  align-items: center;
}

#contact a {
  color: #fff;
}

form {
  font-size: 1rem;
}

form label {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

form input {
  color: #fff;
  margin: 0.5rem 0 2rem;
  outline: 0;
  height: 40px;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
}

form select, .form-select {
  color: #fff;
  margin: 0.5rem 0 2rem;
  outline: 0;
  height: 40px;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
}

option { 
  color: #141414;
}

option:disabled { 
  color: #666;
}

form textarea {
  color: #fff;
  margin: 0.5rem 0 2rem;
  outline: 0;
  height: 80px;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
}

footer {
  background: #141414;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

footer img {
  margin-left: 0.5rem;
}

@media screen and (max-width: 400px) {
  .cta a {
    display: block;
    width: 100%;
    margin: 0;
  }

  .cta a:first-of-type {
    margin: 0 0 0.5rem;
  }
}