/*
Theme Name: Fifty
Theme URI: https://niteothemes.com/cmp-coming-soon-maintenance/?theme=fifty
Author: NiteoThemes
Author URI: https://niteothemes.com
Version: 4.6

Fifty CMP Theme, Copyright 2018 NiteoThemes
Fifty CMP Theme is distributed under the terms of the GNU GPL

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl.html

All used scripts are distributed under the terms of the GNU GPL v2 or later or under MIT license. 
Bundled images are distributed under the terms of the GNU GPL v2 or later or under MIT license or Unsplash license.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normaalize.css/
*/

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*--------------------------------------------------------------
# ScrollBar
--------------------------------------------------------------*/

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.8);
  border: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

::-webkit-scrollbar-track {
  background: rgba(170, 170, 170, 0.8);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 2.8em;
  margin-bottom: .3em;
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
}

textarea {
  overflow: auto;
  padding: 0;
  border-radius: 5px;
  text-indent: 5px;
  width: 100%;
}

input, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.content-wrapper {
  width: 50%;
}

.lang-switch-wrapper {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 100;
}

.content-wrapper.overflow {
  overflow-y: auto;
  min-height: 100vh;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.content-inner {
  margin: auto;
  width: 100%;
  text-align: center;
  max-width: 720px;
  padding: 0 2em;
  box-sizing: border-box;
}

.logo-wrapper {
  padding-top: 1.5em;
  margin-bottom: 3em;
}

.logo-wrapper img {
  max-width: 350px;
  max-height: 350px;
  margin: 0 auto;
}

.text-logo {
  font-size: 2em;
}

.content p {
  max-width: 600px;
  margin: 1em auto;
  padding: 0 1em;
  margin-bottom: 0;
  opacity: .9;
}

#background-wrapper, #background-image, #background-color, .slide-background, #slider-wrapper, .background-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.video-banner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

#slider-wrapper, #background-wrapper {
  z-index: -1;
  min-height: 100vh;
}

.full-background_opacity #slider-wrapper, .full-background_opacity #background-wrapper {
  z-index: 0;
}

#background-wrapper {
  overflow: hidden;
}

#background-image, .slide-background {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#background-image {
  z-index: -1;
}

#background-image, #slider-wrapper {
  opacity: 0;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}

#background-image.loaded, .loaded #slider-wrapper {
  opacity: 1;
}

.video-banner iframe, .video-banner video {
  -o-transition: opacity 1500ms;
  transition: opacity 1500ms;
}

#background-image.pattern {
  background-repeat: repeat;
  background-size: initial;
}

/* slick slider */

.slick-slide {
  display: block!important;
  min-height: 100vh!important;
  position: relative;
  height: 100%;
}

.slick-list, .slick-slider, .slick-track {
  height: 100%;
}

.prev, .next {
  display: block;
  position: absolute;
  bottom: 15px;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
  line-height: 43px;
  text-align: center;
  cursor: pointer;
  opacity: .5;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 100;
}

.prev {
  right: 60px;
}

.next {
  right: 15px;
}

.prev::before, .next::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
  border-right: 2px solid white;
  border-top: 2px solid white;
}

