:root {
   --color-primary: #000000;
   --color-accent-1-light: #EEEEEE;
   --color-accent-1-dark: rgba(192, 75, 75, 1);
   --color-accent-2-light: #DDDDDD;
   --color-accent-2-dark: #222222;
}



/* 

Adds custom Cascading Style Sheet (CSS) rules to your Art of Site website. These styles are not specific to the selected theme.

Art of Site includes: 
   Pure.css: A set of small, responsive CSS modules that you can use in every web project. These styles are prefixed with 'pure-' to avoid conflicts with your custom styles.
   AoS base styles: A set of Art of Site styles that are used throughout the site. These styles are prefixed with 'aos-' to avoid conflicts with your custom styles. 

*/

html {
   font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, sans-serif;
}

.test {
   font-weight: bold;
}

.header-rule {
   border-top: 2px solid var(--color-light-0);
   width: 10rem;
   position: absolute;
   left: 10vw;
}

.aos-page-home {
   --banner-height: 35rem;
} 

.aos-page-home h1 {
   font-size: 1.65rem;
}

.aos-page-home h2 {
   font-size: 1.25rem;
}

.aos-page-home .aos-banner-subhead {
   line-height: normal;
   max-width: 50vw;
}

.aos-page-home .aos-banner-subhead, .aos-page-home .aos-banner-head {
   background-color: var(--add-75-black);
   align-self: flex-start;
   margin-left: 8vw;
}

.fancy-button {
   padding: 1.3rem 1rem 1rem 1.5rem;
   border-radius: var(--corner-radius);
   align-self: start;
   margin: auto 0 4rem 10vw;
   background: linear-gradient(0.25turn, var(--color-accent-1-dark), var(--color-primary), var(--color-primary));
   font-weight: 500;
   text-transform: uppercase;
   opacity: 0.8;
   transition: 0.3s;
   box-shadow: 3px 3px 5px var(--add-50-black);
}

.fancy-button i {
   margin-top: 0.7rem;
}

.fancy-button:hover {
   opacity: 1;
   background: linear-gradient(0.25turn, var(--color-accent-1-dark), var(--color-primary), var(--color-primary));
   color: var(--color-light-1);
}

.fancy-button:active {
   box-shadow: none;
}

.home-tile {
   display: grid;
   grid-template-columns: auto 1fr;
}

.home-tile .home-icon {
   height: 32px;
   width: 32px;
   filter: invert(63%) sepia(53%) saturate(7464%) hue-rotate(165deg) brightness(100%) contrast(101%);
   margin: 2.5rem .25rem;
}

.home-tile .home-text {
   margin: .5rem;
}

@keyframes fade-in {
   from {
      opacity: 0;
   }
}

@keyframes fade-out {
   to {
      opacity: 0;
   }
}

@keyframes slide-from-top {
   from {
      transform: translateY(90px);
   }
}

@keyframes slide-to-top {
   to {
      transform: translateY(-90px);
   }
}

.slide-it {
   view-transition-name: slide-it;
}

::view-transition-old(slide-it) {
   animation: 180ms cubic-bezier(0.4, 0, 1, 1) both fade-out, 600ms cubic-bezier(0.4, 0, 0.2, 1) both slide-to-top;
}

::view-transition-new(slide-it) {
   animation: 420ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in, 600ms cubic-bezier(0.4, 0, 0.2, 1) both slide-from-top;
}

.trial-section {
   padding: 1rem;
   background-color: var(--color-primary);
   min-height: 5rem;
   color: var(--color-light-1);
}

.social-proof-section {
   padding: 1rem;
   background-color: var(--color-primary);
   min-height: 5rem;
   color: var(--color-light-1);
   display: flex;
   align-items: center;
   font-size: 1.1rem;
   font-weight: 500;
}

.social-proof-section .aos-counts-wrapper {
   margin: auto;
}

.quote-box::before {
   font-family: Arial;
   content: "\201C";
   color: var(--color-accent-2-dark);
   font-size: 4rem;
   float: left;
}

.quote-box::after {
   content: '';
}

.quote-box {
   background-color: var(--color-light-2);
   border-radius: var(--corner-radius);
   padding: 1rem;
   margin: 1rem;
}

.quote-box .main {
   font-size: 1rem;
   margin-left: 2rem;
}

.quote-box .sig {
   display: flex;
   flex-direction: column;
}

.quote-box .sig span {
   display: block;
   color: var(--color-dark-2);
   font-style: italic;
   font-weight: bold;
   margin-top: 1em;
}

@media (max-width: 768px) {
   .aos-page-home {
      --banner-height: 37rem;
   }

   .aos-page-home h1 {
      font-size: 1.4rem;
   }

   .aos-page-home h2 {
      font-size: 1.1rem;
   }

      .aos-page-home .aos-banner-subhead {
         max-width: 80vw;
      }

   .social-proof-section .aos-counts-wrapper {
      flex-direction: column;
   }

   .social-proof-section .aos-counts-wrapper .slide-it {
      margin: .25rem 0;
      display: flex;
      align-self: center;
   }
}