* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --yelow: #f2c81f;
  --orange: #e67e22;
  --red: #e3301e;
  --blue-lt: #78b7e1;
  --blue: rgb(35, 109, 157);
  --blue-dk: #1a5073;
  --green-lt: #7ee2a8;
  --green: rgb(46, 204, 113);
  --green-dk: rgb(34, 149, 82);
  --white: #ecf0f1;
  --gray-lt: #c3cccd;
  --gray: rgb(149, 165, 166);
  --gray-dk: #798d8f;
  --black: #0c0e0e;
  --linear-gray: linear-gradient(
    to bottom,
    var(--gray-lt),
    rgba(255, 255, 255, 0.6)
  );
  --linear-gray-opp: linear-gradient(
    to top,
    var(--gray-lt),
    rgba(255, 255, 255, 0.6)
  );
}
body {
  font-family: Roboto, sans-serif;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  color: var(--black);
}
a {
  text-decoration: none;
}
a:link,
a:visited {
  color: var(--black);
}
a:active,
a:hover {
  color: var(--gray-dk);
}
header {
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(35, 109, 157, 0.9)),
      to(rgba(26, 80, 115, 0.9))
    ),
    url(/resources/imgs/bike-woods-bkgd.jpg) bottom/cover fixed;
  background: linear-gradient(rgba(35, 109, 157, 0.9), rgba(26, 80, 115, 0.9)),
    url(/resources/imgs/bike-woods-bkgd.jpg) bottom/cover fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
}
header.landing {
  height: 75vh;
}
nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.8rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(35, 109, 157, 0.4)),
    to(rgba(26, 80, 115, 0.4))
  );
  background: linear-gradient(rgba(35, 109, 157, 0.4), rgba(26, 80, 115, 0.4));
}
.nav__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  margin-left: 2rem;
}
.nav__main-nav {
  margin-left: auto;
  list-style: none;
  font-size: 1.3rem;
}
.nav__item {
  display: inline-block;
  margin-right: 2rem;
}
.nav__item:last-child {
  margin-right: 0;
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  background: var(--blue-dk);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
footer a:link,
footer a:visited,
nav a:link,
nav a:visited {
  text-decoration: none;
  color: var(--blue-lt);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
footer a:active,
footer a:hover,
nav a:active,
nav a:hover {
  color: var(--blue-dk);
}
.logo:active,
.logo:hover {
  background: var(--blue-lt);
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}
.header__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
}
.header__icon {
  width: 175px;
  height: 175px;
  border-radius: 20px;
  color: var(--blue-lt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  margin: 1rem;
  text-align: center;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.header__icon:hover {
  background-color: var(--blue);
}
.header__icon i {
  font-size: 3rem;
  color: var(--blue-lt);
  margin: auto;
}
.header__icon h1 {
  margin: auto;
}
.container {
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
h1,
h2,
h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: Arvo, serif;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;
}
section.main {
  padding: 4rem 0 6rem 0;
}
.main__fig {
  width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
}
.main__fig img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
  background-color: var(--blue-lt);
  opacity: 0.7;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.main__fig h2 {
  text-align: justify;
}
.main__content {
  margin-right: auto;
  padding-right: 1rem;
}
.main__fig figcaption {
  font-family: Arvo, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-lt);
  position: absolute;
  opacity: 0.2;
}
.main__fig img:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  opacity: 0.9;
  background-color: var(--blue-dk);
}
.main__content p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.6rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.8rem;
}
.about {
  padding: 8rem 0 6rem 0;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(26, 80, 115, 0.9)),
      to(rgba(0, 0, 0, 0.7))
    ),
    url(../imgs/bike-woods-bkgd.jpg) center/cover fixed no-repeat;
  background: linear-gradient(rgba(26, 80, 115, 0.9), rgba(0, 0, 0, 0.7)),
    url(../imgs/bike-woods-bkgd.jpg) center/cover fixed no-repeat;
  color: var(--gray-lt);
  -webkit-clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
}
.about a:link,
.about a:visited {
  color: var(--gray);
}
.about a:hover,
.about.a:active {
  color: var(--gray-dk);
}
p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 1rem;
}
section.contact {
  padding: 14rem 0;
}
.contact__img {
  width: 300px;
}
.contact__me {
  width: 300px;
}
.contact__me img {
  width: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.contact__content {
  margin-right: 4rem;
}
.contact__list {
  list-style: none;
}
.contact__list-item {
  margin-bottom: 0.6rem;
}
.contact a:link,
.contact a:visited {
  color: var(--blue-dk);
}
.contact a:active,
.contact a:hover {
  color: var(--blue);
}
.contact i:active,
.contact i:hover {
  color: var(--blue);
}
.contact__list-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact__icon {
  font-size: 2.4rem;
  color: var(--blue-dk);
  margin-right: 1rem;
}
.projects__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.projects__heading {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 4rem 0;
  padding: 2rem;
}
.project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--linear-gray);
  width: 100%;
  margin: 1rem auto;
}
.project:nth-of-type(2n) {
  background: var(--linear-gray-opp);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}
.project__content {
  padding: 2rem;
}
.project__details {
  margin-left: auto;
}
.project__details-content {
  padding: 1.4rem;
  width: 100%;
}
.project__details p {
  font-size: 1rem;
  line-height: 1.6rem;
  font-style: italic;
  text-align: center;
}
.project__img {
  width: 275px;
}
.project__img img {
  width: 100%;
  display: block;
}
.bike {
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0.8)),
      to(rgba(0, 0, 0, 0.5))
    ),
    url(../imgs/bike-woods-bkgd.jpg) center/cover fixed no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)),
    url(../imgs/bike-woods-bkgd.jpg) center/cover fixed no-repeat;
  min-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: colum nowrap;
  flex-flow: colum nowrap;
}
.bike__content {
  border-radius: 5px;
  min-height: 600px;
  background: rgba(195, 204, 205, 0.8);
  padding: 2rem;
}
.bike__trip {
  margin-top: 1rem;
}
footer {
  padding: 1rem;
  background: var(--blue-dk);
  color: var(--blue-lt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
