*::-webkit-input-placeholder {
	color: #666;
	opacity: 1;
}
*:-moz-placeholder {
	color: #666;
	opacity: 1;
}
*::-moz-placeholder {
	color: #666;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

html {
  -webkit-text-size-adjust: 100%; 
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

body {
	margin: 0;
	font-size: 16px;
}

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

input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0;
}

header {
  position: absolute;
  padding: 0px 50px;
  line-height: 130px;
  width: 100%;
  z-index: 10;
}

header.header-black {
  position: relative;
  background-color: #131313;
} 

.logo {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.logo img {
  width: 125px;
  height: auto;
}

.menu {
  float: right;
  margin: 0;
  padding: 0;
  line-height: 129px;
}

.menu li {
  list-style-type: none;
  display: inline-block;
  margin-left: 30px;
}

.menu li a {
  color: #fff;
  font-family: 'Circe-ExtraBold';
  text-transform: uppercase;
  font-size: 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}

.menu li a:hover {
  border-bottom: 2px solid #fff;
}

.main {
  background-image: url(../img/main-bg.jpg);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  display: table-cell;
  padding: 150px 0 120px;
  height: 100vh;
  width: 100vw;
  vertical-align: middle;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.main-video:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.5;
}

.main > span {
  font-family: 'Streetbrush-Regular';
  color: #fff;
  font-size: 200px;
  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-5deg);
  display: inline-block;
  position: relative;
  width: 100%;
}

.main > p {
  font-family: 'Circe';
  text-transform: uppercase;
  font-size: 26px;
  color: #fff;
  letter-spacing: 1.2px;
  margin: 20px 0 40px;
  position: relative;
}

.main .button { 
  position: relative;
}

.button {
  display: inline-block;
  line-height: 50px;
  background-color: #a00e20;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 45px;
  font-family: 'Circe-Bold';
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button:hover {
  background-color: #760a17;
}

.main-advantages {
  margin: 0 auto 60px;
}

.main-advantages div {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Circe-Light';
  width: 145px;
  vertical-align: middle;
  position: relative;
  line-height: 16px;
}

.main-advantages div:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  background-image: url(../img/wreath.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 70px;
}

.main-advantages div span {
  text-transform: none;
  font-size: 22px;
  display: block;
  font-family: 'Circe-Bold';
  line-height: 24px;
}

.main-mouse {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 10px);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, 0px);
  }
}

@keyframes re-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 10px);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, 0px);
  }
}

.main-mouse img {
  width: 35px;
  height: auto;
}

.about {
  /*padding: 100px 0 300px;*/
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-content {
  width: 950px;
  margin: 0 auto;
  position: relative;
}

.title {
  font-size: 42px;
  color: #0d0d0d;
  font-family: 'Circe-Bold';
  line-height: 60px;
  display: block;
  text-align: center;
  text-transform: uppercase;
}

.about-content p {
  margin: 50px 0 0;
  text-align: center;
  color: #0d0d0d;
  line-height: 32px;
  font-family: 'DiariaPro-Light';
}

.about-content p strong {
  font-weight: normal;
  font-family: 'Circe-Bold';
}

#description__canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*height: 60%;*/
}

.works {
  text-align: center;
  padding-bottom: 120px; 
}

.works-main {
  background-color: #f7f7f7;
}

.works-items {
  width: 100%;
  font-size: 0;
  text-align: left;
}

.works .works-items {
  margin-bottom: 80px;
}

.works-item {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
}

.works-item > div {
  width: 100%;
  position: relative;
  padding-bottom: 110%;
  overflow: hidden;
}

.works-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: transform 20s cubic-bezier(0, 1, 0.35, 1);
  -moz-transition: transform 20s cubic-bezier(0, 1, 0.35, 1);
  -ms-transition: transform 20s cubic-bezier(0, 1, 0.35, 1);
  -o-transition: transform 20s cubic-bezier(0, 1, 0.35, 1);
  transition: transform 20s cubic-bezier(0, 1, 0.35, 1);
}

.works-item:hover .works-item-bg {
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
  transform: scale(1.09);
}

