@charset "utf-8";
/* CSS Document */
/*
COLOR PALETTE
#FFEBF5 - Lavender Blush
#0D3244 - Prussian Blue
#4C191B - Claret
#E6E5DB - Alabaster
*/

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;                           
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body {
  /* font-family:sans-serif; */
  background-color: #fff;
  color: #444;
}

a{
  text-decoration: none;
  color: #cc005f;
}
a:hover{
  color: #313131;
}

ul{
  list-style: none;
}

h1{
	font-family: "spirits-soft",serif;
    font-weight: 400;
    font-size: 3rem;
	line-height: 1.25;
	margin-bottom: 1.2rem;	
}

h5{
	font-family: "park-lane", serif;
    font-weight: 500;
	color: #cc005f;
	font-size: 2rem;
    /* text-shadow: 0 0 6px rgba(0, 0, 0, 0.2); */
	line-height: 1.875;
	margin-bottom: 0.3rem;
    text-transform: uppercase;	
}

#title{
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 3.6rem;
	position: relative;
}


:root{
	--white: #f9f9f9;
	--black: #36383F;
	--gray: #85888C;
} /* variables*/
 

/* Header */
.header{
  background-color: var(--white);
  box-shadow: 1px 1px 5px 0px var(--gray);
  position: sticky;
  top: 0;
  z-index: 6;
  width: 100%;
}


/* Logo */
.logo{
  display: inline-block;
  font-family: "spirits-soft", serif;
  color: var(--black);
  font-size: 60px;
  margin-left: 10px;
  margin-bottom:-20px;
  margin-top:-10px;
  width: 120px;
}


/* Nav menu */
.nav{
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 6;
  background-color: var(--white); /*fix*/
  overflow: hidden;
  color:var(--black);

}
.menu a{
  display: block;
  padding: 30px;
  color: var(--w); /*fix*/
  font-family: "spirits-soft", serif;
}
.menu a:hover{
  color: #cc005f;
}
.nav{
  max-height: 0;
  transition: max-height .5s ease-out;
  z-index: 1;
}

/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--black);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--black);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav{
  max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top:0;
}

/* Responsiveness */
@media (min-width: 768px) {
  .nav{
      max-height: none;
      top: 0;
      position: relative;
      float: right;
      width: fit-content;
      background-color: transparent;
  }
  .menu li{
      float: left;
  }
  .menu a:hover{
      background-color: transparent;
      color: #cc005f;

  }

  .hamb{
      display: none;
  }
}


/** 
  * ===================================================================
  * 10. intro 
  *
  * ------------------------------------------------------------------- 
  */
  #intro {
    background: #151515 url(images/JPEG/background2.jpg) no-repeat center bottom;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    text-align: center;
    clear: both;
}


