/*
#f2f2f2 white
#e7493e red
#0bb5cf blue
#1c122b light black
#f2c126 yellow
*/

@font-face {
  font-family: "GothamLight";
  font-weight: normal;
  src: url(/assets/fonts/GothamLight.ttf);
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; 
  padding: 0; 
  margin: 0;
}

body {
  background: #f2f2f2;
  overflow-x: hidden;
}

body, input, textarea, button {
  font-family: "GothamLight", "Century Gothic", "Arial";
}

input, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

a, button, #wrapper, .burger, .burger .stripes {
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

a, a:hover, a:focus {
  text-decoration: none;
}

a:hover {
  color: #0bb5cf;
}

input:focus, textarea:focus, button:focus {
  outline: 0;
}

button {
  cursor: pointer;
}

.clr {
  clear: both;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  } 
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  } 
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  } 
}

/* Pace */

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #e7493e;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 100%;
  width: 100%;
  height: 70px;
}

@media (min-width: 768px) {
  .pace .pace-progress {
    height: 90px;
  }
}

#wrapper {
  opacity: 0;
}

body.pace-done > #wrapper {
  opacity: 1;
}

/* Header */

#header {
  z-index: 9999;
  position: relative;
  text-align: center;
  width: 100%;
  height: 70px;
}

#header .container {
  padding: 10px;
  height: 70px;
}

body.pace-done > #header {
  background-color: #e7493e;
}

#header .left-part {
  text-align: left;
}

#header .right-part {
  text-align: right;
}

#header .left-part, #header .right-part {
  display: inline-block;
  vertical-align: middle;
}

#header .nav-menu {
  list-style: none;
  display: inline-block;
}

#header .nav-menu > li {
  padding: 10px 15px;
  vertical-align: middle;
  display: inline-block;
  font-size: 1.3em;
}

#header .nav-menu > li a {
  display: block;
  color: #f2f2f2;
}

#header .nav-menu > li a:hover {
 text-shadow: 4px 4px rgba(11, 181, 207, 0.7);
}

#header .logo img {
  height: 50px;
  display: block;
}

#header .logo {
  display: inline-block;
}

@media (max-width: 767.99px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
  }
  
  .header-neck {
    height: 70px;
  }
}


/* Burger icon */

.burger {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 34px;
  border: 2px solid #f2f2f2;
  margin: 0 auto;
  padding: 5px;
  border-radius: 3px;
  box-sizing: border-box;
}

.burger:hover {
  cursor: pointer;
}

.burger:active {
  -webkit-transform: scale(0.8, 0.8);
  -moz-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  -o-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

.burger .stripe {
  position: absolute;
  width: 24px;
  height: 4px;
  background-color: #f2f2f2;
  margin-bottom: 4px;
  border-radius: 1px;
}

.burger .stripe.top {
  top: 5px;
}

.burger .stripe.center1, .burger .stripe.center2 {
  top: 13px;
}

.burger .stripe.bottom {
  top: 21px;
}

.burger.open .top, .burger.open .bottom {
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  border-color: #f2f2f2;
}

.burger.open .stripe {
  background-color: #f2f2f2; 
}

.burger.open .center1 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger.open .center2 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Header Responsive */

@media (max-width: 767.99px) {
  #header {
    text-align: left;
  }
  
  #header .logo img {
    padding: 5px;
  }
  
  #header .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    padding: 4px 8px;
    background: #e7493e;
    z-index: 111;
    color: #f2f2f2;
    text-align: right;
    width: 100%;
    border-top: 2px solid #f2f2f2;
  }
  
  #header .nav-menu > li {
     display: block;
  }
}

@media (min-width: 768px) {
  .mob-menu-ic {
    display: none;
  }
  
  #header .container {
    display: flex;
    align-content: space-between;
    align-items: flex-end;
    height: 90px;
  }
  
  #header {
    height: 90px;
  }
  
  #header .logo img {
    height: 60px;
  }
  
  #header .right-part {
    width: 100%;
  }
}

