/*
Author: Jedediah White
Author URI: https://jedediahwhite.com
Description: Start date: 27th of February, 2023
Version: 1.0
*/
/* Quick access */
/* Resets ----------------------------- */
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  margin: 0 auto;
  padding: 0;
  background: #FFF8EE; }

h1, h2, h3, h4, h5 {
  font-family: "nunito-sans", sans-serif;
  text-align: left;
  color: #224E70; }

h1 {
  font-size: 2em; }

h2 {
  font-size: 1.5em; }

h3 {
  font-size: 1.3em; }

h4 {
  font-size: 1em; }

h5 {
  font-size: .8em; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

.clear {
  clear: both; }

p {
  margin: 20px 0; }

/* Main Settings ---------------------- */
#wrapper {
  margin: 0 auto; }

#header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  padding: 20px;
  background: #224E70;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  z-index: 1; }
  #header #logo {
    flex-basis: 10%;
    width: 110px;
    height: auto; }
    #header #logo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover !important;
      object-position: center center !important; }

#hero {
  position: relative;
  background-color: #c7c7c7;
  background-image: url("https://source.unsplash.com/-oZsQY5I98A");
  background-size: cover !important;
  background-position: center center !important;
  height: 70vh;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  z-index: -1; }
  #hero:before {
    content: '';
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0; }
  #hero:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAYAAAB8ZH1oAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAACqADAAQAAAABAAAABQAAAAC5KC8kAAAALUlEQVQIHWNgIBIwIqv7/+Pdf2Q+I4cQXB7OQFcE0wBTDFaISxGyYkZCimCKAdahD+mLqHT6AAAAAElFTkSuQmCC) repeat-x; }
  #hero .hero-content {
    position: relative;
    text-align: center;
    color: #fff; }
    #hero .hero-content h1 {
      text-align: center;
      color: #FFF8EE; }
    #hero .hero-content p {
      font-family: "apolline", serif;
      font-size: 24px;
      line-height: 1.5em;
      width: 80vw; }

#content {
  display: block;
  padding: 40px 20px;
  font-family: "apolline", serif;
  font-size: 21px;
  line-height: 1.5em;
  color: #1f1f17; }
  #content section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 30px 0;
    margin: 100px 0;
    border-radius: 8px; }
    #content section div {
      flex-basis: 50%;
      padding: 0 30px; }
      #content section div.central {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: center; }
        #content section div.central img {
          display: block;
          width: 100%;
          max-width: 90vw;
          height: 90%;
          object-fit: cover !important;
          object-position: center center !important;
          border-radius: 8px;
          border: solid 10px #fff;
          background: #fff;
          -webkit-user-drag: none; }
      #content section div h2 {
        margin-top: 0; }
    #content section.odd {
      background: #e4e4e4; }

#finalHeading {
  display: block;
  text-align: center;
  margin: 0 0 60px 0; }

#footer {
  display: block;
  position: relative;
  padding: 60px 20px;
  background: #c7c7c7; }
  #footer:before {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAYAAAB8ZH1oAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAACqADAAQAAAABAAAABQAAAAC5KC8kAAAALUlEQVQIHWNgIBIwIqs7fvz4f2S+paUlXB7OQFcE0wBTDFaISxGyYkZCimCKAZggD1lng06EAAAAAElFTkSuQmCC") repeat-x; }
  #footer #copyright {
    font-family: "apolline", serif;
    font-size: 17px;
    text-align: center;
    color: #555;
    line-height: 1.5em; }

/* Nav Settings ----------------------- */
nav#main {
  flex-basis: 90%; }

nav#main ul {
  text-align: right; }

nav#main ul > li {
  display: inline-block;
  margin: 0 10px; }

nav#main ul > li a {
  font-family: "nunito-sans", sans-serif;
  font-size: 18px;
  color: #FFF8EE;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none; }

/* Page Specific Settings ------------- */
/* Form settings ---------------------- */
label {
  font-family: "nunito-sans", sans-serif;
  display: block; }
  label:nth-of-type(2), label:nth-of-type(3) {
    margin-top: 10px; }

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea {
  display: block;
  padding: 4px 8px;
  background-color: #fff;
  border: 1px solid #d0cecf;
  font-family: "apolline", serif;
  font-size: 17px;
  line-height: normal;
  color: #111;
  outline: none;
  border-radius: 8px;
  width: 90%;
  box-shadow: none; }

textarea {
  height: 90px;
  resize: none; }

button[type="submit"] {
  margin-top: 10px;
  padding: 8px 15px;
  background: #454545;
  font-family: "apolline", serif;
  font-size: 17px;
  color: #fff;
  outline: none;
  border: none;
  border-radius: 8px;
  box-shadow: none; }

/* Image Settings --------------------- */
/* Miscellaneous Settings ------------- */
.genBtn {
  display: table;
  margin: 20px 0;
  padding: 10px 25px 10px 20px;
  background: #27BBC8;
  font-weight: 900;
  color: #1f1f17;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
  transition: all 0.2s ease; }
  .genBtn:hover {
    padding: 10px 35px 10px 20px; }

.rotateLeft {
  transform: rotate(-0.8deg);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1); }

.rotateRight {
  transform: rotate(0.8deg);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1); }

.profile {
  width: 45vh !important;
  height: 100% !important;
  border-radius: 100% !important; }

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in-out; }

/* Smartphones (portrait) ----------- */
@media only screen and (min-device-width: 320px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-width: 375px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-width: 414px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
  #logo {
    flex-basis: 20% !important; }
  nav#main {
    flex-basis: 80% !important; }
  section {
    flex-direction: column !important; }
    section div {
      padding: 30px 20px !important;
      flex-basis: 100% !important; }
  input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea {
    width: 75vw !important; } }

/* End of file */