.intro-content {
    vertical-align: middle;
    text-align: center;
    transform: translateY(8rem);
    /* transform: translateY(12rem); */
}
.intro-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #111111;
	opacity: .65;
}
.intro-content h1 {
    color: #FFFFFF;
    font-family: "spirits-soft", serif;
    font-weight: 500;
    font-size: 5rem;
    line-height: 1.071;
    max-width: 900px;
    margin-top: 0;
    margin-bottom: .6rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.intro-content h5 {
    color: #cc005f;
    font-family: "park-lane",serif;
    font-weight: 200;
    font-size: 2.75rem;
    line-height: 2.5;
    margin-bottom: 0;
    text-transform: uppercase;
    /* letter-spacing: .3rem; */
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.intro-content .intro-position {
    font-family: "lora-regular", serif;
    font-size: 0.7rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: #FFFFFF;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.intro-content .intro-position span {
    display: inline-block;
}
.intro-content .intro-position span::after {
    content: "|";
    text-align: center;
    display: inline-block;
    padding: 0 8px 0 14px;
    color: rgba(255, 255, 255, 0.3);
}
.intro-content .intro-position span:first-child::before {
    content: "|";
    text-align: center;
    display: inline-block;
    padding: 0 14px 0 8px;
    color: rgba(255, 255, 255, 0.3);
}
.intro-content .button {
    color: #FFFFFF !important;
    font-family: "park-lane";
    border-color: #cc005f;
    height: 6rem !important;
    line-height: 5.4rem !important;
    padding: 0.5rem 3rem !important;
    margin-top: .6rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .25rem;
}

button.stroke, .button.stroke {
	background: transparent !important;
	border: 2px solid #cc005f;
	line-height: 4.8rem;
}

button.stroke:hover, .button.stroke:hover {
	border: 2px solid #f9f9f9;
	color: #f9f9f9;
}


/* responsive intro */
@media only screen and (max-width:450px) {
/* increase content margins and adjust position */
    .intro-content .intro-position span::after {
        display: none;
    }
    .intro-content .intro-position span:first-child::before {
        display: none;
    }
    .intro-content span{
        width:100%;
    }
}
@media only screen and (max-width:500px) {
    .intro-content h5 {
        line-height: 1.5;
    }
    .intro-content{
        translate: 0 -20px;
        min-height: 600px;
    }
}
@media only screen and (max-width:400px) {
    .intro-content h5 {
        line-height: 1.5;
    }
    .intro-content{
        translate: 0 -60px;
    }
    
}
/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-width: 1024px) {
    #intro {
      background-attachment: scroll;
    }
  }

/*--------------------------------------------------------------
Grid Styling
--------------------------------------------------------------*/
h1,
p {
  margin: 0 0 1em 0;
}

.wrapper {
  max-width: 940px;
  display: grid;
  grid-gap: 10px;
  margin: 25px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: minmax(150px, auto);
  padding: 4rem 0 1.25rem;
}

.panel {
  /* needed for the flex layout. AND helps with box sizing*/
  margin-left: 5px;
  margin-right: 5px;
  flex: 1 1 200px;
  background: black;
  color: #fff;
}

#home {
	background: white;
    color:#313131;
	text-align: center;
    font-family: "spirits-soft",serif;
    font-weight: 400;
    font-size: 3.5rem;
    padding: 15px;
}

#home p{
    font-family: "park-lane", serif;
    font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.875;
	margin-bottom: 0.3rem;
    color: #cc005f;
    text-transform: uppercase;
    /* text-shadow: 0 0 6px rgba(0, 0, 0, 0.2); */
    
}

#home p.pink-head-btm{
    margin-top: 0.6rem;
}

.tall-panel {
  grid-row-end: span 2;
}

.wide-panel {
	grid-column-end: span 2;
	grid-row-end: span 1;
	background: white;
}

.wrapper > * {
  font-size: 150%;
  margin-bottom: 10px;
}

@media screen and (min-width: 750px){
  .wrapper {
    margin:25px auto 0;
    border-bottom: 0.1rem solid #ccc;
    padding: 4rem 0 6rem;
    }
  }

/*resized/optimized images to be smaller files*/

.panel img:hover {
  opacity: 0.35;
  transition: .45s ease;
}

.wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .25s ease;
}


.row {
	width: 90%;
	max-width: 1140px;
	margin: 0 auto;
}



 /** 
  * ===================================================================
  * 11. MAIN CONTENT COMMON STYLES
  *
  * ------------------------------------------------------------------- 
  */

.section-intro {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 3.6rem;
	position: relative;
}
.section-intro h1 {
    font-family: "spirits-soft",serif;
    font-weight: 400;
    font-size: 3rem;
	line-height: 1.25;
	margin-bottom: 1.2rem;
}
.section-intro h5 {
    font-family: "park-lane", serif;
    font-weight: 500;
	color: #cc005f;
	font-size: 2rem;
    /* text-shadow: 0 0 6px rgba(0, 0, 0, 0.2); */
	line-height: 1.875;
	padding: 6rem 0 0.3rem;
    text-transform: uppercase;
}