@media (min-width: 992px) {
  #header .right-part, #header .left-part {
    width: 100%;
  }
}

/* Sections */

.s-colorbg, .s-picbg {
  padding: 80px 0;
}

.s-colorbg__white {
  background-color: #f2f2f2;
}

.s-colorbg__gray {
  background-color: #e6e6e6;
}

.s-colorbg__dark {
  background-color: #1c122b;
}

.s-heading {
  font-size: 1.8em;
  padding-bottom: 20px;
  text-align: center;
}

.s-heading > .red {
  color: #e8473c;
}

.s-heading > .white {
  color: #f2f2f2;
}

.s-heading > .blue {
  color: #0bb5cf;
}

.s-colorbg .s-heading {
  color: #1c122b;
}

.s-paragraph {
  font-size: 1.2em;
}

.s-paragraph:not(:last-child) {
  margin-top: 15px;
}

/* Landing: How it Works */

#landing-how-it-works {
  position: relative;
  overflow: hidden;
  border-top: 10px solid #0bb5cf;
  /*border-bottom: 10px solid #e7493e;*/
}

#landing-how-it-works:before {
  left: 50%; 
  top: -10px;
  margin-left: -20px;
  position: absolute;
  content:'';
  border-left: 40px solid #0bb5cf;
  border-bottom: 30px solid transparent;
  border-top: 30px solid transparent;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.processes-wrap {
  padding-top: 20px;
  text-align: center;
}

.process-bl {
  width: 100%;
  padding: 0 20px;
  display: inline-block;
  vertical-align: top;
}

.process-bl:nth-child(2) {
  padding: 20px; 
}

.process-bl img {
  width: 125px;
  padding: 12.5px;    
  display: block;
  margin: 0 auto;
}

.process-bl h3 {
  padding: 10px 0;
  font-size: 1.4em;
  color: #e7493e;
  display: inline-block;
  position: relative;
}

.process-bl h3 span {
  position: relative;
  z-index: 2;
}

.process-bl h3:before {
  content: attr(data-step);
  position: absolute;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #0bb5cf;
  background-color: #e6e6e6;
  z-index: 1;
  right: -25px;
  top: -7.5px;
  border-radius: 50%;
  border-right: 2px solid;
  border-top: 2px solid;
  border-color: #e7493e;
}

.process-bl p {
  max-width: 290px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .process-bl {
    width: 32%;
  }
  
  .process-bl:nth-child(2) {
    padding: 0 20px;
    margin-top: 60px;
  }
  
  #landing-how-it-works h2 {
    padding-bottom: 0;
  }
}

/* Landing: About Us */

#landing-about-us {
  position: relative;
}

#landing-about-us:before {
  left: 65%;
  top: 0px;
  height: 65px;
  width: 100px;
  margin-left: -50px;
  position: absolute;
  content: '';
  background: url("/assets/img/stuff/camera-flash.png") no-repeat center;
  background-size: 100%;
}

.flash-o {
  background: url("/assets/img/stuff/flash-ic.png") no-repeat center;
  background-size: 60%;
}

#landing-about-us p {
  text-align: center;
}

/* Landing: Newsletter & Contacts */

#landing-contact-us {
  background-image: url("/assets/img/stuff/camera-man.png");
  background-repeat: no-repeat;
  background-position: 80% center;
  background-size: auto 100%;
}

#landing-contact-us .container {
  position: relative;
}

.contacts-bl {
  padding: 15px;
  display: inline-block;
  margin-left: 10px;
  font-weight: bold;
  border-radius: 15px;
}

.contacts-bl, .contacts-bl a {
  color: #e6e6e6;
}

.contacts-bl img, .contacts-bl span {
  display: inline-block;
  vertical-align: middle;
}

.contacts-bl span {
  padding: 0 5px;
}

.contacts-bl img {
  width: 40px;
}

