/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}



@import url('https://fonts.googleapis.com/css?family=Arapey:400i|Crimson+Text:400,400i|Raleway:400,400i,900,900i');

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
   	margin: 0px 0px 0px;
    padding: 0 0px 0px;
    width: 100%;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}



/* BASIC PAGE SETUP ============================================================================= */


body { 
margin : 0 auto;
padding : 0;
font : 100%/1 ''Raleway', sans-serif;
color : #000; 
text-align: center;
background: #fff;
}

.wrapper {
width: 100%;
position: relative;
}


header {
clear: both;
width: 100%; /* 1000px / 1250px */
font-size: 0.2em; /* 13 / 16 */
max-width: 100%; /* 1200px / 13 */
margin: 0 auto;
padding: 0px 0px 0px 0px;
position: relative;
display: inline;
}


	
.logo .desktop { 
width: 25%;
margin-top: 12px;
margin-left: 12px;
margin-bottom: 12px;
float: left;
} 
		
.logo .mobile {
display: none;
}	
	
	 /* when screen is less than 600px wide
     show mobile version and hide desktop */
 @media (max-width: 600px) {
.logo .mobile {
display: inline;
width: 95px;
height:95px;
margin-top: 15px;
margin-left: 12px;
margin-bottom: 12px;
float: left;
}
.logo .desktop {
      display: none;
    }
  
 }	
	
#maincontent {
				clear: both;
				width: 100%; /* 1000px / 1250px */
				font-size: 0.8125em; /* 13 / 16 */
				max-width: 100%; /* 1200px / 13 */
				margin: 0 auto;
				padding: 0.5em 0px;
				line-height: 1.5em;
				position: relative;
				font-size: 100%;
				}
			


#pageline {
				clear: both;
				width: 100%; /* 1000px / 1250px */
				font-size: 0.8125em; /* 13 / 16 */
				max-width: 100%; /* 1200px / 13 */
				margin: 10px auto;
				padding: 0em 0px;
				line-height: 1.5em;
				position: relative;
				}

			
			
			
			
	/*  MENU  ============================================================================= */


.nav-toggle {
	display: none;
}

.nav-toggle-label {
	position: fixed;
	top: 15px;
	right: 9px;
	margin: 0;
	padding: 0;
  
}


.menu {
	
	text-decoration: none;
	font-size: 10pt;
	letter-spacing: 1.5px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	color: #FF5050;
	}


.menu:hover {
	font-size: 10pt;
	padding: 0 0px 0px 0;
	text-decoration: overline dotted;
	cursor: default; 
	color: #D0D0D0;
	-webkit-transition: color 0.35s ease-in-out;
	transition: color 0.35s ease-in-out;
	}


