/*
Theme Name: Aidants Theme
Theme URI: https://aidants.com
Author: Design Of Time
Author URI: https://example.com
Description: Aidants Theme Development by Design Of Time Co.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: one-column, two-columns, right-sidebar, custom-background, custom-logo, custom-menu, featured-images

*/

:root {
  --heading: calc(3vw + 16px);
}

.homeHeroSection {
  width: 100%;
  height: 100dvh;
  background-color: #111;
  overflow: hidden;
}

.homeHeroSection .swiper-wrapper {
  width: 100%;
}
.homeHeroSection .swiper-slide {
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  backdrop-filter: opacity(0.5);
}

.homeHeroSection .heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homeHeroSection .heroDescription {
  width: 100%;
  /* padding: 5rem 4rem; */
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.heroDescription .heroLogo {
  width: 150px;
  height: auto;
}

.heroDescription p {
  color: #fff;
  /* width: 70%; */
  font-size: var(--heading);
  line-height: 1.1;
  font-family: inherit;
  font-weight: 500;
}

.aboutVideo {
  width: 100%;
  height: auto;
  margin-bottom: 5rem;
  border-radius: 10px;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.aboutVideo video {
  width: auto;
  height: 100%;
  
}


.serviceCards{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.serviceCard{
  width: 100% !important;
}

.cardSection{
  width: 100%;
  padding-top: 4rem !important;
  padding: 4rem 0;
  padding-bottom: 50px !important;
}


@media screen and (max-width: 997px) {
  .footer-links-wrapper .link{
    text-align: center;
  }
  
}