/* Root styling */

.skip-link {
  position: absolute;
  top: -4rem; /* Hide above viewport */
  left: 0;
  background: #2c2c2c;
  color: #f7f7f7;
  padding: 0.5rem 1rem;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: top 0.3s ease;
  border-radius: 0.25rem;
}

.skip-link:focus {
  top: 2.625rem;
  outline: 0.125rem solid #f7f7f7;
  outline-offset: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(255,255,255,0.7);
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: "Segoe UI", sans-serif;
  }

nav {
  background-color: var(--nav-bg);
  color: var(--nav-text);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: var(--link-color);
  transition: color 0.3s ease;
}

h1 {
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-weight: lighter;
  color: #f7f7f7;
  font-size: 3.75em;
  margin-bottom: 0;
  position: relative;
  top: 0.625rem;
}

h2 {
  font-weight: lighter;
  color: #E7759B;
  font-size: 2.75em;
}

.contactH2 {
  position: relative;
  z-index: 1000;
}

h3 {
  font-weight: lighter;
  font-size: 1.6em;
}

p {
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 1.5em;
  position: relative;
  z-index: 12;
  border-left: 2px solid #e7759b;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

p, .slide p {
  text-align: left;
}

.copyright {
  text-align: center;
  margin-top: 0.5rem;
}

/* Fade in Jenny Wilson */

.main-text {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 0.5s;
}

/* Slide in slash + Designs */

.slide-part {
  display: inline-flex;
  opacity: 0;
  transform: translateX(1.25rem);
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-name: slideInPushLeft;
  animation-duration: 1s;
  animation-delay: 1.5s;
}

/* Pink line styling */

.pink {
  color: #E7759B;
  margin: 0 0.1em;
}
  
/* Keyframes */

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideInPushLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
  
/* Typewriter styling */

#holder {
  white-space: nowrap;
  font-size: 1.5em;
  font-weight: 100;
  letter-spacing: .24em;
}

p.holder {
  /* Reserve enough height and keep it invisible initially */
  min-height: 2em;
  visibility: hidden;
  color: #f7f7f7;
  text-align: right;
  position: relative;
  border: none;
  left: 2.75rem;
}

/* Blinking cursor effect */
.typed-text {
  display: inline;
  color: #f7f7f7;
  white-space: pre-wrap;
  position: relative;
}