.works-item-content {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(160, 14, 32, 0.65);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.works-item:hover .works-item-content {
  opacity: 1;
}

.works-item-content div {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -30%);
  -moz-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  -o-transform: translate(0, -30%);
  transform: translate(0, -30%);
  left: 0;
  width: 100%;
  padding: 0 50px;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.works-item:hover .works-item-content div {
  opacity: 1;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.works-item-content div p {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-family: 'Circe-Bold';
  margin: 0 0 20px;
}

.works-item-content div span {
  display: inline-block;
  border: 1px solid #fff;
  line-height: 48px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 45px;
  font-family: 'Circe-Bold';
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.works-item-content div span:hover {
  background-color: #fff;
  color: #a00e20;
}

.button-black {
  display: inline-block;
  border: 1px solid #0d0d0d;
  line-height: 48px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  color: #0d0d0d;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 45px;
  font-family: 'Circe-Bold';
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button-black:hover {
  color: #fff;
  background-color: #0d0d0d;
}

.form {
  background-color: #131313;
  /*background-image: url(../img/form-bg.jpg);*/
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.form.form2 {
  /*background-image: url(../img/form-bg2.jpg);*/
}

.form.form-red {
  background-image: none;
  background-color: #a00e20;
}

.form-content {
  width: 1170px;
  margin: auto;
  padding: 50px 0px;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.form-content > span {
  display: block;
  float: left;
  color: #fff;
  font-size: 38px;
  font-family: 'Circe';
}

.form-content form {
  float: right;
}

.form-content form div {
  display: inline-block;
  position: relative;
  margin-right: 30px;
}

.form-content form div span {
  position: absolute;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Circe-Light';
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.form-content form div input {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #fff;
  height: 48px;
  background-color: transparent;
  vertical-align: bottom;
  width: 180px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Circe-Light';
  color: #fff;
  z-index: 10;
  position: relative;
}

.form-content form div input:focus+span, 
.form-content form div input.active+span {
  top: 5px;
  font-size: 8px;
}

.form-content form button {
  vertical-align: bottom;
}

button.button {
  border: none;
  cursor: pointer;
}

.services {
  padding: 100px 0;
  width: 1170px;
  margin: 0 auto;
} 

.services-items {
  margin: 75px 0 0;
  text-align: center;
  font-size: 0;
}

.services-items a {
  display: inline-block;
  width: 250px;
  min-height: 540px;
  position: relative;
  padding: 120px 10px 50px;
  margin: 0 20px;
  vertical-align: top;
}

.services-items a svg {
  fill: #8e0d1c;
  height: 80px;
  width: auto;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.services-items a:hover svg {
  fill: #fff;
}

.services-items a div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.services-items a div:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
}

.services-items a span {
  display: block;
  margin: 25px 0 20px;
  font-size: 24px;
  color: #0d0d0d;
  line-height: 30px;
  font-family: 'Circe-Bold';
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}

.services-items a:hover span {
  color: #fff;
}

.services-items a:hover div {
  opacity: 1;
}

.services-items a p {
  margin: 0;
  font-size: 16px;
  font-family: 'DiariaPro-Light';
  /*color: #0d0d0d;*/
  color: #fff;
  line-height: 24px;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
}

.services-items a:hover p {
  color: #fff;
  opacity: 1;
}

.clients {
  /*background-color: #f7f7f7;*/
  padding: 100px 0;
  text-align: center;
}

.clients-items {
  width: 1170px;
  margin: 50px auto;
  font-size: 0;
  text-align: center;
}

.clients-items div {
  position: relative;
  width: 20%;
  height: 150px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; /* IE 6-9 */
}

.clients-items div:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  filter: none; /* IE 6-9 */
}

.clients-items div img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}

footer {
  background-color: #0b0b0b;
}

.footer-top {
  /*background-image: url(../img/footer-bg.jpg);*/
  position: relative;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.footer-top canvas {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.footer-top-content {
  width: 1170px;
  margin: auto;
  padding: 60px 0;
  font-size: 0;
  position: relative;
  z-index: 100;
}

.footer-top-item {
  vertical-align: top;
  display: inline-block;
  width: 25%;
  padding-right: 20px;
  line-height: 24px;
}

.footer-top-item > span {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  font-family: 'Circe-Bold';
  text-transform: uppercase;
}

.footer-top-item p {
  margin: 0;
  font-size: 16px;
  color: #f6f5f5;
  font-family: 'DiariaPro-Light';
}

.footer-top-item > a {
  font-size: 16px;
  color: #f6f5f5;
  font-family: 'DiariaPro-Light';
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-top-item > a:hover {
  color: #fff;
}

.soc a {
  display: inline-block;
  vertical-align: top;
  font-size: 30px;
  color: #959595;
  margin-right: 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.soc a:hover {
  color: #fff;
}

.footer-bottom {
  width: 1170px;
  margin: auto;
  line-height: 50px;
  color: #676767;
  font-size: 14px;
  font-family: 'DiariaPro-Light';
}

.footer-bottom a {
  color: #676767;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom a:last-child {
  float: right;
}

.content-block {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.content-block-info {
  float: right;
  width: 50%;
  padding: 85px 75px;
  min-height: 600px;
  background-color: #f7f7f7;
}

.content-block:nth-child(2n) .content-block-info {
  float: left;
}

.content-block-img {
  position: absolute;
  height: 100%;
  width: 50%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

.content-block-img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  content: '';
}

.content-block-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.content-block-img a svg {
  width: 150px;
  height: 150px;
  fill: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.content-block-img a:hover svg {
  fill: #a00e20;
}

.content-block:nth-child(2n) .content-block-img {
  left: 50%;
}

.content-block-info span {
  display: block;
  font-size: 42px;
  font-family: 'Circe-Bold';
  color: #4c4c4c;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.content-block-info .button-black {
  margin-top: 40px;
}

.content-block-info p {
  font-family: 'DiariaPro-Light';
  margin: 0;
  color: #0d0d0d;
  line-height: 32px;
}

.button-white {
  display: inline-block;
  border: 1px solid #fff;
  line-height: 48px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  color: #a00e20;
  background-color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 45px;
  font-family: 'Circe-Bold';
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.button-white:hover {
  background-color: transparent;
  color: #fff;
}

.content {
  width: 1170px;
  margin: auto;
  padding: 100px 0;
}

.content-title {
  display: block;
  margin-bottom: 50px;
  margin-top: 0;
  color: #0d0d0d;
  font-size: 42px;
  font-family: 'Circe-Bold';
  text-transform: uppercase;
}

.content p,
.content ol,
.content ul {
  margin: 0 0 40px;
  color: #0d0d0d;
  line-height: 32px;
  font-family: 'DiariaPro-Light';
}

.content h2 {
  color: #0d0d0d;
  font-size: 30px;
  font-family: 'Circe-Bold';
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
}

.articles {
  padding: 100px 0;
  display: none;
}

.articles-items {
  width: 1170px;
  margin: 60px auto 0;
  text-align: center;
}

.articles-item {
  display: inline-block;
  vertical-align: top;
  width: 255px;
  margin: 0 15px;
}

.articles-item-img {
  height: 200px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

.articles-item-title {
  display: block;
  margin-bottom: 15px;
  font-family: 'Circe-Bold';
  text-transform: uppercase;
  color: #0d0d0d;
  font-size: 24px;
  line-height: 30px;
  padding: 0 10px;
}

.articles-item p {
  color: #0d0d0d;
  line-height: 24px;
  margin: 0 0 20px;
  padding: 0 10px;
  font-family: 'DiariaPro-Light';
}

.works-title {
  display: block;
  text-transform: uppercase;
  color: #535353;
  font-size: 34px;
  margin-bottom: 30px;
  font-family: 'Circe-Bold';
}

.project-main {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-main iframe {
  position: relative;
}

.project-main:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  content: '';
}

.project-main a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.project-main a svg {
  width: 170px;
  height: 170px;
  fill: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.project-main a:hover svg {
  fill: #a00e20;
}

.popup {
  width: 300px;
  position: relative;
  margin: auto;
  background-color: #0b0b0b;
  padding: 35px 20px;
  text-align: center;
}

.hidden {
  display: none;
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
}

.popup > span {
  display: block;
  color: #fff;
  font-family: 'Circe-Bold';
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
}

.popup form div {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.popup form div span {
  position: absolute;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Circe-Light';
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.popup form div input {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #fff;
  height: 48px;
  background-color: transparent;
  vertical-align: bottom;
  width: 100%;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Circe-Light';
  color: #fff;
  z-index: 10;
  position: relative;
}

.popup form div input:focus+span, 
.popup form div input.active+span {
  top: 5px;
  font-size: 8px;
}

.popup > p {
  margin: 0;
  text-align: center;
  color: #fff;
  font-family: 'DiariaPro-Light';
  line-height: 24px;
}

.input-error {
  border-bottom: 1px solid red !important;
}

.form canvas {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50% !important;
  opacity: 0.8;
}

.form.form2 canvas {
  left: auto;
  right: 0;
}

.sandwich { 
  width: 30px; 
  height: 20px; 
  z-index: 9; 
  cursor: pointer; 
  display: none; 
  float: right;
  margin-top: 30px;
} 

.sw-topper { 
  position: relative; 
  top: 0; 
  width: 30px; 
  height: 3px; 
  background: #fff; 
  border: none; 
  border-radius: 8px 8px 8px 8px; 
  transition: transform 0.5s, top 0.2s; 
} 

.sw-bottom { 
  position: relative; 
  width: 30px; 
  height: 3px; 
  top: 5px; 
  background: #fff;
  border: none; 
  border-radius: 8px 8px 8px 8px; 
  transition: transform 0.5s, top 0.2s; 
  transition-delay: 0.2s, 0s; 
} 

.sw-footer { 
  position: relative; 
  width: 30px; 
  height: 3px; 
  top: 10px; 
  background: #fff;
  border: none; 
  border-radius: 8px 8px 8px 8px; 
  transition: all 0.5s; 
  transition-delay: 0.1s; 
} 

.sandwich.active .sw-topper { 
  top: 7px; 
  background: #fff;
  -webkit-transform: rotate(140deg); 
  -moz-transform: rotate(140deg); 
  -ms-transform: rotate(140deg); 
  -o-transform: rotate(140deg); 
  transform: rotate(140deg); 
  border-radius: 8px 8px 8px 8px; 
} 

.sandwich.active .sw-bottom { 
  top: 4px;
  background: #fff;
  -webkit-transform: rotate(-140deg); 
  -moz-transform: rotate(-140deg); 
  -ms-transform: rotate(-140deg); 
  -o-transform: rotate(-140deg); 
  transform: rotate(-140deg); 
  border-radius: 8px 8px 8px 8px; 
} 

.sandwich.active .sw-footer { 
  opacity: 0; 
  top: 0; 
  background: #fff;
  -webkit-transform: rotate(180deg); 
  -moz-transform: rotate(180deg); 
  -ms-transform: rotate(180deg); 
  -o-transform: rotate(180deg); 
  transform: rotate(180deg); 
  border-radius: 8px 8px 8px 8px; 
}

#popup-video {
  position: relative;
  width: 100%;
  height: 100vh;
}

#popup-video iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.mfp-container {
  padding: 0;
}

.services.services-page {
  padding: 0 0 100px;
  margin-top: -80px;
} 

.services-page .services-items {
  margin: 0;
}

.services-page .services-items a {
  width: 20%;
  margin: 0;
}

.services-page .services-items a span {
  font-size: 20px;
  line-height: 28px;
}

.content-404 {
  text-align: center;
}

.content-sitemap a {
  font-family: 'DiariaPro-Light';
  color: #0d0d0d;
  display: inline-block;
  margin-bottom: 3px;
}

/**/

.wpcf7-not-valid-tip {
    display: none! important;
}
.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    display: none! important;
}
input.wpcf7-form-control.wpcf7-text {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #727272;
    height: 48px;
    background-color: transparent;
    vertical-align: bottom;
    width: 50%;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Circe-Light';
    color: #000;
    z-index: 10;
    position: relative;
    min-width: 250px;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.wpcf7-not-valid {
    border-bottom: 1px solid red! important;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.wpcf7-not-valid {
    border-bottom: 1px solid red! important;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #727272;
    height: 100px;
    background-color: transparent;
    vertical-align: bottom;
    width: 50%;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Circe-Light';
    color: #000;
    z-index: 10;
    position: relative;
    min-width: 250px;
    padding-top: 10px;
}
input.wpcf7-form-control.wpcf7-submit {
    display: inline-block;
    line-height: 50px;
    background-color: #a00e20;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 45px;
    font-family: 'Circe-Bold';
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 0px;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    cursor:pointer;
}

.wpcf7-mail-sent-ok {
    border: 0px solid #398f14! important;
    padding: 0! important;
    font-family: system-ui;
    font-size: 22px;
    color: #a00e20;
    font-weight: 600;
}