/* responsive:
 * common styles */

@media only screen and (max-width:768px) {
	.section-intro {
		max-width: 650px;
	}
	.section-intro h1 {
		font-size: 3rem;
	}
}
@media only screen and (max-width:600px) {
	.section-intro h1 {
		font-size: 3rem;
	}
}
@media only screen and (max-width:400px) {
	.section-intro h1 {
		font-size: 2.4rem;
	}
    .section-intro h5 {
		font-size: 1.75rem;
	}
}

/**
 * ABOUT SECTION
 * ------------------------------------------------------------------- 
 */

.about-intro {
    margin-right: -30px;
    margin-left: -30px;  
}

.about-intro img {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 50%;
    margin: -3rem 0 0 0;
    float: left;
}
.about-intro .lead {
    text-align: left;
    padding-left: 13rem;
    font-family: "lora-regular", serif;
    font-size: 1rem;
    line-height: 2rem;        
}

.about-content {
    position: relative;
    text-align: left;
    max-width: 850px;
    margin-bottom: 3.6rem;
    clear: both;
}
.about-content h3 {

    font-family: "spirits-soft",serif;
    font-weight: 400;
    font-size: 3rem;
}
.about-content .info-list {
    list-style: none;
    margin-left: 0;
}
.about-content .info-list li {
    padding: 0 0 0 0;
    margin-bottom: .6rem;
}
.about-content .info-list li strong {
    font-family: "park-lane", serif;
    color: #313131;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2rem;
}
.about-content .info-list li span {
    display: block;
    font-family: "lora-regular", serif;
    font-size: 0.85rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: .12rem;
    transform: translate(0.25rem,0);
}
.about-content .skill-bars {
    margin-top: 6rem;
}


/*responsive:
 * about */
 
@media only screen and (min-width:769px) {
    .about-content{
        display: flex;
    }
    .about-column{
        flex:50%;
        margin: 0 2.5rem;
    }
    .about-column h3{
        text-align: center;
    }
    .about-column p{
        text-align: center;
    }
    .about-content{
        translate: 0 -30px;
        margin-bottom: 0;
    }

}
@media only screen and (min-width:601px) {
    #about .section-intro{
        max-width: 700px;
    }
    #about .section-intro h1 {
        text-align: left;
        padding-left: 13.75rem;
    }
    #about img {
        margin:auto;
    }

    .img-container{
        float: left;
        width: 225px;
        height: 250px;
        text-align: center;
        translate: 0 -50px ;
    }
    .about-intro {
        margin-right: 0;
        margin-left: 0;
    }

}
@media only screen and (max-width:1024px) {
    .about-intro {
        margin-right: 0;
        margin-left: 0;
    }
    
}
@media only screen and (max-width:768px) {

    .about-intro .lead {
        padding-left: 11rem;
    }
    .about-content h3 {
        text-align: center;
    }
    .about-content .info-list, .about-content .skill-bars {
        margin-bottom: 4.2rem;
    }

}
@media only screen and (max-width:600px) {
    .about-intro {
        text-align: center;
        margin-top: 1rem;
    }
    .about-intro img {
        float: none;
        display: inline-block;
        margin: 1.5rem;
    }
    .about-intro .lead {
        padding-left: 0;
        text-align: center;
    }
}

 
 /**
  * skills - (_skillbars.scss)
  * -------------------------------------------------------------------
  */
.skill-bars {
    list-style: none;
    margin: 6rem 0 3rem;
}
.skill-bars li {
    /* height: .6rem; */
    height: .1rem;
    background: #cc005f;
    width: 100%;
    margin-bottom: 4rem;
    padding: 0;
    position: relative;
}
.skill-bars li strong {
    position: absolute;
    left: 0;
    top: -3rem;
    color: #313131;
    font-family: "park-lane";
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 2.4rem;
}
.skill-bars li .progress {
    background: #313131;
    position: relative;
    height: 100%;
}
.skill-bars li .progress span {
    position: absolute;
    right: 0;
    top: -3.6rem;
    display: block;
    font-family: "spirits-soft", serif;
    font-weight: 100;
    color: white;
    font-size: 1rem;
    line-height: 1;
    background: #313131;
    padding: .6rem .6rem;
    border-radius: 3px;
}
.skill-bars li .progress span::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #313131;
    content: "";
}

