/* BRUFF STYLES

NOTES:



----------------------------------------------------------------- */

/* BREAK POINTS


@media screen and (max-width: 1640px){}
@media screen and (max-width: 1350px){}
@media screen and (max-width: 900px){}
@media screen and (max-width: 675px){}
@media screen and (max-width: 350px){} 



*/

/* VARIABLES ---------------------------------------------------- */

:root {
  /* NEUTRALS */

  --1: #ffffff;
  --2: #f2f2f2;
  --3: #e6e6e6;
  --4: #cccccc;
  --5: #b3b3b3;
  --6: #999999;
  --7: #808080;
  --8: #666666;
  --9: #4d4d4d;
  --10: #333333;
  --11: #1a1a1a;
  --12: #000000;

  /* General */

  --cyan-gray: #abb8c3;
  --pale-pink: #f78da7;
  --vivid-red: #cf2e2e;
  --vivid-orange: #ff6900;
  --vivid-amber: #fcb900;
  --light-green-cyan: #7bdcb5;
  --vivid-green-cyan: #00d084;
  --pale-cyan-blue: #8ed1fc;
  --vivid-cyan-blue: #0693e3;
  --vivid-purple: #9b51e0;
  --primary: #1779ba;
  --secondary: #767676;
  --success: #24616c;
  --warning: #ffae00;
  --alert: #cc4b37;

  /* RGB */
  --rgbred: #ff0000;
  --rgbyellow: #ffff00;
  --rgbgreen: #00ff00;
  --rgbcyan: #00ffff;
  --rgbblue: #0000ff;
  --rgbmagenta: #ff00ff;

  /* COLOUR SPECTRUM */
  --spectrumblue: #00a0db;
  --spectrumpurple: #362983;
  --spectrumpink: #e4007d;
  --spectrumred: #e31f21;
  --spectrumyellow: #ffe900;
  --spectrumgreen: #009447;

  /* COOL */
  --cool1: #bbe9db;
  --cool2: #aeccc6;
  --cool3: #9ba6a5;
  --cool4: #757a79;

  /* WARM */
  --warm1: #83ffe1;
  --warm2: #7045ff;
  --warm3: #c768ff;
  --warm4: #ffaded;

  /* Bruff */
  --offwhite: rgb(231, 231, 231);
  --: #;
  --: #;
  --: #;

  /* GRADIENTS */

  --gradient-vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,
      rgba(6, 147, 227, 1) 0%,
      rgb(155, 81, 224) 100%);
  --gradient-light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,
      rgb(122, 220, 180) 0%,
      rgb(0, 208, 130) 100%);
  --gradient-luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,
      rgba(252, 185, 0, 1) 0%,
      rgba(255, 105, 0, 1) 100%);
  --gradient-luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,
      rgba(255, 105, 0, 1) 0%,
      rgb(207, 46, 46) 100%);
  --gradient-very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,
      rgb(238, 238, 238) 0%,
      rgb(169, 184, 195) 100%);
  --gradient-cool-to-warm-spectrum: linear-gradient(135deg,
      rgb(74, 234, 220) 0%,
      rgb(151, 120, 209) 20%,
      rgb(207, 42, 186) 40%,
      rgb(238, 44, 130) 60%,
      rgb(251, 105, 98) 80%,
      rgb(254, 248, 76) 100%);
  --gradient-blush-light-purple: linear-gradient(135deg,
      rgb(255, 206, 236) 0%,
      rgb(152, 150, 240) 100%);
  --gradient-blush-bordeaux: linear-gradient(135deg,
      rgb(254, 205, 165) 0%,
      rgb(254, 45, 45) 50%,
      rgb(107, 0, 62) 100%);
  --gradient-luminous-dusk: linear-gradient(135deg,
      rgb(255, 203, 112) 0%,
      rgb(199, 81, 192) 50%,
      rgb(65, 88, 208) 100%);
  --gradient-pale-ocean: linear-gradient(135deg,
      rgb(255, 245, 203) 0%,
      rgb(182, 227, 212) 50%,
      rgb(51, 167, 181) 100%);
  --gradient-electric-grass: linear-gradient(135deg,
      rgb(202, 248, 128) 0%,
      rgb(113, 206, 126) 100%);
  --gradient-midnight: linear-gradient(135deg,
      rgb(2, 3, 129) 0%,
      rgb(40, 116, 252) 100%);
}

