

/*styling for general header and footer of inner pages*/


header{
  position:sticky;
  top:0;
  z-index:2;
}
footer{
  position:sticky;
  bottom:0;
  z-index:1;
 }

nav.inner-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap:wrap;
 }

.header-grid{

  display: grid;
  grid-template-columns: 170px 170px 170px 170px 170px;
  grid-template-columns: 1fr repeat(auto-fill, 100px);
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  flex-grow:5;
  min-width:420px;
  max-width:800px;
  margin: 0 auto;
  grid-template-rows:auto;
  justify-content: space-evenly;
  justify-items: center;
  align-content: space-evenly;
  align-items: center;

}
 
.circle{
  padding:0;
  height:82px;
  width:82px;
}

#home-logo{
  display:flex;
  align-items: center;
  padding:20px 0px 20px 20px;
 }

 h1{
  margin:0;
  padding-left:20px;
  padding-right:30px;
 }

 #home-logo>a{
  width: 198px;
  height:138px;
  background-image: url(../images/swlogo.svg) !important;
  
 }

 .circle.buttonsteph a{
  background:none;
  background-image: url(../images/squaresvg.svg) !important;
  
 }
 
 
 /* about page styling  */ /* about page styling  */ /* about page styling  */ /* about page styling  */
  /* about page styling  */ /* about page styling  */ /* about page styling  */ /* about page styling  */ 

#about-image img{
  max-width:100%;
  height:auto;
  border-radius:50%;
  margin-bottom:20px;
}

#about-image, .about-interests{
  text-align:center;
  background-color: rgba(255, 196, 234, 0.826);
  max-width: 1200px;
  margin-left:20%;
  margin-right:20%;
  padding-left:10%;
  padding-top:2px;
  padding-bottom:1px;
  padding-right:10%;
  color:black;
  font-family:sans-serif;
  font-variant:normal;
}
 
#about-content h1{
  font-variant-caps:small-caps;
  color:black;
  background-color: rgba(255, 196, 234, 0.826);
  margin-left:20%;
  margin-right:20%;
  padding-top:20px;
  padding-bottom:10px;
}
 

/* Contact page styling  *//* Contact page styling  *//* Contact page styling  */
/* Contact page styling  *//* Contact page styling  *//* Contact page styling  */

.contact-content{
  background-color:#71973e;
  color:black;
  
}

.contact-flexer{
  display:flex;
  justify-content: center;
}


#contact-circle{
  height:130px;
  width:130px;
  position:absolute;
  left:-20px;
  top:-20px;
  font-size:1.5em;
}

.contact-content h3{
  font-size:2em;
}

div.contact-form{
 
  background-color:white;
  width:900px;
  border-top-right-radius: 70px;
  position:relative;
  margin:80px 0 0 0;

}

div.contact-links{
  background-color:#c173ad;
  height:498px;
  margin:80px 0 0 20px;
 border-bottom-left-radius:70px;
}

div.contact-links a{
  color:black;
  font-size:1.5em;
  display:block;
  align-items:center;
  padding:20px 0 0 0;
  width: 250px;
}

.contact-links img{
  height:50px;
 }

 



input[type="submit"],input[type="reset"]{
  background:#963692;
  padding:10px 15px;
  color:white;
  border:0;
  border-radius:4px;
  font-size:1.5em;
  font-family: 'Philosopher', sans-serif;
  font-variant-caps: small-caps;

}



form{
  text-align:left;
  padding:10px 0 20px 0;
}

form > div textarea{
  vertical-align: baseline;
  min-width:300px;
  min-height:100px;
 
} 

form > div textarea, form > div input{
  font-family:sans-serif;
  font-size:1em;
  padding:5px;
  margin:5px 0 5px 5px;
} 


form > div label{
  text-align:right;
  width:200px;
  display:inline-block;

}

/* The container for radio buttons in the contact form *//* The container for radio buttons in the contact form */
/* The container for radio buttons in the contact form */
/* The container for radio buttons in the contact form *//* The container for radio buttons in the contact form */