@media (max-width: 767.99px) {
  .our-contacts {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .contacts-bl {
    text-align: left;
    width: 290px;
    display: block;
    margin: 0 auto;
  }
  
  .contacts-bl span {
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .our-contacts {
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}

@media (min-width: 992px) {
  .our-contacts {
    position: absolute;
    top: -80px;
    left: 0;
  }
  
  .contacts-bl {
    background-color: #1c122b;
  }
}

@media (min-width: 1200px) {
  .our-contacts {
    left: 100px;
  }
}

.newsletter-wrap {
  width: 100%;
}

.newsletter-self {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  max-width: 400px;
  background: #f2f2f2 url("/assets/img/stuff/envelope.png") no-repeat center;
  background-size: cover;
  padding: 20px 0;
}

.newsletter-form {
  background: #f2f2f2;
  padding: 20px;
}

.newsletter-fields, .newsletter-icon {
  display: inline-block;
  vertical-align: middle;
}

.newsletter-fields {
  width: calc(100% - 95px);
  width: -webkit-calc(100% - 95px);
  width: -moz-calc(100% - 95px);
  width: -ms-calc(100% - 95px);
  width: -o-calc(100% - 95px);
  text-align: right;
  padding-left: 50px;
}

.newsletter-icon img {
  display: block;
  width: 90px;
  left: 15px;
  position: relative;
}

.newsletter-form input, .newsletter-form button {
  border: 0;
  color: #1c122b;
  border-bottom: 1px solid;
  padding: 10px;
  font-weight: bold;
  width: 100%;
  background: transparent;
}

.newsletter-form .btn-line {
  text-align: left;
  padding: 15px 0;
}

.newsletter-form button[type=submit] {
  border-top: 1px solid;
  background-color: transparent;
  width: auto;    
  padding: 5px 10px;
  position: relative;
  text-align: right;
}

@media(max-width: 767.99px) {
  #landing-contact-us {
    padding-bottom: 160px;
    background-position: 80% bottom;
    background-size: auto 160px;
  }
  
  .newsletter-wrap {
    text-align: center;
  }
}

@media(max-width: 379px) {
  .newsletter-form {
    padding: 20px 0px 20px 0px;
  }
  
  .newsletter-icon img {
    left: 0;
    width: 50px;
  }
  
  .newsletter-fields {
    padding-left: 20px;
  }
}

.newsletter-form button[type=submit]:after,
.newsletter-form button[type=submit]:before {
  height: 1px;
  background: #1c122b;
  content: '';
  position: absolute;
  width: 20px;
  right: -17px;
}

.newsletter-form button[type=submit]:after {
  top: 6px;
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.newsletter-form button[type=submit]:before {
  bottom: 6px;
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.newsletter-form input::placeholder {
  color: #1c122b;
  font-weight: bold;
  opacity: 1;
  position: relative;
  left: 0;
  transition: 0.4s ease;
}
.newsletter-form input::-webkit-input-placeholder {
  color: #1c122b;
  opacity: 1;
  position: relative;
  left: 0;
  -webkit-transition: 0.4s ease;
}
.newsletter-form input::-moz-placeholder {
  color: #1c122b;
  font-weight: bold;
  opacity: 1;
  position: relative;
  left: 0;
  -moz-transition: 0.4s ease;
}
.newsletter-form input:-ms-input-placeholder {
  color: #1c122b;
  font-weight: bold;
  opacity: 1;
  position: relative;
  left: 0;
  -ms-transition: 0.4s ease;
}
.newsletter-form input:-moz-placeholder { 
  color: #1c122b;
  font-weight: bold;
  opacity: 1;
  position: relative;
  left: 0;
  -moz-transition: 0.4s ease;
}

.newsletter-form input:focus::placeholder {
  opacity: 0;
  left: -15px;
}
.newsletter-form input:focus::-webkit-input-placeholder {
  opacity: 0;
  left: -15px;
}
.newsletter-form input:focus::-moz-placeholder {
  opacity: 0;
  left: -15px;
}
.newsletter-form input:focus:-ms-input-placeholder {
  opacity: 0;
  left: -15px;
}
.newsletter-form input:focus:-moz-placeholder { 
  opacity: 0;
  left: -15px;
}

/* Coming Soon */

#coming-soon-wrapper {
  width: 100%;
  height: calc(100vh - 90px);
  background: rgba(28, 18, 43, 0.72);
  position: relative;
}

#coming-soon-wrapper:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(/assets/img/bg-100.jpg) center;
  background-size: cover;
  z-index: -1;
}

#coming-soon-wrapper h1 {
  width: 95%;
  max-width: 600px;
  color: #0bb5cf;
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  #coming-soon-wrapper h1 {
    font-size: 2.5em;
  }
}