/* END OF VARIABLES --------------------------------------------- */

/* GLOBAL STYLES ------------------------------------------------ */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

html {
  font-family: "helvetica";
  font-size: 16px;
  background-color: var(--11);
  z-index: -100;
}

body {
  width: 100vw;
  background-color: #171717;
  z-index: -20;
}

section {
  overflow: hidden;
}

h1 {
  font-size: clamp(2.5rem, 12vw, 6rem);
  line-height: 1.25;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 10vw, 5rem);
  line-height: 1.25;
  font-weight: 600;
}

h3 {
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.25;
  font-weight: 600;
}

h4 {
  font-size: clamp(1.75rem, 6vw, 3rem);
  line-height: 1.25;
  font-weight: 600;
}

h5 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.25;
  font-weight: 600;
}

h6 {
  font-size: clamp(1.25rem, 3vw, 1rem);
  line-height: 1.25;
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.75;
  font-weight: 250;
}

li {
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 2;
}

a {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.5;
  list-style: none;
  color: var(--4);
}

a:hover {
  cursor: pointer;
  color: var(--warm2);
}

a:active {
  cursor: pointer;
  color: var(--warm2);
}

.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-r {
  text-align: right;
}

.txt-w {
  color: var(--1);
}

.txt-b {
  color: var(--11);
}

/* COLORED SELECTORS */

p::selection {
  background: transparent;
  color: var(--warm2);
}

a::selection {
  background: transparent;
  color: var(--warm2);
}

h1::selection {
  background: transparent;
  color: var(--success);
}

h2::selection {
  background: transparent;
  color: var(--success);
}

h3::selection {
  background: transparent;
  color: var(--success);
}

h4::selection {
  background: transparent;
  color: var(--success);
}

h5::selection {
  background: transparent;
  color: var(--success);
}

h6::selection {
  background: transparent;
  color: var(--success);
}

ul::selection {
  background: transparent;
  color: var(--alert);
}

ol::selection {
  background: transparent;
  color: var(--alert);
}

li::selection {
  background: transparent;
  color: var(--alert);
}

img::selection {
  background: transparent;
  color: var(--vivid-orange);
}

svg::selection {
  background: transparent;
  color: var(--vivid-orange);
}

/* FLEX ---------------------------------- */

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.f-c {
  justify-content: center;
  align-items: center;
}

.f-l {
  justify-content: center;
  align-items: flex-start;
}

.f-r {
  justify-content: center;
  align-items: flex-end;
}

/* Flex Containers */

.con100 {
  width: 100%;
  flex: 100%;
}

.con50 {
  width: 50%;
  flex: 50%;
}

.con33 {
  width: 30%;
  flex: 30%;
}

.con66 {
  width: 66.6%;
  flex: 66.6%;
}

.con25 {
  width: 25%;
  flex: 25%;
}

.con75 {
  width: 75%;
  flex: 75%;
}

/* Text Align */

.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-r {
  text-align: right;
}

.txt-w {
  color: var(--1);
}

.txt.b {
  color: var(--11);
}

/* BG STYLES ------------------------------------------------ */

.light-bg {
  background-color: var(--1);
  color: var(--11);
}

.dark-bg {
  background-color: var(--11);
  color: var(--3);
  z-index: -5;
}

.dark-contrast-bg {
  background-color: var(--10);
  color: var(--3);
}

.pri-bg {
  background-color: var(--rgbcyan);
  color: var(--3);
}