.skill-bars li .percent5   { width: 5%; }
.skill-bars li .percent10  { width: 10%; }
.skill-bars li .percent15  { width: 15%; }
.skill-bars li .percent20  { width: 20%; }
.skill-bars li .percent25  { width: 25%; }
.skill-bars li .percent30  { width: 30%; }
.skill-bars li .percent35  { width: 35%; }
.skill-bars li .percent40  { width: 40%; }
.skill-bars li .percent45  { width: 45%; }
.skill-bars li .percent50  { width: 50%; }
.skill-bars li .percent55  { width: 55%; }
.skill-bars li .percent60  { width: 60%; }
.skill-bars li .percent65  { width: 65%; }
.skill-bars li .percent70  { width: 70%; }
.skill-bars li .percent75  { width: 75%; }
.skill-bars li .percent80  { width: 80%; }
.skill-bars li .percent85  { width: 85%; }
.skill-bars li .percent90  { width: 90%; }
.skill-bars li .percent95  { width: 95%; }
.skill-bars li .percent100 { width: 100%; }


/** 
  * ===================================================================
  * 12. resume - (_layout.scss)
  *
  * ------------------------------------------------------------------- 
  */
/*
  #resume {
    padding-top: 12rem;
    padding-bottom: 12rem;
}
*/

#resume .resume-header {
    text-align: center;
    
}
#resume .resume-header h2 {
    color: #313131;
    font-family: "park-lane";
    font-weight: 200;
    font-size: 2rem;
    text-transform: uppercase;
}

#resume .resume-timeline {
    max-width: 800px;
}

/* timeline margin */
#resume .timeline-wrap {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 6rem;
}
/* timeline line */
#resume .timeline-wrap::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 35%;
    top: 0;
}
#resume .timeline-block {
    position: relative;
    padding-top: 1.5rem;
}

/* circle and icon */
#resume .timeline-ico {
    height: 4.8rem;
    width: 4.8rem;
    line-height: 4.8rem;
    background: #313131;
    border-radius: 50%;
    text-align: center;
    color: #FFFFFF;
    position: absolute;
    left: 35%;
    top: .9rem;
    margin-left: -2.4rem;
}
#resume .timeline-ico i {
    position: relative;
    left: .05rem;
    top: .2rem;
}

#resume .timeline-header {
    float: left;
    width: 35%;
    padding-right: 90px;
    text-align: right;
}
#resume .timeline-header h3 {
    margin-bottom: 0;
    font-family: "park-lane", serif;
    color: #444;
    font-weight: 500;
    font-size: 1.5rem;
}
#resume .timeline-header p {
    display: block;
    font-family: "lora-regular", serif;
    font-size: 0.85rem;
    line-height: 2.5rem;
    text-transform: uppercase;
    letter-spacing: .12rem;
}
#resume .timeline-content {
    margin-left: 35%;
    padding-left: 60px;
}
#resume .timeline-content h4 {
    position: relative;
    padding-bottom: 1.8rem;
    margin-bottom: 0;
    font-family: "park-lane", serif;
    color: #444;
    font-weight: 300;
    font-size: 1.5rem;
}
#resume .timeline-content h4::after {
    content: "";
    display: block;
    height: 3px;
    width: 50px;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    bottom: 0;
}

/* responsive:
 * resume */

@media only screen and (min-width:769px) {
    #resume .section-intro h5 {
        padding-top: 3rem;
    }
}