.prev::before {
  left: 4px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.next::before {
  left: -4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.next:hover, .prev:hover {
  opacity: .8;
}

/* uncover slice slider */

.uncover {
  overflow: hidden;
  background-image: none !important;
}

.uncover__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

.uncover__slices {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}

.uncover__slices--vertical {
  flex-direction: row;
}

.uncover__slices--horizontal {
  flex-direction: column;
}

.uncover__slices--horizontal-double {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
}

.uncover__slices--vertical-double {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 50% 50%;
  grid-template-rows: 50% 50%;
}

.uncover__slice {
  color: #fff;
  background-color: #fff;
  flex: 1;
}

.uncover__slices--vertical .uncover__slice {
  box-shadow: 1px 0 0 #fff;
}

.uncover__slices--horizontal .uncover__slice {
  box-shadow: 0 1px 0 #fff;
}

.slides {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: auto;
  pointer-events: none;
}

.effect-slice .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.effect-slice .slide--current {
  opacity: 1;
}

.slide__img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

.pagination {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  color: white;
}

.pagination__item--current {
  color: red;
}

.social-list {
  display: inline-block;
  padding: 0;
  margin-bottom: 0;
}

.social-list li {
  list-style: none;
  display: inline-block;
  padding: 0 2px;
  text-align: center;
}

.social-body {
  margin-top: 2em;
}

.ocial-body li {
  padding: 0 10px;
}

.social-list a {
  display: block;
  height: 2em;
  width: 2em;
  line-height: 2em;
  background: transparent;
}

.social-list i {
  font-size: 1em;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  vertical-align: middle;
  opacity: 1;
}

.vertical .social-list a:hover i {
  -webkit-animation: spin 300ms linear;
  animation: spin 300ms linear;
  opacity: 1;
}

.social-body a {
  height: 3em;
  width: 3em;
  line-height: 3em;
}

.social-body i {
  font-size: 2em;
}

.social-footer {
  text-align: center;
}

.fa-facebook {
  color: #3b5998;
}

.fa-google-plus {
  color: #dd4b39;
}

.fa-twitter {
  color: #1da1f2;
}

.fa-instagram {
  color: #cd486b;
}

.fa-skype {
  color: #00aff0;
}

.fa-500px {
  color: #0099e5;
}

.fa-deviantart {
  color: #05cc47;
}

.fa-behance {
  color: #1769ff;
}

.fa-dribbble {
  color: #ea4c89;
}

.fa-pinterest {
  color: #bd081c;
}

.fa-linkedin {
  color: #0077b5;
}

.fa-tumblr {
  color: #35465c;
}

.fa-youtube {
  color: #cd201f;
}

.fa-vimeo {
  color: #1ab7ea;
}

.fa-flickr {
  color: #0063dc;
}

.fa-vk {
  color: #45668e;
}

.fa-envelope-o {
  color: #2c2b2b;
}

.fa-soundcloud {
  color: #ff7700;
}

.fa-whatsapp {
  color: #075e54;
}

.fa-phone {
  color: #2c2b2b;
}

.content .copyright {
  margin: .5em 0;
  margin-bottom: 1em;
  opacity: .7;
  font-size: 0.9em;
  text-align: center;
  max-width: 100%;
}

form.cmp-subscribe {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 3em;
}

.cmp-subscribe label {
  display: block;
  margin: 0 auto;
  padding-bottom: 5px;
  font-size: .8em;
  opacity: .8;
  text-align: left;
  text-indent: 16px;
}

.cmp-subscribe input {
  width: calc(100% - 6px);
  background-color: #eaeaea;
  text-indent: 15px;
  /* font-style: italic; */
  border: none;
  border-radius: 5px;
  display: inline-block;
  line-height: 3em;
  height: 3em;
  margin-bottom: 10px;
  box-sizing: border-box;
  vertical-align: middle;
}

.cmp-subscribe input[type="email"], .cmp-subscribe input[type="submit"] {
  display: inline-block;
  line-height: 3em;
  height: 3em;
  box-sizing: border-box;
  vertical-align: middle;
}

.cmp-subscribe input[type="email"] {
  background-color: rgba(234, 234, 234, 0.7);
  border: 1px solid #eaeaea;
  text-indent: 15px;
  font-style: italic;
}

.cmp-subscribe input[type="email"] {
  width: 70%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

input:focus {
  outline: none;
}

.cmp-subscribe input[type="submit"] {
  padding: 0;
  width: calc(30% - 5px);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  text-indent: 0;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

.cmp-subscribe input[type="submit"] {
  margin-left: -5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.subsribe-response {
  padding: 5px;
  font-size: .8em;
  text-align: center;
}

/* wpcf7-form */

/* contact form 7 */

.wpcf7 .screen-reader-response, .wpcf7 .wpcf7-validation-errors {
  display: none!important;
}

.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-form .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -21px;
  left: 0px;
  text-align: left;
  font-size: 0.7em;
}

div.wpcf7-mail-sent-ng {
  border: none;
}

div.wpcf7-response-output {
  border: none;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# SKEW
--------------------------------------------------------------*/

body.skew {
  overflow: hidden;
}

.skew .content-wrapper {
  z-index: 100;
  width: 50%;
}

.skew .content-wrapper:after {
  position: absolute;
  left: -45%;
  top: -50%;
  width: 100%;
  height: 200%;
  -webkit-transform: rotate(12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
  content: '';
  z-index: 1;
}

.skew .content {
  min-height: initial;
}

/*--------------------------------------------------------------
# MEDIA QUERIES + ANIMATION
--------------------------------------------------------------*/

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 1280px) {
  h1:not(.text-logo), h2, h3, h4, h5, h6, .text-logo-wrapper {
    font-size: 2em!important;
  }
  .text-logo {
    font-size: 1.8em;
  }
}

@media only screen and (max-width: 1024px) {
  body {
    font-size: 16px!important;
    overflow: auto;
  }
  body.skew {
    overflow: auto;
  }
  h1:not(.text-logo), h2, h3, h4, h5, h6, .text-logo-wrapper {
    font-size: 1.8em!important;
  }
  .logo-wrapper {
    margin: 2em 0;
  }
  .content-wrapper {
    width: 100%;
    display: block;
    height: auto;
    height: initial;
    overflow-x: hidden;
  }
  #slider-wrapper, #background-wrapper {
    position: relative;
    left: 0!important;
  }
  .full-opacity #slider-wrapper, .full-opacity #background-wrapper {
    z-index: 1;
  }
  .content {
    padding: 0 1em;
    width: auto;
  }
  .skew .copyright {
    margin-left: 0;
  }
  .skew .content-wrapper {
    width: 100%;
  }
  .skew .content-wrapper:after {
    display: none;
  }
}

@media only screen and (max-width: 560px) {
  body {
    font-size: 15px!important;
  }
  h1:not(.text-logo), h2, h3, h4, h5, h6, .text-logo-wrapper {
    font-size: 1.6em!important;
  }
  .text-logo {
    font-size: 1.5em;
  }
  .logo-wrapper img {
    max-height: 180px;
    max-width: 220px;
  }
  .content p {
    font-size: 1em;
    line-height: 1.3em;
  }
  form {
    margin-top: 2em;
  }
  .social-body {
    margin-top: 1em;
  }
}

@media only screen and (max-width: 360px) {
  .logo-wrapper img {
    max-width: 80%;
  }
  .logo-wrapper img {
    max-height: 130px;
  }
}