.sec-bg {
  background-color: var(--warm4);
  color: var(--11);
}

.blue-bg {
  background-color: var(--spectrumpurple);
  color: var(--3);
}

.red-bg {
  background-color: var(--spectrumpurple);
  color: var(--3);
}

.purple-bg {
  background-color: var(--spectrumpurple);
  color: var(--3);
}

.green-bg {
  background-color: var(--spectrumpurple);
  color: var(--3);
}

.orange-bg {
  background-color: var(--spectrumpurple);
  color: var(--3);
}

.yellow-bg {
  background-color: var(--spectrumpurple);
  color: var(--3);
}

.grad-bg-warm {
  background-image: linear-gradient(135deg,
      rgb(255, 245, 203) 0%,
      rgb(182, 227, 212) 50%,
      rgb(51, 167, 181) 100%);
  color: var(--1);
}

.grad-bg-cool {
  background-image: linear-gradient(to top, #1470d3, #7eb3e4);
  color: var(--1);
}

.grad-bg-vivid-cyan-blue-to-vivid-purple {
  background-image: linear-gradient(135deg,
      rgba(6, 147, 227, 1) 0%,
      rgb(155, 81, 224) 100%);
  color: var(--3);
}

.grad-bg-light-green-cyan-to-vivid-green-cyan {
  background-image: linear-gradient(135deg,
      rgb(122, 220, 180) 0%,
      rgb(0, 208, 130) 100%);
  color: var(--3);
}

.grad-bg-luminous-vivid-amber-to-luminous-vivid-orange {
  background-image: linear-gradient(135deg,
      rgba(252, 185, 0, 1) 0%,
      rgba(255, 105, 0, 1) 100%);
  color: var(--3);
}

.grad-bg-luminous-vivid-orange-to-vivid-red {
  background-image: linear-gradient(135deg,
      rgba(255, 105, 0, 1) 0%,
      rgb(207, 46, 46) 100%);
  color: var(--3);
}

.grad-bg-very-light-gray-to-cyan-bluish-gray {
  background-image: linear-gradient(135deg,
      rgb(238, 238, 238) 0%,
      rgb(169, 184, 195) 100%);
  color: var(--3);
}

.grad-bg-cool-to-warm-spectrum {
  background-image: linear-gradient(135deg,
      rgb(74, 234, 220) 0%,
      rgb(151, 120, 209) 20%,
      rgb(207, 42, 186) 40%,
      rgb(238, 44, 130) 60%,
      rgb(251, 105, 98) 80%,
      rgb(254, 248, 76) 100%);
  color: var(--3);
}

.grad-bg-blush-light-purple {
  background-image: linear-gradient(135deg,
      rgb(255, 206, 236) 0%,
      rgb(152, 150, 240) 100%);
  color: var(--3);
}

.grad-bg-blush-bordeaux {
  background-image: linear-gradient(135deg,
      rgb(254, 205, 165) 0%,
      rgb(254, 45, 45) 50%,
      rgb(107, 0, 62) 100%);
  color: var(--3);
}

.grad-bg-luminous-dusk {
  background-image: linear-gradient(135deg,
      rgb(255, 203, 112) 0%,
      rgb(199, 81, 192) 50%,
      rgb(65, 88, 208) 100%);
  color: var(--3);
}

.grad-bg-pale-ocean {
  background-image: linear-gradient(135deg,
      rgb(255, 245, 203) 0%,
      rgb(182, 227, 212) 50%,
      rgb(51, 167, 181) 100%);
  color: var(--11);
}

.grad-bg-electric-grass {
  background-image: linear-gradient(135deg,
      rgb(202, 248, 128) 0%,
      rgb(113, 206, 126) 100%);
  color: var(--10);
}

.grad-bg-midnight {
  background-image: linear-gradient(135deg,
      rgb(2, 3, 129) 0%,
      rgb(40, 116, 252) 100%);
  color: var(--3);
}

/* MAX WIDTHS */

.max-w-xs {
  max-width: 48rem;
  margin: 0 auto;
}

.max-w-s {
  max-width: 62rem;
  margin: 0 auto;
}

.max-w-m {
  max-width: 78rem;
  margin: 0 auto;
}

.max-w-l {
  max-width: 94rem;
  margin: 0 auto;
}

.max-w-xl {
  max-width: 112rem;
  margin: 0 auto;
}

/* MARGINS */

.m-xs {
  margin: clamp(1rem, 2vw, 3.5rem);
}

.m-s {
  margin: clamp(1.25rem, 4vw, 4rem);
}

.m-m {
  margin: clamp(1.5rem, 8vw, 4.5rem);
}

.m-l {
  margin: clamp(1.75rem, 16vw, 5rem);
}

.m-xl {
  margin: clamp(2rem, 32vw, 5.5rem);
}

.v-m-xs {
  margin: clamp(1rem, 2vw, 3.5rem) auto;
}

.v-m-s {
  margin: clamp(1.25rem, 4vw, 4rem) auto;
}

.v-m-m {
  margin: clamp(1.5rem, 8vw, 4.5rem) auto;
}

.v-m-l {
  margin: clamp(1.75rem, 16vw, 5rem) auto;
}

.v-m-xl {
  margin: clamp(2rem, 32vw, 5.5rem) auto;
}

.h-m-xs {
  margin: 0rem clamp(1rem, 2vw, 3.5rem);
}

.h-m-s {
  margin: 0rem clamp(1.25rem, 4vw, 4rem);
}

.h-m-m {
  margin: 0rem clamp(1.5rem, 8vw, 4.5rem);
}

.h-m-l {
  margin: 0rem clamp(1.75rem, 16vw, 5rem);
}

.h-m-xl {
  margin: 0rem clamp(2rem, 32vw, 5.5rem);
}

.t-m-xs {
  margin-top: clamp(1rem, 2vw, 3.5rem);
}

.t-m-s {
  margin-top: clamp(1.25rem, 4vw, 4rem);
}

.t-m-m {
  margin-top: clamp(1.5rem, 8vw, 4.5rem);
}

.t-m-l {
  margin-top: clamp(1.75rem, 16vw, 5rem);
}

.t-m-xl {
  margin-top: clamp(2rem, 32vw, 5.5rem);
}

.b-m-xs {
  margin-bottom: clamp(1rem, 2vw, 3.5rem);
}

.b-m-s {
  margin-bottom: clamp(1.25rem, 4vw, 4rem);
}

.b-m-m {
  margin-bottom: clamp(1.5rem, 8vw, 4.5rem);
}

.b-m-l {
  margin-bottom: clamp(1.75rem, 16vw, 5rem);
}

.b-m-xl {
  margin-bottom: clamp(2rem, 32vw, 5.5rem);
}

.r-m-xs {
  margin-right: clamp(1rem, 2vw, 3.5rem);
}

.r-m-s {
  margin-right: clamp(1.25rem, 4vw, 4rem);
}

.r-m-m {
  margin-right: clamp(1.5rem, 8vw, 4.5rem);
}

.r-m-l {
  margin-right: clamp(1.75rem, 16vw, 5rem);
}

.r-m-xl {
  margin-right: clamp(2rem, 32vw, 5.5rem);
}

.l-m-xs {
  margin-left: clamp(1rem, 2vw, 3.5rem);
}

.l-m-s {
  margin-left: clamp(1.25rem, 4vw, 4rem);
}

.l-m-m {
  margin-left: clamp(1.5rem, 8vw, 4.5rem);
}

.l-m-l {
  margin-left: clamp(1.75rem, 16vw, 5rem);
}

.l-m-l {
  margin-left: clamp(2rem, 32vw, 5.5rem);
}

/* Padding */

.p-xs {
  padding: clamp(1rem, 2vw, 3.5rem);
}

.p-s {
  padding: clamp(1.25rem, 4vw, 4rem);
}

.p-m {
  padding: clamp(1.5rem, 8vw, 4.5rem);
}

.p-l {
  padding: clamp(1.75rem, 16vw, 5rem);
}

.p-xl {
  padding: clamp(2rem, 32vw, 5.5rem);
}

.v-p-xs {
  padding: clamp(1rem, 2vw, 3.5rem) 0;
}

.v-p-s {
  padding: clamp(1.25rem, 4vw, 4rem) 0;
}

.v-p-m {
  padding: clamp(1.5rem, 8vw, 4.5rem) 0;
}

.v-p-l {
  padding: clamp(1.75rem, 16vw, 5rem) 0;
}

.v-p-xl {
  padding: clamp(2rem, 32vw, 5.5rem) 0;
}

.h-p-xs {
  padding: 0rem clamp(1rem, 2vw, 3.5rem);
}

.h-p-s {
  padding: 0rem clamp(1.25rem, 4vw, 4rem);
}

.h-p-m {
  padding: 0rem clamp(1.5rem, 8vw, 4.5rem);
}

.h-p-l {
  padding: 0rem clamp(1.75rem, 16vw, 5rem);
}

.h-p-xl {
  padding: 0rem clamp(2rem, 32vw, 5.5rem);
}

.t-p-xs {
  padding-top: clamp(1rem, 2vw, 3.5rem);
}

.t-p-s {
  padding-top: clamp(1.25rem, 4vw, 4rem);
}

.t-p-m {
  padding-top: clamp(1.5rem, 8vw, 4.5rem);
}

.t-p-l {
  padding-top: clamp(1.75rem, 16vw, 5rem);
}

.t-p-xl {
  padding-top: clamp(2rem, 32vw, 5.5rem);
}

.r-p-xs {
  padding-right: clamp(1rem, 2vw, 3.5rem);
}

.r-p-s {
  padding-right: clamp(1.25rem, 4vw, 4rem);
}

.r-p-m {
  padding-right: clamp(1.5rem, 8vw, 4.5rem);
}

.r-p-l {
  padding-right: clamp(1.75rem, 16vw, 5rem);
}

.r-p-xl {
  padding-right: clamp(2rem, 32vw, 5.5rem);
}

.b-p-xs {
  padding-bottom: clamp(1rem, 2vw, 3.5rem);
}

.b-p-s {
  padding-bottom: clamp(1.25rem, 4vw, 4rem);
}

.b-p-m {
  padding-bottom: clamp(1.5rem, 8vw, 4.5rem);
}

.b-p-l {
  padding-bottom: clamp(1.75rem, 16vw, 5rem);
}

.b-p-xl {
  padding-bottom: clamp(2rem, 32vw, 5.5rem);
}

.l-p-xs {
  padding-left: clamp(1rem, 2vw, 3.5rem);
}

.l-p-s {
  padding-left: clamp(1.25rem, 4vw, 4rem);
}

.l-p-m {
  padding-left: clamp(1.5rem, 8vw, 4.5rem);
}

.l-p-l {
  padding-left: clamp(1.75rem, 16vw, 5rem);
}

.l-p-xl {
  padding-left: clamp(2rem, 32vw, 5.5rem);
}

/* END OF GLOBAL STYLES ----------------------------------------- */

.image-break {
  width: 100vw;
  /* height: 30vh; */
  aspect-ratio: 16/9;
  /* max-width: 1600px; */
  margin: 0 auto;

  background-size: cover;
  background-position: center;
  background-repeat: center;

  z-index: 5;
}

.image-break1 {
  background-image: url(/images/photography/45.jpg);
}

.image-break2 {
  background-image: url(/images/photography/44.jpg);
}

.image-break3 {
  background-image: url(/images/photography/17.jpg);
}

.image-break4 {
  background-image: url(/images/photography/2.jpg);
}

.image-break5 {
  background-image: url(/images/photography/43.jpg);
}

/* .image-break6 {
  background-image: url(/images/photography/44.jpg);
}

.image-break7 {
  background-image: url(/images/photography/48.jpg);
} */


#hero {
  height: 90vh;
  width: 100VW;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  background-image: url(/images/photography/35.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1)
}

