@charset "utf-8";

/*------------------------------------------------------------------

[Master Stylesheet]

Project: Inview

Version: 2

Primary use: Photography Template

-------------------------------------------------------------------*/

/*----------------------------------------------

{ TABLE OF CONTENTS }

1. General Styles
2. Fonts
3. Misc
4. Section Styles & fade effects
5. Logo
6. Toggle Menu and Overlay Menu Stlyes
7. Menu inside Overlay (.photo-menu)
8. Dotted Menu to Navigate Between Sections
9. Contact Button and Form
10. Next and Previous Section Buttons
11. Section Titles
12. Home Section
13. Mouse in Header
14. About Section
15. Photo Section Elements and Bg Images
16. md-modal
17. Light Theme
18. Options Panel
19. Media Queries

----------------------------------------------*/

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* ---------------------------------------------

General Styles

------------------------------------------------*/
html,
body {
  font-family: "Lato", Arial, sans-serif;
  color: #000;
  background: #000;
  font-size: 14px;
  cursor: default;
  height: 100%;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 3px;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 300;
}

p {
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 2;
  margin: 0;
  color: #000;
  font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

button {
  border: 0;
  outline: 0 !important;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a,
a:hover,
a:focus,
a:active {
  cursor: pointer;
  outline: 0 !important;
  text-decoration: none !important;
}

section {
  overflow: hidden;
}

ul {
  list-style: none;
}

i {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "lato", Arial, sans-serif;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
input:focus:-ms-input-placeholder {
  color: transparent;
}

/* IE 10+ */
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
textarea:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

select {
  text-transform: uppercase;
}

form {
  clear: both;
  display: table;
  content: "";
}

header {
  position: relative;
}

header {
  overflow: hidden;
}

section {
  position: relative;
}

video {
  height: 100%;
}

canvas {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

::selection {
  background: #0e0e0e;
  color: #fff;
}
::-moz-selection {
  background: #0e0e0e;
  color: #fff;
}

div::-webkit-scrollbar-track {
  width: 0px;
  background-color: rgba(0, 0, 0, 0.2);
}

div::-webkit-scrollbar {
  width: 0px;
  background-color: rgba(0, 0, 0, 0.01);
}

div::-webkit-scrollbar-thumb {
  width: 0px;
  background-color: rgba(0, 0, 0, 0.8);
}

#fullpage .section-title {
    opacity: 1;
}

/* ---------------------------------------------

Font

------------------------------------------------*/
.home-section h1,
.section-title h2,
.photo-desc h3,
.photo-menu .side-info h4,
.photo-menu .side-info a,
.success-content h1 {
  font-family: "Open Sans Condensed", sans-serif;
}

.overlay.open {
  /* opacity: 0 !important; */
}

.photo-list {
  background: none !important;
}

.photo-menu .side-info {
  opacity: 1;
}
/* ---------------------------------------------

Miscellaneous

------------------------------------------------*/
.page-wrapper {
  height: 100%;
  overflow: hidden;
}

/*adds a subtle background gradient for elements on bottom of sections*/
.section:after {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}

/*hide dotted nav*/
.hide-dots #fp-nav {
  display: none;
}

/*fade animations on slide load*/
.fadeup {
  opacity: 0;
  transition-property: all;
  transition-duration: 1s;
  transition-timing-function: ease;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.section.active .fadeleft,
.section.active .fadeup {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.fadeleft {
  opacity: 0;
  transition-property: all;
  transition-duration: 1s;
  transition-timing-function: ease;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.fadeleft:nth-child(1) {
  transition-delay: 1s;
}
.fadeleft:nth-child(2) {
  transition-delay: 1.1s;
}
.fadeleft:nth-child(3) {
  transition-delay: 1.125s;
}
.fadeleft:nth-child(4) {
  transition-delay: 1.25s;
}
.fadeleft:nth-child(5) {
  transition-delay: 1.275s;
}
.fadeleft:nth-child(6) {
  transition-delay: 1.3s;
}
.fadeleft:nth-child(7) {
  transition-delay: 1.325s;
}
.fadeleft:nth-child(8) {
  transition-delay: 1.35s;
}
.fadeleft:nth-child(9) {
  transition-delay: 1.375s;
}
.fadeleft:nth-child(10) {
  transition-delay: 1.4s;
}
.fadeleft:nth-child(11) {
  transition-delay: 1.425s;
}
.fadeleft:nth-child(12) {
  transition-delay: 1.45s;
}

/* ---------------------------------------------

Logo and Uppper Nav Bar

------------------------------------------------*/
/*logo*/
.logo {
  position: relative;
  line-height: 80px;
  height: 28px;
  width: auto;
  display: inline-block;
  margin: 0;
}

.logo img {
  height: 100%;
  width: auto;
}

.logo img.light {
  display: inline-block;
}

.logo img.dark {
  display: none;
}

.light .logo img.light {
  display: none;
}

.light .logo img.dark {
  display: inline-block;
}

.upper-nav {
  position: fixed;
  z-index: 999;
  width: 100%;
  line-height: 70px;
  padding: 40px 40px 0 40px;
}

/* ---------------------------------------------

Toggle Menu and Overlay Styles (container that holds the photo menu)

------------------------------------------------*/
/*menu toggle*/
.toggle-menu {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  z-index: 9999;
  background: transparent;
  overflow: visible;
  padding: 0;
  top: 0;
  right: 0;
  margin: 30px;
}

.toggle-menu div {
  position: absolute;
  height: 22px;
  width: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.toggle-menu div svg {
  position: absolute;
  left: 3px;
}

.toggle-menu em {
  opacity: 1;
  height: 4px;
  width: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  display: block;
  background: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.toggle-menu em:nth-child(1) {
  top: 0px;
}

.toggle-menu em:nth-child(2) {
  top: 9px;
}

.toggle-menu em:nth-child(3) {
  top: 18px;
}

/*overlay menu*/
.overlay {
  position: fixed;
  height: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
}

/*styles after menu opens*/
.overlay.open ~ .toggle-menu em {
  position: absolute;
  top: 50%;
  left: 0%;
  margin: 0;
}

.overlay.open {
  visibility: visible;
  opacity: 1;
}

.toggle-menu em,
.overlay.open .toggle-menu,
.overlay {
  -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

/*rotates the hamburger menu elements*/
.menu.open ~ .upper-nav .toggle-menu em:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu.open ~ .upper-nav .toggle-menu em:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
}

.menu.open ~ .upper-nav .toggle-menu em:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------------------------------------------

Menu

------------------------------------------------*/
/*photo menu*/
.photo-menu {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.photo-list {
  overflow: auto;
  float: left;
  padding: 0;
  width: 70%;
  height: 100%;
  background: #000;
}

.photo-menu .photo-list a {
  padding: 0;
  overflow: hidden;
  float: left;
  position: relative;
}

.photo-menu .img-link {
  width: 33.33333%;
}

.photo-menu .photo-list .img-box {
  opacity: 0;
  transition-property: all;
  transition-duration: 1s;
  transition-timing-function: ease;
  transform: translateY(100%);
}

.open.photo-menu .photo-list .img-box {
  opacity: 1;
  transform: none;
}

.open.photo-menu .photo-list a:nth-child(1) .img-box {
  transition-delay: 0.025s;
}
.open.photo-menu .photo-list a:nth-child(2) .img-box {
  transition-delay: 0.05s;
}
.open.photo-menu .photo-list a:nth-child(3) .img-box {
  transition-delay: 0.075s;
}
.open.photo-menu .photo-list a:nth-child(4) .img-box {
  transition-delay: 0.1s;
}
.open.photo-menu .photo-list a:nth-child(5) .img-box {
  transition-delay: 0.125s;
}
.open.photo-menu .photo-list a:nth-child(6) .img-box {
  transition-delay: 0.15s;
}
.open.photo-menu .photo-list a:nth-child(7) .img-box {
  transition-delay: 0.175s;
}
.open.photo-menu .photo-list a:nth-child(8) .img-box {
  transition-delay: 0.2s;
}
.open.photo-menu .photo-list a:nth-child(9) .img-box {
  transition-delay: 0.225s;
}
.open.photo-menu .photo-list a:nth-child(10) .img-box {
  transition-delay: 0.25s;
}
.open.photo-menu .photo-list a:nth-child(11) .img-box {
  transition-delay: 0.275s;
}
.open.photo-menu .photo-list a:nth-child(12) .img-box {
  transition-delay: 0.3s;
}
.open.photo-menu .photo-list a:nth-child(13) .img-box {
  transition-delay: 0.325s;
}
.open.photo-menu .photo-list a:nth-child(14) .img-box {
  transition-delay: 0.35s;
}
.open.photo-menu .photo-list a:nth-child(15) .img-box {
  transition-delay: 0.375s;
}
.open.photo-menu .photo-list a:nth-child(16) .img-box {
  transition-delay: 0.4s;
}
.open.photo-menu .photo-list a:nth-child(17) .img-box {
  transition-delay: 0.425s;
}
.open.photo-menu .photo-list a:nth-child(18) .img-box {
  transition-delay: 0.45;
}

.photo-menu .photo-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 233px 45px rgba(0, 0, 0, 0.6);
  z-index: 11;
}

.photo-list {
  display: none;
}

.photo-menu a img {
  width: 100%;
  opacity: 0.4;
  transition: all 1s ease;
  -webkit-transform: none;
  transform: none;
}

.photo-menu a:hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}



.side-info #cities-box .cities-main input {
  width: 100%;
  padding: 8px 48px;
  border-radius: 30px;
  border: 1px solid #fff;
  outline: none;
  color: #293239;
}


.w-180px {
  width: 180px;
}

.fl-colum {
  flex-direction: column;
  display: flex;
}





@media screen and (max-width: 1200px) {
  #fullpage .fp-tableCell {
    height: 100% !important;
    vertical-align: unset !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1999px) {
  #fullpage .box-show-video {
    /*width: calc((100vh * 16) / 9);*/
    /*height: 100vh;*/
    /*pointer-events: none;*/
    /*margin-top: -0px;*/
    /*margin-left: 50%;*/
    /*transform: translate3d(-50%, 0, 0);*/
    width: 100%;
    height: calc((100vw * 9) / 16);
    margin: 0;
    padding: 0;
    pointer-events: none;
    /* margin-top: -70px; */
    max-width: none !important;
    position: relative;
    z-index: -999;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
  }
}

@media screen and (min-width: 2000px) {
  #fullpage .box-show-video {
    width: 100%;
    height: calc((100vw * 9) / 16);
    margin: 0;
    padding: 0;
    pointer-events: none;
    /* margin-top: -70px; */
    max-width: none !important;
    position: relative;
    z-index: -999;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
  }
}



.box-show-video iframe {
  width: 300%;
  height: 100%;
  margin-left: -100%;
}

#list-cities {
  margin: 20px 0;
  background-color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 10px 0;
  height: 15rem;
  overflow: auto;
}

.info-source {
  width: 100%;
}

.info-source a {
  font-size: 20px !important;
}

@media screen and (max-width: 2000px) {
  .side-info #cities-box .cities-main {
    height: 100%;
    margin: 10px 0 !important;
  }

  .side-info .center-box {
    padding: 5px 0;
  }

  .info-source ul li a {
    font-size: 0.75rem !important;
  }

  .info-source {
    margin-top: 10px;
  }

  .photo-menu .side-info .info-footer {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .upper-nav a.logo {
    display: none;
  }

  .info-source ul li a {
    font-size: 0.625rem !important;
  }

  .info-source {
    top: 81% !important;
  }

  .photo-menu .side-info .info-footer {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  iframe#player {
    transform: scale(1.1);
  }
}

#list-cities .city-item {
  text-align: left;
  padding: 8px 10px;
}

#list-cities .city-item span {
  color: #000 !important;
}