#coming-soon-wrapper h1 span {
  display: block;
  text-align: center;
  opacity: 0;
  position: relative;
}

#coming-soon-wrapper h1 span:not(:nth-child(2)) {
  font-size: 0.6em;
  color: #e7493e;
}

#coming-soon-wrapper h1 span:nth-child(2) {
  padding: 30px 0;
}

#coming-soon-wrapper h1 span:nth-child(1) {
  left: 55px;
}

#coming-soon-wrapper h1 span:nth-child(3) {
  right: 55px;
}

.coming-soon {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.coming-soon div {
  position: absolute;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.coming-soon:after {
  position: absolute;
  content: '';
  width: 100px;
  padding-bottom: 100px;
  background: url(/assets/img/stuff/camera-diaphragm.png) no-repeat;
  background-size: 100px;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  z-index: 999;
  opacity: 0;
}

.coming-soon.show:after {
  animation: diaphragm 1s 0s 1 forwards ease-in-out; 
  -o-animation: diaphragm 1s 0s 1 forwards ease-in-out; 
  -ms-animation: diaphragm 1s 0s 1 forwards ease-in-out; 
  -moz-animation: diaphragm 1s 0s 1 forwards ease-in-out; 
  -webkit-animation: diaphragm 1s 0s 1 forwards ease-in-out; 
}

@keyframes diaphragm {
  from {  
    opacity: 0; 
  } 
  50% { 
    opacity: 0.075;
    transform: rotate(180deg);
  }
  75% {
    opacity: 0.15;
    transform: rotate(90deg);
  }
  to { 
    opacity: 0.225;
    transform: rotate(360deg);
  } 
}

@keyframes fade {
  from {  
    opacity: 0; 
  } 
  to { 
    opacity: 1;
  } 
}

.red-star span {
  position: absolute;
  display: block;
  height: 8px;
  width: 8px;
  left: calc(50% - 4px);
  top: 50%;
  opacity: 0;
}

.red-star span:nth-child(5), .red-star span:nth-child(10), .red-star span:nth-child(15), .red-star span:nth-child(20), 
.red-star span:nth-child(25), .red-star span:nth-child(30), .red-star span:nth-child(35), .red-star span:nth-child(40), 
.red-star span:nth-child(45), .red-star span:nth-child(50), .red-star span:nth-child(55), .red-star span:nth-child(60) {
  background: url("/assets/img/stuff/redstar.png") no-repeat;
  background-size: cover;
}

@media (max-width: 767.99px) {
  #coming-soon-wrapper {
    height: 350px;
  }
}

@media (min-width: 768px) {
  .coming-soon {
    width: 520px;
    height: 520px;
  }
  
  .red-star span {
    height: 16px;
    width: 16px;
    left: calc(50% - 8px);
  }
}

#footer {
  padding: 20px 0;
  background-color: #f2f2f2;
  text-align: center;
}

#footer .footer-socials {
  text-align: center;
  margin-bottom: 10px;
}

#footer .footer-socials a {
  display: inline-block;
}

#footer .footer-socials img {
  display: inline-block;
  width: 50px;
}

#footer .footer-socials a:not(:last-child) {
  margin-right: 10px;
}