#hero img {
  width: 35vw;
  max-width: 500px;
}

#about {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* height: 150vh; */
  background-color: var(--3);
}

.logo-icon {
  height: 100px;
  width: 100px;
  margin: 10vh auto 0 auto;
}

#about h3 {
  letter-spacing: 5px;
}

#about h3,
p {
  text-align: center;
  text-align-last: center;
}

.about-text {
  padding-bottom: 24vmax;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* .about-image-wrap {
  position: relative;
  width: 100%;
} */

.drop-down {
  height: 25px;
  width: 25px;

  margin-bottom: 4vmax;
  filter: opacity(0.7);
}


.linebreak {
  height: 1px;
  width: 50px;
  margin-top: 12vmin;
  background: rgb(197, 197, 197);
}

.break-b {
  height: 75px;
  width: 1px;
  margin: auto;
  margin-bottom: 5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.break-w {
  height: 75px;
  width: 1px;
  margin: auto;
  margin-bottom: 5rem;
  background: linear-gradient(to bottom, rgb(197, 197, 197), rgba(0, 0, 0, 0));
}


.about-texture {
  position: absolute;
  bottom: 0;
  transform: translateY(60%);
  width: 80vw;
  max-width: 1000px;

  filter: opacity(0.05);
  user-select: none;
  -webkit-user-drag: none;
}


#services {
  background-color: #171717;
  color: var(--5);
}

.services-item {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin: 18vmin auto 24vmin auto;
}

.services-item h5 {
  text-transform: uppercase;
  margin: 4vmax auto;
  color: var(--2);
}

.services-item p {
  margin: 0 5vmin;
  max-width: 65ch;
}

.services-item p span {
  font-weight: 600;
}

.services-item ul {
  margin: 8vmin auto;
  text-align: center;
  color: var(--8);
}

.services-item .services-icon {
  height: 75px;
  width: 75px;
  margin: 0 auto;

  filter: opacity(0.6);
}

.services-item-texture {
  position: absolute;
  bottom: 0;
  transform: translateY(80%);
  width: 80vw;
  max-width: 1000px;

  filter: opacity(0.1);
  z-index: 0;
}

.services-button {
  width: 180px;
  height: 60px;
  margin-top: 100px;

  border: none;
  outline: none;
  font-size: 40%;
  color: var(--3);
  background-color: var(--10);
  letter-spacing: 2px;

  z-index: 50;
}

.services-button:hover {
  cursor: pointer;
  background-color: var(--success);
  border: none;
  color: var(--2);
  transform: scale(1.05);
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}





#contact {
  position: relative;
  width: 100vw;
  padding: 16vmin 4vmin;
  overflow: hidden;
  background-color: var(--3);
  color: var(--11);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.texture-icon {
  width: 100px;
  opacity: 0.6;
}

.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#contact h5 {
  color: var(--5);
}