#form-search-cities {
  position: relative;
}

.filter-placeholder {
  position: absolute;
  top: 8px;
  left: 19px;
}

.filter-placeholder::after {
  top: -8px;
  left: 30px;
  content: "";
  position: absolute;
  height: 40px;
  border-right: 1px solid #333;
}

.animated-border {
  position: relative;
  display: inline-block;
  color: #333;
  text-decoration: none;
  padding-bottom: 5px;
}

.animated-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #333;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.animated-border:hover::after {
  width: 100%;
  left: 0;
  transform: translateX(0);
}

.animated-border:hover {
  cursor: pointer;
}

.side-info .line-row {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
}


.side-info .info-centered img {
  object-fit: contain;
  opacity: 1 !important;
}





/* ---------------------------------------------

Dotted Menu to Navigate Between Sections

------------------------------------------------*/
.fp-section {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.fp-section.active {
  opacity: 1;
  z-index: 1;
}

#fp-nav {
  width: 70px;
  left: 40px !important;
  position: fixed;
  z-index: 99;
  margin-top: 0 !important;
  top: 50%;
  height: auto;
  opacity: 1;
  background: transparent;
  -webkit-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
}

#fp-nav ul {
  width: 100%;
  width: 70px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.1s ease-out !important;
  transition: all 0.1s ease-out !important;
}