/* Cursor only shows if this class is added */
.cursor::after {
  content: "|";
  animation: blink 2s step-start infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
  
.section {
  text-align: center;
  position: relative;
}

.hide {
  display: none;
}

.display {
  display: block;
}

/* Nav Screen */
.nav-screen {
  height: 100%;
  z-index: 500;
  position: fixed;
  background-color: var(--nav-bg);
  opacity: 1;
  right: -17.8125rem;
  width: 17.8125rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-screen .active {
  display: block;
}

/* Nav header links */
.nav-brand {
  position: fixed;
  left: 0;
  z-index: 600;
  padding: 0.625rem;
}

.nav-brand img {
  width: 3.125rem;
}

.fa-bars {
  display: none;
}

.fa-times {
  float: right;
  padding: 1.25rem;
  right: 0;
  z-index: 600;
  cursor: pointer;
}

.fa-times:active {
  color: #E7759B;
  transition: all 0.2s ease-in-out;
}

.header-links {
  background-color: var(--bg-color);
  position: fixed;
  width: 100%;
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.header-links li {
  color: var(--nav-text);
  padding: 0.9375rem;
  font-size: 1rem;
}

.header-links a {
  color: var(--nav-text, #2c2c2c);
  transition: color 0.3s ease;
}

.header-links a:hover {
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

/* Slide out nav menu styles */
.nav-container {
  padding-top: 10%;
}

.nav-links {
  width: 15.625rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.nav-links ul {
  margin-top: 15%;
  text-align: center;
  padding-top: 10%;
}

.nav-links a {
  color: var(--nav-text);
  font-size: 1.25rem;
  line-height: 2.5;
  font-weight: normal;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
}

.nav-links a:active {
  color: #E7759B;
  transition: all 0.2s ease-in-out;
}

/* Dark/Light Mode Toggle Switch */

.switch {
  position: relative;
  display: inline-block;
  width: 3.125rem;
  height: 1.5rem;
  z-index: 5000;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #e7759b;
  transition: 0.4s;
  border-radius: 1.5rem;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.25rem;
  width: 1.25rem;
  left: 0.125rem;
  bottom: 0.125rem;
  background-color: var(--bg-color);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #E7759B;
}

input:checked + .slider:before {
  transform: translateX(1.625rem);
}

/* Position toggle in header */
.nav-lightmode {
  position: absolute;
  top: 1.125rem;
  left: 11.25rem;
  transform: translateX(-50%);
  z-index: 5000;
}

/* Position toggle in sidebar */
.nav-light-mode-mobile {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
  position: relative;
  top: 5.625rem;
}

/* Dark Mode CSS Variables */
:root {
  /* Default: Dark Mode */
  --bg-color: #010101;
  --text-color: #f5f5f5;
  --link-color: #f5f5f5;
  --nav-bg: #2c2c2c;
  --nav-text: #f5f5f5;
}

/* Light Mode Overrides */
html.light-mode {
  --bg-color: #f5f5f5;
  --text-color: #2c2c2c;
  --link-color: #2c2c2c;
  --nav-bg: #f0f0f0;
  --nav-text: #2c2c2c;
}

/* Navigation backgrounds */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
  background-color: var(--nav-bg);
  color: var(--nav-text);
}

.mobileResume {
  position: relative;
  top: 6.25rem;
}

#mobileLogo {
  max-width: 20%;
  position: relative;
  top: 6.25rem;
  left: 0rem;
}

#fp-nav ul li .fp-tooltip {
  color: #2c2c2c !important;
}

 /* Expanding border effect */
.header-links a::after,
a.resume::after {
  display: block;
  margin: 0 auto;
  margin-top: 0.3125rem;
  width: 0;
  height: 0.1rem;
  background-color: #e7759b;
  content: "";
  opacity: 0;
  transition: width 0.6s, opacity 0.8s ease-in-out;
}

.header-links a:hover::after,
a.resume:hover::after {
  width: 100%;
  opacity: 1;
}

a.resume {
  display: inline-block; 
  position: relative;    
}

  /* Main header section */
  
.opaque-bg {
  padding: 0.9375rem 1.5625rem 0.3125rem 0.3125rem;
  text-align: right;
  position: relative;
  right: 8%;
}
  
  /* Fix about section height and background behavior */

.home {
  filter: hue-rotate(340deg);
  height: 100% !important;
  background-color: var(--bg-color); /* matches current theme */
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transition: none !important; /* Disable background transitions */
  will-change: transform; /* Improve rendering performance */
}

/* Prevent overflow issues */

#fullpage {
  overflow: visible !important;
}

/* About section */
  
.container-skillbar {
  max-width: 100%;
  padding-top: 1.875rem;
  padding-right: 5%;
  padding-left: 5%;
  height: auto;
  overflow: hidden;
}

.skillbar {
  position: relative;
  display: block;
  margin-bottom: 0.9375rem;
  background: #efefef;
  height: 1.875rem;
  border-radius: 0.25rem;
  transition: 0.4s linear;
  transition-property: width, background-color;
}

.skillbar-title {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--bg-color);
  font-size: 1.1em;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.skillbar-title span {
  display: block;
  padding: 0 1.25rem;
  height: 1.875rem;
  line-height: 1.875rem;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.skillbar-bar {
  height: 1.875rem;
  width: 0rem;
  transition: width 2.5s ease;
  border-radius: 0.25rem;
}

.skill-bar-percent {
  position: absolute;
  right: 0.625rem;
  top: 0;
  font-size: 0.6875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  color: rgba(0, 0, 0, 0.5);
}

/* Skillbar gradient */

#illustrator { 
  background: #E7759B; 
} 

#canva { 
  background: #E97AA0; 
}

#premiere { 
  background: #EB7FA5; 
}

#wordpress { 
  background: #ED84AA; 
}

#html { 
  background: #EF89AE; 
}

#microsoft { 
  background: #F08EB3; 
}

#photoshop { 
  background: #F292B8; 
}

#g4a { 
  background: #F497BD; 
}

#indesign { 
  background: #F69CC2; 
}