#contact h4 {
  color: var(--8);
  font-size: 20px;
  font-weight: 600;
}

.contact-button {
  width: 250px;
  height: 80px;
  margin: 4vmax auto;
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--3);
  background-color: var(--10);
  letter-spacing: 2px;

  z-index: 50;
}

.contact-button:hover {
  cursor: pointer;
  background-color: var(--success);
  border: none;
  color: var(--1);
  transform: scale(1.05);
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}

.contact-button:active {
  cursor: pointer;
  background-color: var(--success);
  border: 3px solid var(--success);
  transform: scale(1.2);
  transition: 0.5s;
}

.contact-texture {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  width: 80vw;
  max-width: 1000px;

  filter: opacity(0.05);

  z-index: 0;
  user-select: none;
  -webkit-user-drag: none;
}

#footer-image-break {
  width: 100vw;
  height: 140vh;
  background-image: url(/images/photography/31.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: center;
}

#footer {
  width: 100vw;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footer h5 {
  font-size: 0.6rem;
  text-align: center;
  font-weight: 200;
}

#footer h4 {
  font-size: 1rem;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 500;
}

.social-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 300px;
}

.icon {
  width: 2rem;
  cursor: pointer;
  opacity: 0.7;
}

.icon:hover {
  opacity: 1;
  fill: #00a0db;
}