nav {
	
	position: relative;
	top: -1px;
    right:65px;
    text-align: right;
	line-height: 25px;
	
	margin: 0px 0 0 0;
    transform: scale(1,0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;
    float: right;
    border-right: 1px solid  #FF5050;
	}
	
	
nav ul {
	
	margin: 10px;
	padding: 0;
	list-style: none;
	}

	
nav li {
	list-style-type: none;
	margin-bottom: 0px;
	margin-right: 0px;
	}
	
nav a {
 	
 	text-align: right;
	padding: 0;
	text-decoration: none;
	font-size: 10pt;
	letter-spacing: 1.5px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	color: #FF5050;
	opacity: 0;
	transition: opacity 100ms ease-in-out; /* menu fade out  */
	}


.nav-toggle:checked ~ nav {
		transform: scale(1,1);
		}
		
.nav-toggle:checked ~ nav a{
		opacity: 1;	
		transition: opacity 250ms ease-in-out 300ms; /* menu fade in  */
		}


@media screen and (min-width: 500px) {
  .nav-toggle-label {
    display: none;
  }

  
    
nav {
  	all: unset;
  	
  }
  
nav a {
  	opacity: 1;
  	position: relative;
  	margin:0px 15px 0 0;
  	}
  	
nav ul {
    display: flex;
    float: right;
    margin:20px 0px 0 0;
    }
  	}
  	
  	
  	
/*  Typography  ============================================================================= */

h1 { 
font-family: 'Raleway', sans-serif;
font-weight: 900;
font-style: italic;
color: rgb(0, 255, 188);
margin-bottom : 0px;
margin-top: -10px;
letter-spacing: 2px;
font-size: 4vw; 
line-height: 1.5em;
}



h2 { 
font-family: 'Raleway', sans-serif;
font-weight: 400;
color: #FF5050;
margin-bottom : .5em;
margin-top : 0;
letter-spacing: 2px;
font-size : 2em; /* 40 / 16 */
line-height : 1.5em;
}

h3 { 
font-family: 'Arapey', serif;
font-weight: 400;
font-style: italic;
color: #FFFFFF;
margin-bottom: .5em;
margin-top: 0;
letter-spacing: 0.1em;
font-size: 6vw; /* 40 / 16 */
line-height: 1em;
}

h4 { 
font-family: 'Raleway', sans-serif;
font-weight: 400;
font-style: italic;
color: rgb(0, 255, 188);
margin-bottom: .5em;
margin-top: 0;
letter-spacing: 0.1em;
font-size: 3.5vw; /* 40 / 16 */
line-height: 0.8em;
}

p.bodytext {
	
font-family: 'Crimson Text', times, serif;
font-weight: 400;
font-style: italic;
font-kerning: normal;
color: #666;
margin-bottom: 0.1em;
letter-spacing: 1px;
font-size: 1.2em; 
line-height: 1.2em;
}

p.bodytext-reg {
	
font-family: 'Crimson Text', times, serif;
font-weight: 400;
color: #666;
margin-bottom: 0.3em;
letter-spacing: 1px;
font-size: 1.2em; 
line-height: 1.8em;
}

@media screen and (min-width: 1250px) {
    p.bodytext {

font-family: 'Crimson Text', times, serif;
font-weight: 400;
font-style: italic;
color: #666;
margin-bottom : 0em;
margin-top: 2em;
letter-spacing: 1px;
font-size : 1.5em; 
line-height: 1.6em;
}
}

@media screen and (max-width: 600px) {
   p.bodytext {

font-family: 'Crimson Text', times, serif;
font-weight: 400;
font-style: italic;
color: #666;
margin-bottom : 0em;
margin-top: 0em;
letter-spacing: 1px;
font-size : 1em; 
line-height: 1.4em;
}
}


p.caretext {

font-family: 'Crimson Text', times, serif;
font-weight: 400;
font-style: italic;
color: #666;
margin-bottom: 0.1em;
letter-spacing: 1px;
font-size: 2vw; 
line-height: 1.2em;
}

@media (max-width: 700px) {

p.caretext {

font-family: 'Crimson Text', times, serif;
font-weight: 400;
font-style: italic;
color: #666;
margin-bottom: 0.1em;
letter-spacing: 1px;
font-size: 1em; 
line-height: 1.2em;
}
}

@media (max-width: 700px) {
h4 { 
font-family: 'Raleway', sans-serif;
font-weight: 400;
font-style: italic;
color: rgb(0, 255, 188);
margin-bottom: .5em;
margin-top: 0;
letter-spacing: 0.1em;
font-size: 2em; /* 40 / 16 */
line-height: 1em;
}
}

p.symbols {
	
font-family: times, serif;
font-weight: 400;
color: #FF5050;
margin-top: 25px;
margin-bottom: 0em;
letter-spacing: 1px;
font-size: 1em; 
line-height: 0em;
}

/*  GRID PORTFOLIO ============================================================================= */


.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
  align-content: space-around;
 padding: 0px 10px 0px 10px;
}

.grid-container > div {
  
  text-align: center;
  
}

@media screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: auto auto;
     
  }
}

@media screen and (max-width: 500px) {
  .grid-container {
    grid-template-columns: auto;
     
  }
}


/*  GRID ABOUT ============================================================================= */


.grid-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-template-areas: 
    "headline headline headline"
    "pic1 pic2 pic3"
    "article article article";
  
  align-content: space-around;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  margin: 10px;
   }  
  
.grid-about > div {
  
  text-align: center;
  
}