.radio-container {

  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
}



/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

form > div label.radio-container{
  text-align:left;
  width:600px;
  display:inline-block;
  padding-left:200px;

}

/*SELECT menu drop down*//*SELECT menu drop down*//*SELECT menu drop down*//*SELECT menu drop down*//*SELECT menu drop down*/
/*SELECT menu drop down*//*SELECT menu drop down*//*SELECT menu drop down*//*SELECT menu drop down*//*SELECT menu drop down*/

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  display: inline-block;
  margin: 5px 0 10px 5px;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color:#963692;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 30px 8px 17px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #963692;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/* gallery portfolio page styling  *//* gallery portfolio page styling  *//* gallery portfolio page styling  */
/* gallery portfolio page styling  *//* gallery portfolio page styling  *//* gallery portfolio page styling  */

body#portfolio {
  background: black;
}


#gallery-heading{
  background:black;
  color:white;
  background-size:100%;
  padding: 20px 0 60px 0;
}

#gallery-heading h2{
  font-size: 3em;
  margin: 0;
}

#gallery-heading p{
  font-size:1.5em;
}

.portfolio-content h3{
  font-size:2em;
}
.portfolio-content hr{
  max-width:50%;
  margin:0 auto;
}

.portfolio-content{
  padding-bottom:40px;
}

/*LIGHTBOX*/

.lightbox-container{
  font-family: sans-serif;
  padding: 0 1em;
  font-size: 19px;
  color: #aaa;
  text-align:center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

} 


.lightbox-container a:after, .lightbox-container a:hover{
  font-size:1em;
   
}
a.lightbox:hover{
  font-weight:normal;
  font-size:1em;
}

a.lightbox h4{
  background-color: black;
  display:inline-block;
  padding:20px;
  margin:0;
  border-radius: 50px 50px 0 0;
}

.lightbox-container img {
  min-width: 100px;
  max-width: 10vw;
  display: block;
  padding:20px 20px 20px 20px;

}



/** LIGHTBOX MARKUP **//** LIGHTBOX MARKUP **//** LIGHTBOX MARKUP **/

.lightbox {
  /* Default to hidden */
  display: none;

  /* Overlay entire screen */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}



/* Unhide the lightbox when it's the target */
.lightbox:target {
  display: block;
}

.lightbox span {
  /* Full width and height */
  display: block;
  width: 100%;
  height: calc(100% - 62px);

  /* Size and position background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
   
}


/*styling for SMALL SCREEN ONLY*//*styling for SMALL SCREEN ONLY*/
/*styling for SMALL SCREEN ONLY*//*styling for SMALL SCREEN ONLY*/
/*styling for SMALL SCREEN ONLY*//*styling for SMALL SCREEN ONLY*/
/*styling for SMALL SCREEN ONLY*//*styling for SMALL SCREEN ONLY*/

@media only screen and (max-width: 600px){
  .header-grid{
    min-width:334px;

 }
  .circle.buttonsteph{
    display:none;
  }
  h1{
    font-size:1.8em;
    padding:0 10px;

  }

  #home-logo>a{
    width: 135px;
    height:94px;
    background-image: url(../images/swlogo.svg) !important;
    background-size:cover;
   }

   #about-content {
      background-size: 100%;
      background-attachment:scroll;
    margin:0;
    align-items:center;

   }




    #about h1{
      font-size:2em;
    }

    .about-interests, #about-image{
      padding:10px;
      margin-left:6%;
      margin-right:6%;
    }

    #about-image img{
      margin-left:6%;
      margin-right:6%;
      max-width:300px;
    }


  header,footer{
    position:relative;
    top:auto;
    bottom: auto;
  }
}
/*^^^^^ this is the end of the small screen media stuff ^^^^^*//*^^^^^ this is the end of the small screen media stuff ^^^^^*/
/*^^^^^ this is the end of the small screen media stuff ^^^^^*/
/*^^^^^ this is the end of the small screen media stuff ^^^^^*/
/*^^^^^ this is the end of the small screen media stuff ^^^^^*/


 