.footer-logo {
  height: 2.5rem;
  margin-bottom: 1rem;
}

.credit {
  opacity: 0.3;
}

.footer-info {}


.services_shadow {
  position: absolute;
  top: -5vw;
  right: -15vw;
  width: 100%;
  z-index: 10;
  pointer-events: none;

  /* background-color: #00a0db; */
}

.services_shadow img {
  animation: shadow1 cubic-bezier(.45, .2, .7, .93) 5s alternate infinite;
  transform-origin: top right;
  width: 100%;
}

@keyframes shadow1 {
  from {
    transform: rotate3d(1, 1, 3, -6deg);
  }

  to {
    transform: rotate3d(2, 0, 3, 6deg);
  }
}












/* ANIMATION */

.hidetop {
  transform: translate3d(0, -4vw, 0);
  opacity: 0;
  transition: all 0.6s ease;
}

.hidetop.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* BOTTOM */

.hidebottom {
  transform: translate3d(0, 4vw, 0);
  opacity: 0;
  transition: all 0.6s ease;
  filter: grayscale(1);
}

.hidebottom.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  filter: grayscale(0);
}

/* RIGHT */

.hideright {
  transform: translate3d(4vw, 0, 0);
  opacity: 0;
  transition: all 0.6s ease;
}

.hideright.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* LEFT */