#fp-nav ul li,
.fp-slidesNav ul li {
  margin: 10px 0 !important;
  width: 100%;
  height: 2px;
  overflow: hidden;
  -webkit-transition: all 0.8s ease-out !important;
  transition: all 0.8s ease-out !important;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 0 !important;
  left: 0;
  height: 100%;
  margin: 0;
  top: 0;
  width: 45px;
  background: #fff;
}

#fp-nav ul li a.active,
.fp-slidesNav ul li a.active {
  height: 100%;
  opacity: 1;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  width: 100%;
  margin: 0;
  height: 100%;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  height: 100%;
  width: inherit;
  margin: 0;
}
/* ---------------------------------------------

Contact Button and Form

------------------------------------------------*/
/*contact me button*/
.contact-btn {
  position: fixed;
  top: 57px;
  color: #fff;
  right: 130px;
  z-index: 999;
  border-radius: 100px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 0 15px;
  line-height: 38px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.08);
}

.contact-btn:after {
  position: absolute;
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  left: calc(100% + 1px);
  width: 20px;
  top: 18px;
}

/*contact form*/
.contact-form {
  width: 100%;
}

.contact-form .field {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 1);
  margin-bottom: 20px;
  padding: 20px 0;
  outline: none;
  font-size: 26px;
}