@media only screen and (max-width:1024px) {
    #resume .timeline-header {
        padding-right: 50px;
    }
    #resume .timeline-header h3 {
        font-size: 2rem;
    }
    #resume .timeline-header p {
        font-size: 1rem;
    }
    #resume .timeline-content {
        padding-left: 50px;
    }
}
@media only screen and (max-width:768px) {
    #resume .timeline-wrap::before {
        left: 2.4rem;
    }
    #resume .timeline-ico {
        left: 2.4rem;
    }
    #resume .timeline-header {
        float: none;
        width: auto;
        padding-right: 15px;
        text-align: left;
        
    }
    #resume .timeline-header h3 {
        font-size: 2rem;
    }
    #resume .timeline-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    #resume .timeline-content {
        margin: 0;
    }
    #resume .timeline-content h4 {
        padding-bottom: 0;
        padding-top: 2.1rem;
        margin-bottom: .6rem;
        font-size: 1.7rem;
    }
    #resume .timeline-content h4::after {
        bottom: auto;
        top: 0;
    }
    #resume .timeline-header, #resume .timeline-content {
        padding-left: 7rem;
    }
}
@media only screen and (max-width:480px) {
    #resume .resume-header h2 {
        font-size: 2.2rem;
    }
    #resume .timeline-wrap::before {
        left: 1.8rem;
    }
    #resume .timeline-ico {
        height: 3.6rem;
        width: 3.6rem;
        line-height: 3.6rem;
        left: 1.8rem;
        margin-left: -1.8rem;
        font-size: 1.5rem;
    }
    #resume .timeline-header, #resume .timeline-content {
        padding-left: 5.5rem;
    }
}


/** 
  * ===================================================================
  * 12. contact 
  *
  * ------------------------------------------------------------------- 
  */

/* #contact .lead {
    max-width:500px;
    margin: auto;
} */

#contact{
    margin-bottom: 5rem;
}

#contact h2 {
    font-family: "spirits-soft";
    font-weight: 300;
}

/* Contact Form */
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin: auto;
    margin-bottom: 2rem;
    max-width: 50%;
    min-width: 370px;
    font-family: "park-lane";
    font-size: 1.25rem;
}

input[type=text], select, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    width: 100%;
  }

  input[type=email], select, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    width: 100%;
  }


  input[type=submit] {
    font-family: "park-lane";
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    background-color: #313131;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  [type=submit]:hover {
    background-color: #cc005f;
  }

  button[type=submit] {
    font-family: "park-lane";
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    background-color: #313131;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  button[type=submit]:hover {
    background-color: #cc005f;
  }
  

/* responsive:
 * contact */

/* @media only screen and (max-width:768px) {
    #contact .lead {
        max-width:400px;
    } 
} */
@media only screen and (max-width:409px) {
.container{min-width: 250px;}
}

@media only screen and (min-width:769px) {
    #contact .section-intro h5 {
        padding-top: 5rem;
    }
}

@media only screen and (min-width:769px) {
.contact-content{
    padding: 1.5rem 0;
    max-height: 450px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    translate: -10px;
}
.container {
    order: 2;
    float:right;
    max-width: 300px;
    flex: 0 0 100%;
    translate: -12px;
    height: 300px;
}
.contact-row1{
    text-align: center;
    margin: auto;
    padding: 2px;
}
.first-name{
    text-align: left;
    float:left;
    width: 50%;
    margin: auto;
}
.last-name{
    text-align: left;
    float:right;
    width: 50%;
}
.last-name label{
    padding-left: 4%;
}
.first-name input{
    width:96%;
    clear:both;
}
.last-name input{
    float:right;
    width:96%;
    clear:both;
}
.email{
    text-align: left;
    clear: both;
    width:100%
}
.email input{
    width:100%
}
.subject{
    text-align: left;
}
.subject textarea{
    width: 100%;
    max-height: 100px;
 }
 input[type=submit] {
    padding: 12px 20px;
    font-size: 0.95rem;
 }

 

/*contact details*/
.contact-details{
    order:1;
    width:300px;
    flex: 1;
    translate: 0 -10px;
}
#contact .lead{
    order: 0;
    text-align: left;
    line-height: 1.5rem;
    width:300px;
    height: 50%;
    padding: 30px 50px 0;
}
#contact label{
    font-size: 1.2rem;
}
#contact input{
    padding:10px
}
}