#figma { 
  background: #F7A1C7; 
}

/* Light Mode Overrides */
body.light-mode #illustrator { 
  background: #2C2C2C; 
} 

body.light-mode #canva { 
  background: #323232; 
}

body.light-mode #premiere { 
  background: #383838; 
}

body.light-mode #wordpress { 
  background: #3E3E3E; 
}

body.light-mode #html { 
  background: #444444; 
}

body.light-mode #microsoft { 
  background: #4A4A4A; 
}

body.light-mode #photoshop { 
  background: #505050; 
}

body.light-mode #g4a { 
  background: #565656; 
}

body.light-mode #indesign { 
  background: #5C5C5C; 
}

body.light-mode #figma { 
  background: #626262; 
}

/* Portfolio section */

.content {
  margin-left: auto;
  margin-right: auto;
  width: 50rem;
  max-width: 80%;
  position: relative;
  padding-bottom: 1.5rem;
}

.content-slide {
  margin-left: auto;
  margin-right: auto;
  width: 50rem;
  max-width: 80%;
}

.content-slide img {
  width: 99%;
  transition: transform 0.3s ease-in-out;
}

.content-slide img:hover {
  transform: scale(1.01);
}

.fp-controlArrow.fp-next {
  border-color: transparent transparent transparent #E7759B !important;
  right: 2.8125rem !important;
  border-radius: 0.25rem;
  border-width: 1.5625rem;
}

.fp-controlArrow.fp-prev {
  border-color: transparent #E7759B transparent transparent !important;
  left: 2.8125rem !important;
  border-radius: 0.25rem;
  border-width: 1.5625rem;
}

#fp-nav ul li a {
  display: none !important;
}

/* Input field styles */

.contact-form {
  padding: 0rem 0.9375rem 0rem 0.9375rem;
}

.form-control {
  border: 0.125rem solid rgba(0, 0, 0, 0.27);
  max-width: 96%;
  min-width: 96%;
  height: 3em;
  font-size: 1rem;
  padding: 1em;
  margin: 0.5em 0 2em 0;
  font-weight: 600;
  width: 96%;
  background-color: var(--nav-bg);
}

.hidden {
  display: none;
}

textarea {
  min-height: 10em;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 0.25rem;
  background-color: var(--nav-bg);
}

input {
  font-family: 'Segoe UI', sans-serif;
  border-radius: 0.25rem;
  
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0.3125rem;
  font-size: 1.125rem;
  font-family: 'Segoe UI', sans-serif;
  color: var(--bg-color);
}

#ajax-contact input,
#ajax-contact textarea {
color: var(--text-color);
}

#ajax-contact ::placeholder {
  color: var(--text-color);
  opacity: 1;
}  

#submit {
  outline: none;
  padding: 0.75rem;
  border-radius: 0.25rem;
  border: 0.125rem solid #E7759B;
  text-align: center;
  font-size: 1em;
  color: #E7759B;
  background-color: var(--bg-color);
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  cursor: pointer;
}

#submit:hover {
  background-color: #E7759B;
  color: var(--bg-color);
  transition: all 0.3s ease-out;
}
  
/* Footer styles */

.footer {
  background-color: #2c2c2c;
  height: 6.25rem;
  padding-top: 0.625rem;
  margin-top: 1.25rem;
}

.fp-section:last-child {
  min-height: auto !important;
  height: auto !important;
}

.footer p {
  color: #f7f7f7;
  font-size: 1rem;
  padding-top: 0rem;
  border: none;
}

.social-links a {
  color: #f7f7f7;
  padding: 0rem 0.3125rem 0rem 0.3125rem;
}

.social-links a:hover {
  color: #E7759B;
  transition: all 0.2s ease-in-out;
}

/* Loading screen animation */

.spinner {
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 25%;
  background-color: #2c2c2c;
  text-align: center;
  font-size: 0.625rem;
  z-index: 1000;
}

.spinner > div {
  background-color: #E7759B;
  height: 100%;
  width: 0.375rem;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  animation-delay: -1.1s;
}

.spinner .rect3 {
  animation-delay: -1s;
}

.spinner .rect4 {
  animation-delay: -0.9s;
}