.input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form .submit-btn {
  font-size: 16px;
  background: rgba(0, 0, 0, 0.29);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 0;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  border: none !important;
}

/*keeps the close button on contact overlay on top/right*/
/*contact form elements*/
.contact .md-close,
.about-modal .md-close {
  left: auto !important;
  right: 0 !important;
  height: 80px;
  line-height: 80px;
  text-align: center;
  transform: none;
  top: 0 !important;
}

.contact .md-close:after,
.about-modal .md-close:after {
  font-size: 50px;
}
/* ---------------------------------------------

Next and Previous Section Buttons

------------------------------------------------*/
.next-prev {
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 20px;
}

.next-prev a {
  color: #fff;
}

.next-prev i:before {
  font-size: 64px;
}

/* ---------------------------------------------

Section Titles

------------------------------------------------*/


.section-title h2 {
  font-size: 32px;
  color: #fff;
}

.section-title p {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.section-title a {
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-title a i {
  font-size: 24px;
  display: inline-block;
}

.section-title a span:not(.sl-wrapper) {
  position: absolute;
  bottom: calc(100% + 20px);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 5px 0px;
  display: inline-block;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 4px;
  font-weight: 600;
  opacity: 0;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
  width: 120px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
}

/*arrow under the read more tooltip*/
.section-title a span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #ffffff transparent transparent transparent;
}

/*makes the tooltip appear*/
.section-title a:hover span {
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  opacity: 1;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  visibility: visible;
}

/* ---------------------------------------------

Home Section

------------------------------------------------*/
.home-section {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.3) !important;
}
.home-section h1 {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  font-size: 80px;
  text-shadow: 0px 0px 100px #000;
}