.hideleft {
  transform: translate3d(-4vw, 0, 0);
  opacity: 0;
  transition: all 0.6s ease;
}

.hideleft.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* FADE IN */

.fadein {
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.6s ease;
}

.fadein.show {
  transform: scale(1);
  opacity: 1;
}

/* Text */

.titletext {
  opacity: 0;
  color: white;
  /* letter-spacing: 1vh; */
  transform: translate3d(-2vw, 0, 0);
  transition: 1s;
}

.titletext.show {
  opacity: 1;
  color: black;
  /* letter-spacing: 0; */
  transform: translate3d(0, 0, 0);
}

/* TRANSITION DELAYS */

.transdel1 {
  transition-delay: 0.1s;
}

.transdel2 {
  transition-delay: 0.2s;
}

.transdel3 {
  transition-delay: 0.3s;
}

.transdel4 {
  transition-delay: 0.4s;
}

.transdel5 {
  transition-delay: 0.5s;
}

.transdel6 {
  transition-delay: 0.6s;
}

.transdel7 {
  transition-delay: 0.7s;
}

.transdel8 {
  transition-delay: 0.8s;
}

.transdel9 {
  transition-delay: 0.9s;
}

.transdel10 {
  transition-delay: 1s;
}

.transdel11 {
  transition-delay: 1.1s;
}

.transdel12 {
  transition-delay: 1.2s;
}

.transdel13 {
  transition-delay: 1.3s;
}

.transdel14 {
  transition-delay: 1.4s;
}

.transdel15 {
  transition-delay: 1.5s;
}

.transdel16 {
  transition-delay: 1.6s;
}

.transdel17 {
  transition-delay: 1.7s;
}

.transdel18 {
  transition-delay: 1.8s;
}

.transdel19 {
  transition-delay: 1.9s;
}

.transdel20 {
  transition-delay: 2s;
}