[data-theme="light"] {
  --color-section-heading: black;
  --color-secondary-section-heading: white;
  --bg-contact-us: url("../images/bg_contact_us.png");
  --color-bg-contact-us: white;
}

[data-theme="dark"] {
  --color-section-heading: white;
  --color-secondary-section-heading: black;
  --bg-contact-us: url("../images/bg_dark_contact_us.png");
  --color-bg-contact-us: black;
}

#home-bg-video {
  object-fit: fill;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.video-text {
  font-size: 60px;
  color: white;
  text-align: center;
  margin-top: 13rem;
  font-family: 'Anton', sans-serif;
  text-shadow: 2px 2px black;
  min-height: 250px;
}

.home-bg {
  width: 100%;
  height: 100%;
}

.mouse {
	width: 50px;
	height: 90px;
	border: 3px solid white;
	border-radius: 60px;
	position: relative;
  margin: auto;
  display: block;
  cursor: pointer;
	&::before {
		content: '';
		width: 12px;
		height: 12px;
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		background-color: white;
		border-radius: 50%;
		opacity: 1;
		animation: wheel 2s infinite;
		-webkit-animation: wheel 2s infinite;
	}
}

.services-bg {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
}

.services-carousel-cell {
  width: 40%;
  margin: 0 80%;
  background-color: var(--color-bg);
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.services-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background-color: white;
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
  border-radius: 10px;
  vertical-align: middle;
}

.portfolio-bg {
  width: 100%;
  height: 100%;
}

.portfolio-carousel-cell {
  width: 40%;
  margin: 0 80%;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.portfolio-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background-color: white;
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
  border-radius: 10px;
  vertical-align: middle;
}

.about-us-bg {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
}

.about-us-carousel-cell {
  width: 40%;
  margin: 0 100%;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.about-us-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background-color: white;
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
  border-radius: 10px;
  vertical-align: middle;
}

.about-us-text {
  text-align: center;
  padding: 0 30px;
  color: var(--color-fg);
}

.contact-us-bg {
  width: 100%;
  height: 100%;
  background-image: var(--bg-contact-us);
  background-size: contain;
  background-attachment: fixed;
  background-color: var(--color-bg-contact-us);
  background-repeat: no-repeat;
}

.carousel-card-heading {
  padding-left: 15px;
  color: gray;
}

.carousel-card-description {
  padding: 30px;
  text-align: center;
  color: black;
}

.section-heading {
  color: var(--color-section-heading);
  text-align: center;
  font-size: 48px;
  font-family: 'Anton', sans-serif;
}

.secondary-section-heading {
  color: white;
  text-align: center;
  font-size: 48px;
  font-family: 'Anton', sans-serif;
  text-shadow: 2px 2px black;
}

.home-banner-button {
  background-color: #FFB74D;
  border: none;
  color: black;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
  margin: auto;
  border: 1px solid #FF9800;
  border-radius: 7px;
}

.home-banner-button:hover {
  background-color: white;
  color: black;
  transition: .3s;
  border-radius: 7px;
  border: none;
  transform: scale(1.2);
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

@media only screen and (max-width: 768px) {
  .video-text {
    font-size: 48px;
    margin-top: 10rem;
  }

  .mouse {
    display: none;
  }
}