/* The rest of the page styling. Because the sections are short, I won't divid them up into their own styling sheets */
/* Nav */
.logo{
	width: 100px;
}
.navigation{
	background-color: rgba(242, 242, 242, 0.85);
}
.navigation-container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
  padding: var(--spacing-sm) 0;
}
.nav {
  overflow: hidden;
	display: flex;
	align-items: center;
}
.nav-link {
	font-size: var(--h4-font-size);
	padding: 0 var(--spacing-md);
	color: var(--almost-black);
}
.nav-link:hover {
	color: var(--pink);
}
.nav .icon {
  display: none;
}

/*Banner styling*/
.my-name{
	font-size: 49px;
	font-weight: 400;
}
.title{
	font-size: var(--h1-font-size);
	font-weight: var(--bold);
	max-width: 800px;
	text-align: center;
	padding: 0 var(--spacing-sm) var(--spacing-lg);
}
.banner {
	background: url(../images/banner02.jpg) no-repeat center;
	background-size: cover;
	height: 570px;
	padding-bottom: var(--spacing-lg);
	margin-bottom: 50px;
}

/* Works Styling */
.work-flex {
	padding-bottom: 30px;
}
.work-text-block{
	padding-right: var(--spacing-lg);
	max-width: 55%;
}
.web-flex {
  display: flex;
  justify-content: space-between;
}
.web-works {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 2px solid #efefef;
}
.web-works-subtitle {
  font-size: 32px;
	padding-bottom: 5px;
}
.web-works img{
	width: 30%;
	padding: var(--spacing-lg) 5px 0;
}
.wordpress {
  border-bottom: 2px solid #efefef;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.uiux-works{
	width: 32%;
	padding-bottom: 100px;
}
.text-small {
	font-size: 13px;
}

/* Hover Over Work Styling */
/* .hover-work {
  position: relative;
  width: 32%;
}
.hover-work:hover {
  background: var(--yellow);
}
.hover-work img {
  width: 100%;
	padding: 0;
  transition: .5s ease;
}
.hover-text {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.hover-work:hover .hover-image {
  opacity: 0.3;
}
.hover-work:hover .hover-text {
  opacity: 1;
}
.hover-icon {
  font-size: 36px;
} */

/* Skills Styling */
.skills-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.skills-flex .button-lg {
  width: 300px;
	margin: 0 20px;
}
.skills{
  background-color: var(--light-grey);
  padding: 140px 0 40px;
  -webkit-clip-path: polygon(0 5vw,100% 0,100% 100%,0 100%);
  clip-path: polygon(0 5vw,100% 0,100% 100%,0 100%);
}
.skills-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	max-width: 1220px;
	margin: 0 auto;
}
.skill-item{
	max-width: 550px;
	border-bottom: 2px solid #dadada;
	padding-bottom: 20px;
	margin: 0 var(--spacing-md) 40px;
}

/* Side Project Styling */
.side-project-sub-heading {
  margin-bottom: 15px;
}
.side-project-text {
  width: 64%;
}
.side-project {
  background: url(../images/tba-background.jpg) no-repeat center;
	background-size: cover;
  padding: 80px 0 70px;
  margin: var(--spacing-sm) 0 50px;
}
.side-project-list-flex {
  display: flex;
}
.side-project-list-flex div{
	width: 35%;
}
.side-project-list{
	margin: var(--spacing-md) 0 20px;
	box-shadow: 3px 3px 7px #afafaf;
}

/* About Styling */
.about-photo{
	align-self: center;
	margin-right: 50px;
}
.about-text {
  margin: 10px 0 50px;
}

/* Contact Styling */
.contact{
	background: url(../images/confetti.jpg) no-repeat center;
	background-color: var(--light-grey);
	padding: 120px 0 80px;
  -webkit-clip-path: polygon(0 0,100% 4vw,100% 100%,0 100%);
  clip-path: polygon(0 0,100% 4vw,100% 100%,0 100%);
}

/* Footer */
.footer{
	background-color: var(--almost-black);
	color: var(--white);
	padding: var(--spacing-md);
}