/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.footer {
text-align: center;
background-color: #151515ef;
color: #f9f9f9;
}

.socials{
  text-align: center;
  display: inline-block;
  list-style: none;
  padding: 0 0 30px 0;
}

.socials a {
  color: #f9f9f9;
  font-size: 1.75rem;
  padding: 8px;
}

footer {
  font-size: 1rem;
  padding: 2rem
}

footer h1 {
  font-family: "spirits-soft",serif;
  font-weight: 400;
  font-size: 2rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

footer a:hover, footer a:focus {
	color: #cc005f;
}

footer .copyright span {
	display: inline-block;
    font-family: "lora-regular", serif;
    font-size: 0.7rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: #FFFFFF;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

footer a{
  color: white;
}


/**
 * go to top 
 * ------------------------------------------------------------------- 
 */
#go-top {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 600;
}
#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	height: 3rem;
	width: 3rem;
	line-height: 3rem;
	text-align: center;
	background: #cc005f;
	color: #FFFFFF;
	transition: all 0.3s ease-in-out;
}
#go-top a i {
	font-size: 1rem;
	line-height: inherit;
}
#go-top a:hover {
	background: #000000;
}

/* Gallery Drafting */
.gallery {
	display: flex;
	padding: 2px;
	transition: .3s;
}
	
.gallery:hover .gallery__image {
	filter: grayscale(1);
}
	
.gallery__column {
	display: flex;
	flex-direction: column;
	width: 25%;
}
	
.gallery__link {
	margin: 2px;
	overflow: hidden;
}
	
.gallery__link:hover .gallery__image {
	filter: grayscale(0);
}
			
.gallery__link:hover .gallery__caption {
	opacity: 1;
}	

.gallery__link:hover .gallery__image {
	transform: scale(1.1);
}

.gallery__thumb {
	position: relative;
}
	
.gallery__image {
	display: block;
	width: 100%;
	transition: .3s;
}
		
.gallery__image:hover {
	transform: scale(1.1);
}
		
.gallery__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 25px 15px 15px;
	width: 100%;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	color: white;
	opacity: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(255, 255 ,255 , 0) 100%);
	transition: .3s;
}



/* 
.wrapper {
    max-width: 940px;
    display: grid;
    grid-gap: 10px;
    margin: 25px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: minmax(150px, auto);
    padding: 4rem 0 1.25rem;
  }
  
  .panel {
    margin-left: 5px;
    margin-right: 5px;
    flex: 1 1 200px;
    background: black;
    color: #fff;
  }

  
.tall-panel {
    grid-row-end: span 2;
  }
  
  .wide-panel {
      grid-column-end: span 2;
      grid-row-end: span 1;
      background: white;
  }
  
  .wrapper > * {
    font-size: 150%;
    margin-bottom: 10px;
  }
  
  @media screen and (min-width: 750px){
    .wrapper {
      margin:25px auto 0;
      border-bottom: 0.1rem solid #ccc;
      padding: 4rem 0 6rem;
      }
    }
  
  
  .panel img:hover {
    opacity: 0.35;
    transition: .45s ease;
  }
  
  .wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .25s ease;
  }
  
  
  .row {
      width: 90%;
      max-width: 1140px;
      margin: 0 auto;
  } */

  .wrapper #home a{ 
    text-decoration: dotted underline;
    text-underline-offset: 7px;

  }
  .wrapper #home a:hover{
    text-decoration: none;
  }

  #gallery #title a{ 
    text-decoration: dotted underline;
    text-underline-offset: 8px;
  }
  #gallery #title a:hover{
    text-decoration: none;
  }