.home-section .social-links {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

.home-section .social-links a {
  color: #fff;
  padding: 0 10px;
}

.home-section .social-links a:first-child {
  padding-left: 0;
}

/* ---------------------------------------------

Mouse in Header

------------------------------------------------*/
.mouse-box {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mouse {
  display: inline-block;
  height: 44px;
  width: 27px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-align: center;
}
.mouse:after {
  display: inline-block;
  height: 8px;
  width: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  content: "";
  -webkit-animation: scroll 1.3s ease-out infinite forwards;
  -moz-animation: scroll 1.3s ease-out infinite forwards;
  animation: scroll 1.3s ease-out infinite forwards;
}

/*mouse scroll down*/
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes scroll {
  0% {
    -moz-transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ---------------------------------------------

About

------------------------------------------------*/
.about-modal p {
  font-size: 16px;
  letter-spacing: 0.7px;
  color: #fff;
}

/* ---------------------------------------------

Photo Section Elements and Bg Images

------------------------------------------------*/
.photo-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 250px 0 rgba(0, 0, 0, 0.7);
}

/*classes to add a background on the sections*/
.bg-img-1 {
  background-image: url(../images/bg-imgs/bg-img-1.jpg) !important;
}
.bg-img-2 {
  background-image: url(../images/bg-imgs/bg-img-2.jpg) !important;
}
.bg-img-3 {
  background-image: url(../images/bg-imgs/bg-img-3.jpg) !important;
}
.bg-img-4 {
  background-image: url(../images/bg-imgs/bg-img-4.jpg) !important;
}
.bg-img-5 {
  background-image: url(../images/bg-imgs/bg-img-5.jpg) !important;
}
.bg-img-6 {
  background-image: url(../images/bg-imgs/bg-img-6.jpg) !important;
}
.bg-img-7 {
  background-image: url(../images/bg-imgs/bg-img-7.jpg) !important;
}
.bg-img-8 {
  background-image: url(../images/bg-imgs/bg-img-8.jpg) !important;
}
.bg-img-9 {
  background-image: url(../images/bg-imgs/bg-img-9.jpg) !important;
}
.bg-img-10 {
  background-image: url(../images/bg-imgs/bg-img-10.jpg) !important;
}
.bg-img-11 {
  background-image: url(../images/bg-imgs/bg-img-11.jpg) !important;
}
.bg-img-12 {
  background-image: url(../images/bg-imgs/bg-img-12.jpg) !important;
}
.bg-img-13 {
  background-image: url(../images/bg-imgs/bg-img-13.jpg) !important;
}
.bg-img-14 {
  background-image: url(../images/bg-imgs/bg-img-14.jpg) !important;
}
.bg-img-15 {
  background-image: url(../images/bg-imgs/bg-img-15.jpg) !important;
}
.bg-img-16 {
  background-image: url(../images/bg-imgs/bg-img-16.jpg) !important;
}
.bg-img-17 {
  background-image: url(../images/bg-imgs/bg-img-17.jpg) !important;
}
.bg-img-18 {
  background-image: url(../images/bg-imgs/bg-img-18.jpg) !important;
}
.bg-img-19 {
  background-image: url(../images/bg-imgs/bg-img-19.jpg) !important;
}
.bg-img-20 {
  background-image: url(../images/bg-imgs/bg-img-20.jpg) !important;
}
.bg-img-21 {
  background-image: url(../images/bg-imgs/bg-img-21.jpg) !important;
}
.bg-img-22 {
  background-image: url(../images/bg-imgs/bg-img-22.jpg) !important;
}
.bg-img-23 {
  background-image: url(../images/bg-imgs/bg-img-23.jpg) !important;
}
.bg-img-24 {
  background-image: url(../images/bg-imgs/bg-img-24.jpg) !important;
}
.bg-img-25 {
  background-image: url(../images/bg-imgs/bg-img-25.jpg) !important;
}
.bg-img-26 {
  background-image: url(../images/bg-imgs/bg-img-26.jpg) !important;
}

/* likes on photo */
.photo-section .likes {
  position: absolute;
  left: 40px;
  bottom: 0px;
  z-index: 99;
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.photo-section .likes span {
  margin-left: 8px;
  position: relative;
  bottom: 0;
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 0.5px;
  padding: 0;
  display: inline-block;
  left: 0;
  -webkit-transform: none;
  transform: none;
  border-radius: 0;
  font-weight: 400;
  opacity: 1;
  background: transparent;
  color: inherit;
  transition: all 0.3s ease;
  width: auto;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  visibility: visible;
}

.photo-section .likes span:after {
  content: none;
}

/*transition delay to section title content*/
a.fadeup {
  transition-delay: 0.4s;
}
p.fadeup {
  transition-delay: 0.6s;
}
h2.fadeup {
  transition-delay: 0.8s;
}

/* ---------------------------------------------

md-modal

------------------------------------------------*/
.md-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999999999;
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.md-modal.md-show {
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
}

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}

/* Content styles */
.md-content {
  color: #fff;
  position: absolute;
  border-radius: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.md-close {
  color: #fff;
  opacity: 1;
  position: absolute;
  width: 80px;
  z-index: 9999999;
  height: 80px;
  text-align: center;
  line-height: 80px;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0;
  bottom: 40px;
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.md-close:hover {
  color: #fff;
}

.md-close:after {
  content: "\e680";
  font-size: 80px;
  font-family: "Pe-icon-7-stroke";
}

.md-show.md-effect .md-content {
  opacity: 1;
}
.md-show.md-effect .md-close {
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
}

/*elements inside the photo modal*/
.photo-desc .md-content {
  text-align: center;
  margin: 0 auto;
}

.photo-desc h3 {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
}

.photo-desc p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.photo-desc .share-photo a {
  margin: 0 5px;
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: inline-block;
  line-height: 48px;
}

/*appearance after modal opens*/
.md-show.photo-desc h3,
.md-show.photo-desc p,
.md-show.photo-desc .share-photo {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

/*effect for photo description items to appear*/
.photo-desc h3,
.photo-desc p,
.photo-desc .share-photo {
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}

.photo-desc h3 {
  transition-delay: 0s;
}

.photo-desc p {
  transition-delay: 0.1s;
}

.photo-desc .share-photo {
  transition-delay: 0.2s;
}

/*makes ui disapear with modal is active*/
.md-show ~ .fullpage .section .section-title,
.md-show ~ .fullpage .section .likes,
.md-show ~ .fullpage .section.home-section h1,
.md-show ~ .fullpage .section.home-section .mouse,
.md-show ~ .fullpage .section .social-links,
.md-show ~ .upper-nav,
.md-show ~ .next-prev,
.open ~ .fullpage .section .section-title,
.open ~ .fullpage .section .likes,
.open ~ .fullpage .section.home-section h1,
.open ~ .fullpage .section.home-section .mouse,
.open ~ .fullpage .section .social-links,
.open ~ .logo,
.open ~ .contact-btn,
.open ~ .next-prev,
.md-opened #fp-nav {
  opacity: 0;
}

/* ---------------------------------------------

Form Success Page

------------------------------------------------*/
.success .main-content {
  opacity: 1 !important;
}

.success-content {
  text-align: center;
}
.success-content h1 {
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 48px;
}

.success-content span {
  display: block;
  font-size: 24px;
  font-weight: 100;
  margin-top: 13px;
  letter-spacing: 1px;
}

.success-content img {
  width: 70px;
  margin: 0 auto 40px;
  display: block;
}

.success-content .button-home {
  margin-top: 45px;
  padding: 11px 24px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ---------------------------------------------

Light Theme Styles

------------------------------------------------*/
body.flat.light,
.light.flat header:after,
.light.flat .section-title,
.light.flat .upper-nav,
.light.flat #fp-nav ul li a,
.light.flat .fp-slidesNav ul li a,
.light.flat .md-close {
  background: #fff;
}

.light.flat .section-title h2,
.light.flat .section-title p,
.light.flat .section-title i,
.light.flat .section-title span,
.light.flat .contact-btn,
.light.flat .next-prev a,
.light.flat #fp-nav ul li a span:before,
.light.flat .social-links a,
.light.flat .md-close {
  color: #000 !important;
}

.light.flat .section-title p:after,
.light.flat .toggle-menu em,
.light.flat #fp-nav ul li a.active,
.light.flat .fp-slidesNav ul li a.active {
  background: #000 !important;
}

.light.flat #fp-nav ul li a.active span:before {
  color: #fff !important;
}

.light.flat .contact-btn,
.light.flat .social-links,
.light.flat .section-title a.likes,
.light.flat .next-prev a:first-child {
  background: #efefef;
}

.light.flat .toggle-menu,
.light.flat .section-title a,
.light.flat .next-prev a:last-child {
  background: #e0e0e0;
}

.light.flat .social-links {
  background: #efefef;
}

/* ---------------------------------------------

Options Panel

------------------------------------------------*/
.options {
  z-index: 999;
  position: fixed;
  right: 0;
  top: 80px;
  width: 300px;
  background: #121212;
  bottom: 65px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
}

.options.opt-open {
  -webkit-transform: none;
  transform: none;
}

.top-menu .options {
  top: 80px;
}

.toggle-options {
  left: -60px;
  display: block;
  position: absolute;
  font-size: 24px;
  color: #000;
  width: 55px;
  height: 55px;
  border-radius: 5px;
  text-align: center;
  line-height: 53px;
  background: #ffffff;
  top: 40px;
}

.toggle-options:before {
  content: "\e666";
  font-family: "Pe-icon-7-stroke";
}

.options.opt-open .toggle-options:before {
  content: "\e680";
  font-size: 38px;
  font-family: "Pe-icon-7-stroke";
}

.toggle-options:after {
  position: absolute;
  content: "";
  left: 100%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.toggle-options:hover,
.toggle-options:focus {
  color: #000;
}

.options .inner {
  text-align: center;
  height: 90%;
  width: 90%;
  padding: 20px;
  overflow-y: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.options .opt {
  padding: 10px;
  border: 1px solid #444;
  margin-bottom: 30px;
}

.options .inner h5 {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 40px;
}

.options .inner h6 {
  color: #f8f8f8;
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 10px;
  display: table;
  padding: 8px 24px;
  border: 1px solid #444;
  background: #121212;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto 2px;
}

.options .inner span {
  display: inline-block;
  color: #ccc;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 4px;
  letter-spacing: 0.8px;
}

.options .inner p {
  color: #9c9c9c;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 400;
  margin-top: 10px;
}

.options .inner img {
  width: 100%;
}

.switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 34px;
  margin: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* Hide default HTML checkbox */
.switch input {
  display: none;
}

.switch input:checked + .slider {
  background-color: #3f3f3f;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #000;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*=============================================
Media Queries
===============================================*/
@media (max-width: 1200px) {
  .side-info,
  .photo-list,
  .photo-list a {
    width: 50% !important;
  }
}

@media (max-width: 992px) {
  .mouse-box {
    display: none;
  }
  .social-links {
    margin: 0 0 40px 0 !important;
    text-align: center;
    width: 100%;
    right: auto;
    left: 0 !important;
  }
  #fp-nav {
    display: none;
  }
  .md-close {
    height: 50px;
    width: 50px;
    line-height: 50px;
    bottom: 20px;
  }
  .md-close:after {
    font-size: 50px;
  }
  .photo-list a {
    width: 100% !important;
  }

  .contact .md-close {
    -webkit-transform: none !important;
    transform: none !important;
    top: 0;
    right: 0;
  }

  .home-section h1 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .toggle-menu {
    margin: 20px;
  }

  .upper-nav {
    padding: 0;
    padding-left: 20px;
    line-height: 110px;
  }

  .flat .logo {
    margin: 0;
  }

  .home-section h1 {
    font-size: 32px;
  }

  .side-info {
    background: #000 !important;
  }

  .open ~ .logo {
    opacity: 1 !important;
  }

  .side-info {
    height: auto !important;
    position: relative !important;
  }
  
  

  .photo-menu .side-info .info-footer {
    /* position: relative; */
    /* padding: 0 0 40px 0; */
  }
  .contact-btn {
    top: 150px;
    right: -6px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .contact-btn:after {
    right: calc(100% + 1px);
    left: auto;
  }

  .side-info,
  .photo-list,
  .photo-list a {
    width: 100% !important;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 11px;
  }

  .photo-desc h3 {
    font-size: 32px;
  }
  .photo-desc p {
    font-size: 14px;
  }
  .photo-desc .share-photo a {
    font-size: 14px;
    height: 35px;
    width: 35px;
    line-height: 33px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .field input:focus {
    outline: 0;
  }

  .scroll-info {
    display: none;
  }

  .toggle-options {
    top: auto;
    bottom: 40px;
  }
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  color: #fff;
}