.spinner .rect5 {
  animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

.success {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0.0625rem 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 0.0625rem solid #d6e9c6;
  border-radius: 0.25rem;
  width: 96%;
}

.error {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0.0625rem 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 0.0625rem solid rgba(185, 74, 72, 0.3);
  border-radius: 0.25rem;
  width: 100%;
}

.dark {
  color: #2c2c2c;
}

.fa-linkedin-in {
  padding-top: 1rem;
  padding-bottom: 0rem;
}

#logo {
  position: relative;
  top: -0.1875rem;
  width: 2.8125rem;
}

a.resume {
  color: var(--nav-text);
  position: relative;
  bottom: 1.25rem;
  left: 0.625rem
}

/* Footer heart pulses on .submit click */

.pink.heart {
  display: inline-block;
  transition: transform 0.3s ease;
  color: #e7759b;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

.animate-heart {
  animation: heartBeat 0.8s ease 4;
}

/* Plane flies on .submit click */

#plane-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%; 
  height: 6.25rem; 
}

#paper-plane {
  font-size: 1.875rem;
  color: #e7759b;
  position: absolute;
  top: 80%;
  left: 30%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 100;
}
  
 /* Keyframe animation flying */

@keyframes flyAway {
  0% {
    transform: translate(0%, -50%);
    opacity: 1;
  }
  100% {
    transform: translate(300%, -50%);
    opacity: 0;
  }
}

#paper-plane.fly {
  animation: flyAway 2.5s ease-in-out forwards;
  opacity: 1;
}
  
@keyframes flyAway {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translate(-40%, -60%) rotate(10deg);
    opacity: 1;
  }
  50% {
    transform: translate(10%, -80%) rotate(-5deg);
    opacity: 1;
  }
  75% {
    transform: translate(40%, -120%) rotate(20deg);
  }
  100% {
    transform: translate(35vw, -100vh) rotate(45deg);
    opacity: 0;
  }
}

.cat {
  opacity: 0;
  max-width: 35%;
  transform: translateX(-100%);
  transition: transform 1s ease, opacity 1s ease;
}

.cat.slide-in {
  opacity: 1;
  transform: translateX(0);
}

  .fp-responsive .fp-section,
.fp-responsive .fp-tableCell {
  height: auto !important;
}

/* ///////////////////////////////////// */
/* Media queries for responsive styling */
@media (max-width: 1480px) {
  h1 {
    font-size: clamp(2.5rem, 5vw, 1.4em);
    padding-bottom: 0.625rem;
    font-weight: lighter;
  }
  
  p.holder {
    min-height: 2em;
    visibility: hidden;
    color: #f7f7f7;
    margin-left: 5rem;
  }
  
  #holder {
    display: flex;
    justify-content: flex-end; 
    white-space: wrap;   
    font-weight: lighter;
    font-size: 1.375rem;
    position: relative;
    left: -0.625rem;
  }
  
  .home-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    box-sizing: border-box;
    padding: 0.3125rem;
  }
  
  .opaque-bg {
    max-width: 25rem;
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    padding: 0.9375rem 0.3125rem 0.3125rem 0.3125rem;
  }
}

@media (max-width: 1000px) {
  h1 {
    font-size: clamp(2rem, 5vw, 1.4em);
  }

  #holder {
    font-size: 1.25rem;
    position: relative;
    left: -0.625rem;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }

  .nav-lightmode {
    display: none;
  }

  .fp-table {
   justify-content: flex-start;
  }

  .opaque-bg {
    display: block;
    position: relative;
    max-width: 25rem; 
    width: 96%;       
    text-align: right; 
    box-sizing: border-box;
    padding-top: 5rem; 
    right: 1rem;
  }

  #holder {
    font-weight: normal;
    font-size: 1rem;
    position: relative;
    left: -0.625rem;
    letter-spacing: .15em;
  }

  h1 {
    font-weight: 350;
  }

  h2 {
    font-size: 1.5rem;
    font-weight: 400;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  h3 {
    font-weight: normal;
    font-size: 1.1em;
  }

  p {
      font-size: 1rem;
      font-weight: normal;
  }

  .header-links {
    display: none;
  }

  .fa-bars {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10001; 
    width: 3.4375rem;
    height: 3.4375rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2c2c2c;
    background-color: #f7f7f7;
    border-radius: 50%;
    box-shadow: 0 0.125rem 0.375rem rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
  }

  .fa-bars:active {
    background-color: #E7759B;
  }

  body.light-mode .fa-bars {
    color: #2c2c2c;
  }

  body.nav-open .fa-bars {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
  .nav-header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: none;
  }

  #logo {
    display: none;
  }

  .section.home {
    position: relative;
    z-index: 400;
    top: -2rem;
  }
  
  .header-links ul{
    display: none;
  }

