/*
 Theme Name:   DK Starter
 Theme URI:    https://generatepress.com
 Description:  DK John Digital (GeneratePress child theme)
 Author:       DK John
 Author URI:   https://dkjohn.com
 Template:     generatepress
 Version:      0.1
*/


/* Set the main content area to a minimum of 65vh */
#main {
    min-height: 75vh;
  }
  
  
/* Site Wrapper to set overall site max width */
.site-wrapper {
    width: 100%;
    max-width: 1920px;
    background-color: var(--body);
  } 
  
  
/* Helper Classes */

  /* Standard Shadow(s) */
  
  .shadow-standard {
    box-shadow: 0px 5px 16px -5px rgba(33, 33, 33, 0.2);
    transition: all .2s ease-in;
  }
  
  .shadow-standard:hover {
    box-shadow: 0px 8px 32px 0px rgba(33, 33, 33, 0.1);
  }
  
  /* Max Width(s) */
  
  .max-width-1024 {
    max-width: 1024px;
  }
  
  
  .max-width-768 {
    max-width: 768px;
  }
  
  .max-width-640 {
    max-width: 640px;
  }
  
  .max-width-480 {
    max-width: 480px;
  }
  
  /* Margin Auto */
  
  .margin-auto{
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Position Properties */
  
  .relative{
    position: relative;
  }
  
  .absolute{
    position:absolute;
  }
  
  .sticky{
    position: sticky;
  }
  

/* Default header shadow */
header#masthead {
	box-shadow: 0px 5px 16px -5px rgba(33, 33, 33, 0.1);
	z-index: 999;
}

/* Image position */
.img-pos-top {
	object-position: top;
}