.headline {
  grid-area: headline;
  padding: 20px;
  background: white;

  }
  
.pic1 {
  grid-area: pic1;
  background: white;
  }
  
  .pic2 {
  grid-area: pic2;
  background: white;
  }

  
  
  .pic3 {
  grid-area: pic3;
  background: white;
  }

  
.maintext { 
  grid-area: article; 
      background: white;
  }
  
  
  @media screen and (max-width:500px) {
  
  .grid-about {
  display: grid;
  grid-template-columns: auto;
  grid-auto-rows: auto;
  grid-template-areas: 
    "headline"
    "pic1"
    "pic2"
    "pic3"
    "article";
  
  align-content: space-around;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  margin: 10px;
  }  

  }
  
  .tools img {
  	display: inline;
  	position: relative;
  	margin-bottom: 50px;
  	
  	height:100px;
  }
  
  
/*  GRID CARE  */

.grid-care {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  grid-template-areas: 
    "carepic sidetext"
    "article article";
  
  align-content: space-around;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  margin: 10px;
   }  
  
.grid-about > div {
  
  text-align: center;
  
}

.carepic {
  grid-area: carepic;
  background: white;
  }
  
.sidetext {
  grid-area: sidetext;
  background: white;
  
  }
  
.article {
  	grid-area: article;
  }

 @media screen and (max-width:700px) {
  
.grid-care {
  display: grid;
  grid-template-columns: auto;
  grid-auto-rows: auto;
  grid-template-areas: 
    "carepic"
    "sidetext"
    "article";
  
  align-content: space-around;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  margin: 10px
}
 }



/* LINKS =============================================================================  */

a {
	color: #FF5050;
	text-decoration: none;
	}

a:hover {
	cursor: default; 
	color: #D0D0D0;
	-webkit-transition: color 0.35s ease-in-out;
	transition: color 0.35s ease-in-out;
}


a.insta:hover {
	opacity: 0.5;
	transition: .5s ease;
}

	
a.ex1:hover {
	opacity: 0.75;
	transition: .5s ease;	

}

.ex1 span {
  z-index: 1;
 position: absolute;
 margin-top: 5px;
 margin-left: 10px;
 font-family: 'Raleway', sans-serif;
 font-weight: 400;
 font-size: 0.8em;
 font-style: normal;
 letter-spacing: 0.3em;
 color: #FF5050;
 text-decoration: none;
    }
  

/* IMAGES ============================================================================= */

img {
border : 0;
max-width: 100%;}

img.floatleft { float: left; margin: 0 10px 0 0; }
img.floatright { float: right; margin: 0 0 0 10px; }


/*  footer	============================================================================= */
	
.footer {
			clear: both;
			width: 100; /* 1000px / 1250px */
			font-size: 0.8125em; /* 13 / 16 */
			max-width: 100%; /* 1200px / 13 */
			margin: 0 auto;
			padding: 0 0 35px 0;
			
		}

.footercontainer {
		
		display: inline;
		margin: 0 auto;
		width: 90%;
		background: #fff;
		
	}



/*  socialicons  ============================================================================= */	

ul.socialbottom {
	display: block;
	list-style-type: none;
	padding: 0px 14px 0px 0px;
	

}


.socialicons {
		float: right;
		display: inline;
		list-style-type: none;
		margin: 0 auto;
		text-align: center;
		padding: 0px 5px 0px 5px;
		
		
		}
	
.socialicons:hover {
	
		opacity:0.4;
		-webkit-transition: opacity .25s ease-in-out;
	}


/*  COPYRIGHT ============================================================================= */


.copy {
	
		display: inline;
		text-align: left;
		
		}


p.copyright {
			
	float: left;
	padding: 5px 0px 0px 14px;
	margin: 0 auto;
	text-align: right;
	color: #FF5050;
	letter-spacing: 1px;
	font-size : 0.75em; 
	
}


p.copyright::after {
	content: ""
		
}


/*  CONTACT PAGE ============================================================================= */

#contactcont {
				
				margin: 10px auto;
				padding: 0 15px 0 15px;
				line-height: 1.5em;
				position: relative;
				}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