/* Side nav */

  .nav-screen {
    display: block;
    position: fixed;
    right: -17.8125rem;
    top: 0;
    height: 100%;
    width: 17.8125rem;
    z-index: 1500;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
  }

  ul.myMenu {
    padding: 1.5625rem 1.5625rem 0rem 1.5625rem;
  }

  ul.myMenu li a:active {
    color: #E7759B;
    transition: all 0.2s ease-in-out;
  }

  .fp-controlArrow.fp-prev {
    display: none;
    border-width: 1.5625rem 1.5625rem 1.5625rem 0rem; 
    left: 0.625rem !important;
  }

  .fp-controlArrow.fp-next {
    display: none;
    border-width: 1.5625rem 0rem 1.5625rem 1.5625rem;
    right: 0.625rem !important;
  }

  .fa-chevron-down {
  display: none;
  }

  .cat {
    max-width: 60%;
    height: auto;
    padding-top: 0.625rem;
  }

  .section {
    position: relative;
    z-index: 6000;
    overflow: visible !important;
    height: auto !important;
  }

  .success {
    display: inline-block;
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0.0625rem 0 rgba(255, 255, 255, 0.5);
    color: #468847;
    background-color: #dff0d8;
    border: 0.0625rem solid #d6e9c6;
    border-radius: 0.25rem;
    max-width: 90%;
  }

  .error {
    display: inline-block;
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0.0625rem 0 rgba(255, 255, 255, 0.5);
    color: #b94a48;
    background-color: #f2dede;
    border: 0.0625rem solid rgba(185, 74, 72, 0.3);
    border-radius: 0.25rem;
    max-width: 90%;
  }

  a.resume {
    display: none;
  }

  .content {
    max-width: 80%;
    margin: 0 auto;
  }

  .fp-slide,
  .fp-tableCell {
    height: auto !important;
    min-height: 0 !important;
    display: block !important; 
    vertical-align: top !important;
  }

  /* Disable fullPage.js horizontal styling */
  .fp-slides,
  .fp-slide {
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    float: none !important;
    position: static !important;
    opacity: 1 !important;
  }

  .fp-slidesContainer {
    display: block !important;
    width: 100% !important;
    transform: none !important;
  }

  .content-slide {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 80%;
  }

  .content-slide .slide {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    padding-top: 3.4375rem;
    padding-bottom: 3.4375rem;
  }

  .slide::after {
    content: "";
    display: block;
    width: 80%;           
    height: 0.0625rem;           
    background-color: var(--text-color); 
    margin: 0.625rem auto 0;   
  }

  .content-slide h2,
  .content-slide p {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .content-slide img {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .content-slide img:hover {
      transform: none;
  }

  .slide p {
    padding-top: 1.25rem;
    text-align: left;
  }

  .contact-form {
    padding: 0rem 0.9375rem 0rem 0.9375rem;
  }

  .form-control {
    border: 0.125rem solid rgba(0, 0, 0, 0.27);
    max-width: 90%;
    min-width: 90%;
    height: 3em;
    font-size: 1rem;
    padding: 1em;
    margin: 0.5em 0 2em 0;
  }

  .social-links {
    background-color: #2c2c2c;
  }

  .social-links a:active {
    color: #E7759B;
    transition: all 0.2s ease-in-out;
  }

  .footer p {
    background-color: #2c2c2c;
    padding: 1.25rem;
    margin-top: 0rem;
    font-size: 0.875rem;
  }

  p.copyright {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }

  .fp-scrollable .fp-slide:not(.fp-auto-height):not([data-percentage]) {
    height: auto !important;
    min-height: 0 !important;
  }
  
}
