/*------------------------------------------------------------------------------
# TABLE OF CONTENTS
--------------------------------------------------------------------------------
# Normalize
# Typography
# Layout 
# Elements

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

/*------------------------------------------------------------------------------
# Normalize
------------------------------------------------------------------------------*/

html {
  font-size: 14px;
  font-family: 'Nir', Roboto, sans-serif;
  letter-spacing: 2px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav,
section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
a {
  background-color: transparent;
}
a:active, 
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, 
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: button;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td, th {
  padding: 0;
}
input:focus,
button:focus {
  outline: none;
}
/*------------------------------------------------------------------------------
# Typography
------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------
# Layout
------------------------------------------------------------------------------*/

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  background: #fff;
}
.container {
  max-width: 1600px;
  margin: auto;
}
.form-container {
  max-width: 1000px;
  margin: auto;
  clear: both;
  text-align: center;
  margin-bottom: 60px;
}
.header-section {
  position: relative;
  /* height: 950px; */
   margin-bottom: 80px;
}
.header-section-image {
  /* height: 900px; */
    height: 100vh;
}
.header-section-mini {
  position: relative;
  height: 580px;
}
.header-section-mini .header {
  position: absolute;
  left: 100px;
  top: 100px;
  z-index: 2;
}
.header-title {
  position: absolute;
  top: 160px;
  right: 150px;
  color: #1d1d1b;
  font-size: 160px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: right;
  width: 890px;
}
.header-section .header {
  position: absolute;
  left: 100px;
  top: 100px;
  z-index: 2;
}
.header-section .slider-control {
  position: absolute;
  bottom: -60px;
  right: 60px;
}
.header-close {
  position: absolute;
  top: 80px;
  right: 80px;
  cursor: pointer;
  transition: all 1.5s ease;
  transform: rotate(0deg);
   z-index: 99999;
}
.header-close.spin {
  transform: rotate(360deg);
}
.header-bg {
  width: 480px;
  height: 480px;
  border-radius: 500px;
  overflow: hidden;
  position: absolute;
  top: -90px;
  left: -90px;
}
.header-bg:after {
  width: 480px;
  height: 480px;
  background: rgba(255, 221, 0, 0.85);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}
.header-bg img {
  width: 480px;
  height: 480px;
}
.relative {
  position: relative;
}
.header-filter {
  position: absolute;
  bottom: 45px;
  left: 45px;
  z-index: 999999;
}
.header-filter a {
  color: #1d1d1b;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 45px;
  display: inline-block;
  text-shadow: 0px 0px 14px rgb(0 0 0 / 30%);
  vertical-align: top;
  letter-spacing: 2px;
  margin: 0 10px;
  font-size: 25px;
  position: relative;
}
.header-filter a:before {
  content: '';
  display: block;
  background: #fd0;
  position: absolute;
  height: 4px;
  border-radius: 3px;
  bottom: 20px;
  left: -7px;
  transition: all 0.5s ease;
  width: 0px;
}
.header-filter a:hover:before, .header-filter a.active:before {
    width: calc(100% + 14px);
}

/*------------------------------------------------------------------------------
# Elements
------------------------------------------------------------------------------*/
.mobile-menu-lang {
  opacity: 1;
  z-index: 9999999;
  position: absolute;
  bottom: -28px;
  background: #e73b57;
  right: 0;
  border-radius: 0 0 20px 20px;
  padding: 0 20px;
  margin: 0;
  display: none;
  height: 40px;
  line-height: 40px;
}
.mobile-menu-lang li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.mobile-menu-lang li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 40px;
}
.mobile-menu-lang li a.is-active {
  color: #fed504;
}
@keyframes scroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0)
  }
}
 
.marquee {
  display: block;
  width: 110%;
  white-space: nowrap;
  overflow: hidden;
  color: #fd0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 150px;
  position: absolute;
  transform: rotate(-12deg);
  top: 270px;
  left: -30px;
}
 
.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 25s infinite ease-in-out;
}


.projects-more-block {
  padding: 70px 0;
  text-align: right;
  opacity: 0;
}

.project-list-item.hidden {
  height: 0;
  opacity: 0;
  padding: 0;
}

.project-list-item,
.project-list-item:hover {
  color: #1d1d1b;
  height: 440px;
  padding: 0;
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 1s ease;
  opacity: 1;
}
.project-list-item .is-hover {
    opacity: 0;
    transition: all 1s ease;
    position: absolute;
    text-align: center;
    top: -145px;
    right: 0;
    left: 50%;
    width: 600px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}
.project-list-item:hover .is-hover {
  opacity: 1;
}
.project-list-item .is-default {
  opacity: 1;
  transition: all 0.5s ease;
}
.project-list-item:hover .is-default {
  /* opacity: 0; */
}



.project-list-item .is-default h3,
.project-list-item .is-default h4,
.project-list-item .is-default p {
  transition: all 0.5s ease;
}

.project-list-item:hover .is-default h3,
.project-list-item:hover .is-default h4 {
  opacity: 0;
  transform: translateY(-200px);
}

.project-list-item:hover .is-default p {
  transform: translateY(-80px);
}
.project-list-item:hover .is-default .project-list-more {
  opacity: 1;
}





.project-list-item:hover:after {
  right: 60%;
}
.project-list-item:hover .is-hover .h3 {
  color: #fff;
  text-align: center;
  margin: auto;
  font-size: 55px;
  /* line-height: 400px; */
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 11;
  min-width: 310px;
  text-shadow: 0px 0px 14px rgb(0 0 0 / 30%);
}
.project-list-item:hover .is-hover .h4 {
    /* position: absolute; */
    /* bottom: -110px; */
    right: 0;
    font-size: 10px;
    color: #fff;
    letter-spacing: 2px;
    font-size: 25px;
    width: 310px;
    line-height: 1.5em;
    text-align: center;
    left: 0;
    margin: auto;
    margin-top: 20px;
}
.project-list-item:hover .is-hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #e73b57;
    width: 600px;
    height: 600px;
    border-radius: 500px;
    margin: 0;
    opacity: 0.8;
}
.project-list-item:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -400px;
    left: -400px;
    background: rgba(255, 255, 255, 0.75);
    transition: all 0.5s ease;
    opacity: 1;
    transform: skewX(-45deg);
}
.project-list-item .container {
  z-index: 1;
  position: relative;
}
.project-list-item h3 {
  text-transform: uppercase;
  margin: 65px 0 4px 0;
  font-size: 43px;
}
.project-list-item h4 {
  text-transform: uppercase;
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: 1px;
  color: #e73b57;
}
.project-list-item p {
  width: 470px;
  font-size: 20px;
  letter-spacing: 1px;
}





.form-message {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  height: 20px;
  width: 100%;
  color: #5fc3e0;
}



.main-more i {
  width: 20px;
  height: 40px;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #e73b57;
  font-size: 0;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: -30px;
}
.main-more {
  background: transparent;
  border: none;
  position: absolute;
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 60px;
  bottom: 275px;
  margin-left: 405px;
  z-index: 1;
  text-decoration: none;
  color: #000;
}
.main-more-image {
  position: absolute;
  bottom: 165px;
  overflow: hidden;
  width: 260px;
  height: 260px;
  border-radius: 200px;
  margin-left: 245px;
  transform: scale(1);
  animation: pulse 1s ease-in-out 6000s;
}
.main-more-image.is-asctive {
  animation: pulse 1s infinite;
}
.main-more-image-overlay {
  position: absolute;
  bottom: 165px;
  width: 310px;
  height: 260px;
  border-radius: 200px;
  margin-left: 245px;
  background: transparent;
  z-index: 2;
  cursor: pointer;
  display: block;
  color: #000;
  text-decoration: none;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.main-more-image img {
  width: 260px;
  height: 260px;
}
.main-more-image:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 233, 93, 0.8);
}



.project-desc-block {
  position: relative;
}
.project-desc-col-text {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  padding: 340px 0px 0px 130px;
  letter-spacing: 1px;
  font-size: 15px;
  /* text-align: justify; 
    -webkit-hyphens: auto;
    -webkit-hyphenate-limit-before: 3;
    -webkit-hyphenate-limit-after: 3;
    -webkit-hyphenate-limit-chars: 6 3 3;
    -webkit-hyphenate-limit-lines: 2;
    -webkit-hyphenate-limit-last: always;   
    -webkit-hyphenate-limit-zone: 8%;

    -moz-hyphens: auto;
    -moz-hyphenate-limit-chars: 6 3 3;
    -moz-hyphenate-limit-lines: 2;  
    -moz-hyphenate-limit-last: always;
    -moz-hyphenate-limit-zone: 8%;

    -ms-hyphens: auto;
    -ms-hyphenate-limit-chars: 6 3 3;
    -ms-hyphenate-limit-lines: 2;
    -ms-hyphenate-limit-last: always;   
    -ms-hyphenate-limit-zone: 8%;

    hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
    hyphenate-limit-lines: 2;
    hyphenate-limit-last: always;   
    hyphenate-limit-zone: 8%;*/

  position: relative;
  overflow: hidden;
  transition: all 2s ease;
}
.project-desc-col-text.hidden:after {
  content: '';
  display: block;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
}
.project-desc-col-more i {
  width: 10px;
  height: 20px;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e73b57;
  font-size: 0;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: -20px;
}
.project-desc-col-more {
  border: none;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1;
  text-decoration: none;
  color: #000;
  position: absolute;
  bottom: -50px;
  left: 15px;
  opacity: 1;
  transition: all 2s ease;
}
.project-list-more {
  border: none;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1;
  text-decoration: none;
  color: #000;
  opacity: 0;
  transition: all 1s ease;
}
.project-list-more i {
  width: 10px;
  height: 20px;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e73b57;
  font-size: 0;
  display: inline-block;
  position: relative;
  top: 4px;
}
.project-desc-col-text p {
  font-size: 20px;
  line-height: 1.5;
}
.project-desc-col-image {
  display: inline-block;
  width: 69%;
  vertical-align: top;
  padding: 90px 0 0px 120px;
  position: relative;
  background-image: url(https://iconlab.moscow/assets/images/45.gif);
  background-size: 260px;
  background-repeat: no-repeat;
  background-position: center calc(100% - (35vw / 2) + 80px);
}
.project-desc-col-image > img {
  width: 100%;
  height: 35vw;
  object-fit: cover;
}
.project-ball {
  width: 480px;
  height: 480px;
  position: absolute;
  top: 0;
  margin-left: -240px;
  margin-top: -240px;
  border-radius: 900px;
  background: #fd0;
}
.project-big-header {
  z-index: 1;
  position: absolute;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 30px;
  width: 38%;
}
.project-big-header:before {
  content: '"';
  display: block;
  position: absolute;
  font-size: 170px;
  z-index: 1;
  top: -60px;
  color: #fff;
  font-weight: 600;
  font-family: Nir;
  line-height: 0;
  transform: skew(-13deg);
  left: -10px;
}
.project-big-header:after {
  content: '"';
  display: block;
  position: absolute;
  font-size: 170px;
  z-index: 1;
  bottom: -120px;
  color: #fd0;
  font-weight: 600;
  font-family: Nir;
  line-height: 0;
  transform: skew(-13deg);
  left: -10px;
}




.proj-slider {
  font-size: 0;
  overflow: hidden;
  height: 215px;
  white-space: nowrap;
  margin-top: 40px;
  clear: both;
}
.proj-slider-item {
  width: 320px;
  height: 215px;
  display: inline-block;
  font-size: 0;
  margin: 0;
  border: 0;
  margin-left: -2px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.proj-slider-item:hover {
  cursor: pointer;
}
.proj-slider-item:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(95, 195, 224, 0);
  z-index: 1;
  transition: all 1s ease;
   opacity: 0.6;
}
.proj-slider-item.is-active:after {
  background: rgba(95, 195, 224);
}
.proj-slider-control {
  float: right;
  bottom: -65px;
  z-index: 2;
}

.form-send i {
  width: 20px;
  height: 40px;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #e73b57;
  font-size: 0;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: -30px;
  transition: all 0.5s ease;

}
.form-send {
  background: transparent;
  border: none;
  position: relative;
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 60px;
}
.form-send:hover i {
  left: -20px;
  border-color: transparent transparent transparent #fd0;
}
.form-row {
  text-align: center;
}
.form-row .desc-1 {
  width: 250px;
  display: inline-block;
  text-align: right;
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
  color: #e73b57;
}
.form-row .desc-2 {
  width: 250px;
  display: inline-block;
  text-align: left;
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
  color: #e6e6e6;
}
.form-row input {
  margin: 0 10px;
  width: 460px;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 10px;
  vertical-align: bottom;
  border: none;
  border-bottom: 1px solid #e73b57;
  opacity: 1;
  transition: all 0.5s ease;
}

.form-row input.is-hidden {
  opacity: 0;
   width: 10px;
}
.form-row input:focus {
  
}

.about-text {
  position: relative;
  overflow: hidden;
}
.about-first-text {
  font-size: 38px;
  font-weight: 600;
  width: 66%;
  margin-top: 145px;
  z-index: 1;
  position: relative;
  padding: 0 20px;
}
.about-last-text {
  font-size: 38px;
  font-weight: 600;
  width: 66%;
  margin-top: 145px;
  float: right;
  margin-bottom: 145px;
  z-index: 1;
  position: relative;
  padding: 0 20px;
}
.about-footer-image {
  width: 550px;
  margin: auto;
  border-radius: 920px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: -430px;
  position: relative;
}
.about-footer-image:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(41, 202, 249, 0.4);
}

.main-slider {
  height: calc(100vh - 100px);
  overflow: hidden;
}
.main-slider-item {
  height: 900px;
  height: calc(100vh - 100px);
  width: 100%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  display: none;
  display: block;
  color: #fff;
  text-decoration: none;
}
.main-slider-item.is-active {
  display: block;
}
.main-slider-item h2 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding-top: 355px;
  padding-top: calc(50vh - 130px);
  text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.20);
  margin: 0;
  font-size: 8vw;
  letter-spacing: 6px;
  line-height: 190px;
  z-index: 1;
  position: relative;
  white-space: nowrap;
}
.main-slider-item h3 {
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  width: 250px;
  text-align: right;
  font-size: 26px;
  position: absolute;
  top: calc(50vh + 40px);
  right: 10.5vw;
}
.main-slider-overlay {
  width: 350px;
  height: 350px;
  background: #ffdd00;
  position: absolute;
  border-radius: 200px;
  top: 50%;
  left: 50%;
  margin-left: -175px;
  margin-top: -175px;
}
.main-slider-overlay:after {
  content: '';
  display: block;
  border: 850px solid #ffdd00;
  width: 1080px;
  height: 1080px;
  border-radius: 2000px;
  box-sizing: content-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1390px;
  margin-top: -1390px;
  opacity: 0.8;
}

.main-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.main-image-item {
  /* height: 900px; */
    height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.main-image-item h2 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding-top: calc(50vh - 90px);
  margin: 0;
  font-size: 8vw;
  letter-spacing: 6px;
  line-height: 190px;
  text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.20);
  z-index: 1;
  position: relative;
  white-space: nowrap;
}
.main-image-item h3 {
  color: #ffffff;
  text-transform: uppercase;
  padding-top: 300px;
  margin: 0;
  width: 310px;
  text-align: right;
  font-size: 26px;
  position: absolute;
  bottom: 190px;
  right: 10.5vw;
}

.main-image-overlay {
  width: 350px;
  height: 350px;
  background: #5fc3e0;
  position: absolute;
  border-radius: 200px;
  top: 50%;
  left: 50%;
  margin-left: -175px;
  margin-top: -175px;
}
.main-image-overlay:after {
  content: '';
  display: block;
  border: 850px solid #5fc3e0;
  width: 1080px;
  height: 1080px;
  border-radius: 2000px;
  box-sizing: content-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1390px;
  margin-top: -1390px;
  opacity: 0.8;
}

.home-projects-section {
  padding: 60px 0 300px;
}

.home-project {
  position: relative;
  padding: 30px 0;
  height: 300px;
  background-repeat: no-repeat;
  background-position: -60000px;
  display: block;
  color: #000;
  text-decoration: none;
  z-index: 2;
}
.home-project:last-child {
  max-width: 730px;
}
.home-project .home-project-img,
.home-project img {
  position: relative;
  font-size: 0;
  border-radius: 270px;
  z-index: -1;
  background-position: center;
  background-size: cover;
}
.home-project .home-project-img:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 500px;
  opacity: 0.8;
}
.home-project-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
}
.home-project-arrow:after,
.home-project-arrow:before {
  content: '';
  border-radius: 200px;
  position: absolute;
  z-index: -1;
}
.home-project-1 .home-project-img {
  position: absolute;
}
.home-project-text {
  width: 425px;
  position: absolute;
  top: -110px;
  left: -160px;
}
.home-project-text h2 {
  text-transform: uppercase;
  font-size: 40px;
  margin: 0;
}
.home-project-text h3 {
  text-transform: uppercase;
  font-size: 16px;
  margin: 3px 0 30px 0;
}
.home-project-text p {
  font-size: 18px;
}
/*----------------------------------------------------------------------------*/
.home-project-1 img, .home-project-1 .home-project-img {
  width: 270px;
  height: 270px;
}
.home-project-1 .home-project-img {
  top: 15px;
  left: 40px;
}
.home-project-1 .home-project-img:after {
  background: #e73b57;
}
.home-project-1 .home-project-arrow {
  border-width: 200px 0 200px 200px;
  border-color: transparent transparent transparent #f2f2f2;
  top: -50px;
  left: 170px;
}
.home-project-1 .home-project-arrow:after {
  height: 70px;
  width: 70px;
  background: #ffdd00;
  bottom: -230px;
  left: -235px;
}
.home-project-1 .home-project-text {
  top: -110px;
  left: -160px;
  width: 520px;
}
/*----------------------------------------------------------------------------*/
.home-project-2 img, .home-project-2 .home-project-img {
  width: 530px;
  height: 530px;
}
.home-project-2 .home-project-img {
  top: -160px;
  float: right;
  right: 40px;
}
.home-project-2 .home-project-img:after {
  background: #ffdd00;
}
.home-project-2 .home-project-arrow {
  border-width: 380px 380px 380px 0;
  border-color: transparent #f2f2f2 transparent transparent;
  top: -245px;
  right: 300px;
}
.home-project-2 .home-project-arrow:after {
  height: 160px;
  width: 160px;
  background: #e73b57;
  bottom: -75px;
  left: 295px;
}
.home-project-2 .home-project-text {
  top: -100px;
  left: -170px;
  width: 510px;
  text-align: right;
}
/*----------------------------------------------------------------------------*/
.home-project-3 img, .home-project-3 .home-project-img {
  width: 370px;
  height: 370px;
}
.home-project-3 .home-project-img {
  top: -70px;
  left: 280px;
}
.home-project-3 .home-project-img:after {
  background: rgb(95, 195, 224);
}
.home-project-3 .home-project-arrow {
  border-width: 265px 265px 265px 0;
  border-color: transparent #f2f2f2 transparent transparent;
  top: -120px;
  left: 200px;
}
.home-project-3 .home-project-arrow:after {
  height: 70px;
  width: 70px;
  background: #334d5c;
  bottom: -250px;
  left: 235px;
}
.home-project-3 .home-project-arrow:before {
  height: 70px;
  width: 70px;
  background: #334d5c;
  bottom: 180px;
  left: 235px;
}
.home-project-3 .home-project-text {
  top: -110px;
  left: -200px;
  text-align: right;
}
/*----------------------------------------------------------------------------*/
.home-project-4 img, .home-project-4 .home-project-img {
  width: 260px;
  height: 260px;
}
.home-project-4 .home-project-img {
  top: -10px;
  right: 600px;
  float: right;
}
.home-project-4 .home-project-img:after {
  background: rgb(230, 58, 55);
}
.home-project-4 .home-project-arrow {
  border-width: 187.5px 0 187.5px 190px;
  border-color: transparent transparent transparent #f2f2f2;
  top: -40px;
  right: 540px;
}
.home-project-4 .home-project-arrow:after {
  height: 120px;
  width: 120px;
  background: #ffdd00;
  bottom: 35px;
  left: -245px;
}
.home-project-4 .home-project-text {
  top: -110px;
  left: -150px;
  width: 480px;
}
/*----------------------------------------------------------------------------*/
.home-project-5 img, .home-project-5 .home-project-img {
  width: 370px;
  height: 370px;
}
.home-project-5 .home-project-img {
  top: -65px;
  left: 30px;
}
.home-project-5 .home-project-img:after {
  background: rgb(255, 221, 0);
}
.home-project-5 .home-project-arrow {
  border-width: 265px 0 265px 265px;
  border-color: transparent transparent transparent #f2f2f2;
  top: -115px;
  left: 215px;
}
.home-project-5 .home-project-arrow:after {
  height: 70px;
  width: 70px;
  background: #00a099;
  bottom: -25px;
  left: -300px;
}
.home-project-5 .home-project-text {
  top: -110px;
  left: -220px;
}
/*----------------------------------------------------------------------------*/




.footer-section {
  position: relative;
  height: 1400px;
  width: 100%;
  overflow: hidden;
  background: transparent;
  margin-top: -400px;
}
.footer-section-mini {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  height: 50px;
}
.footer-wrap-map {
  width: 3000px;
  height: 1000px;
  transform: skew(45deg,-45deg);
  overflow: hidden;
  position: absolute;
  bottom: 200px;
  left: 37%;
  z-index: 1;
}
.footer-map {
  transform: rotate(45deg);
  width: 3000px;
  height: 1000px;
}
.footer-section .more-button {
  position: absolute;
  top: 220px;
  right: 50%;
  margin-right: -790px;
  width: 760px;
}
.footer-slogan {
  position: absolute;
  top: 510px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10vw;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 16px;
}
.footer-copyright {
  background: #fd0;
  padding: 15px;
  color: #fff;
  /* font-weight: 600; */
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  font-size: 16px;
}
.footer-about {
  padding: 15px;
  color: #000;
  /* font-weight: 600; */
  position: absolute;
  right: 0;
  left: 0;
  bottom: 340px;
  font-size: 16px;
  z-index: 1;
  letter-spacing: 1px;
   /* width: 40%; */
}
.footer-about h1 {
  font-size: 42px;
  margin-bottom: 18px;
}
.footer-about h1 i {
  color: #5fc3e0;
  font-style: normal;
}
.footer-about p {
  width: 470px;
  font-size: 18px;
}
.footer-contacts {
  padding: 15px;
  color: #000;
  /* font-weight: 600; */
  position: absolute;
  right: 0;
  left: 0;
  bottom: 100px;
  font-size: 18px;
  letter-spacing: 0px;
  z-index: 1;
   /* width: 30%; */
}
.footer-contacts a {
  color: #e73b57;
  margin-top: 10px;
  display: inline-block;
  transition: all 0.5s ease;
}
.footer-contacts a:hover {
  text-decoration: none;
}

/*------------------------------------------------------------------------------
## Slider Control
------------------------------------------------------------------------------*/

.slider-control {
  height: 125px;
  background: #f2f2f2;
  border-radius: 125px;
  display: inline-block;
  line-height: 125px;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  vertical-align: top;
  color: #cccccc;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
   z-index: 99999;
}
.slider-control-button {
  height: 125px;
  width: 125px;
  border-radius: 125px;
  border: none;
  background: #e73b57;
  color: #334d5c;
  vertical-align: top;
  position: relative;
  transition: all 0.2s ease;
  z-index: 1;
}
.slider-control-button:first-child {
  margin-right: 30px
}
.slider-control-button:last-child {
  /* margin-left: 30px */
}
.slider-control-button i {
  width: 20px;
  height: 40px;
  border-style: solid;
  border-width: 20px 20px 20px 0;
  border-color: transparent #fff transparent transparent;
  font-size: 0;
  display: inline-block;
  position: absolute;
  top: 42px;
  left: 50px;
}
.slider-control-button:last-child i {
  width: 20px;
  height: 40px;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #fff;
  font-size: 0;
  display: inline-block;
  position: absolute;
  top: 42px;
  left: 56px;
}
.slider-control-button.is-inactive {
  background: #f2f2f2;
}
.slider-control-counter {
  z-index: 1;
  position: relative;
  margin: 0;
  width: 120px;
  display: inline-block;
  text-align: center;
  font-size: 27px;

}
.slider-control-counter .is-active {
  color: #e73b57;
  transition: all 0.2s ease;
}
.slider-control-grey:before,
.slider-control:before,
.slider-control:after {
  position: absolute;
  background: #e6e6e6;
  width: 125px;
  height: 125px;
  content: "";
  display: block;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  top: 0;
}
.slider-control:before,
.slider-control-grey:before {
  left: 0;
}
.slider-control:after {
  right: 0;
}
.slider-control:hover .slider-control-grey:before {
  animation: wave-animate 0.8s ease;
}
.slider-control-wawe-next:after {
  animation: wave-animate 0.5s ease;
  background: #e73b57;
}
.slider-control-wawe-prev:before {
  animation: wave-animate 0.5s ease;
  background: #e73b57;
}
@keyframes wave-animate {
  0% {
    transform: scale(0);
    opacity: 1;
    transform-origin: center;
  }
  80% {
    opacity: 0;
    transform-origin: center;
  }
  100% {
    transform: scale(10);
    opacity: 0;
    transform-origin: center;
  }
}

/*------------------------------------------------------------------------------
## More
------------------------------------------------------------------------------*/

.more-button {
  height: 125px;
  background: #f2f2f2;
  border-radius: 125px;
  display: inline-block;
  line-height: 125px;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  padding-right: 90px;
  vertical-align: top;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  text-decoration: none;
}
.more-button:before,
.more-button:after {
  position: absolute;
  background: #e6e6e6;
  width: 125px;
  height: 125px;
  content: "";
  display: block;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  top: 0;
  left: 0;
}
.more-button:hover:before {
  animation: wave-animate-more 1s cubic-bezier(0.15, 0.37, 0.28, 0.38);
}
.more-button-wawe:after {
  animation: wave-animate-more 0.5s cubic-bezier(0.15, 0.37, 0.28, 0.38);
  background: #5fc3e0;
}
@keyframes wave-animate-more {
  0% {
    transform: scale(0);
    opacity: 1;
    transform-origin: center;
  }
  80% {
    opacity: 0.8;
    transform-origin: center;
  }
  100% {
    transform: scale(14);
    opacity: 0;
    transform-origin: center;
  }
}
.more-button-arrow {
  height: 125px;
  width: 125px;
  border-radius: 125px;
  border: none;
  background: #5fc3e0;
  color: #334d5c;
  vertical-align: top;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}
.more-button-arrow i {
  width: 20px;
  height: 40px;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #334d5c;
  font-size: 0;
  display: inline-block;
  position: absolute;
  top: 42px;
  left: 56px;
}
.more-button-text {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: #000;
}

/*------------------------------------------------------------------------------
## Header
------------------------------------------------------------------------------*/

.header {
  position: absolute;
  z-index: 2;
  top: 85px;
  left: 50px;
}
.header .logo {
  height: 110px;
  width: 110px;
  background: #ffffff;
  border-radius: 65px;
  display: inline-block;
  font-weight: 600;
  padding-top: 27px;
  padding-left: 22px;
  vertical-align: top;
  font-size: 23px;
  color: #1d1d1b;
  letter-spacing: 2px;
}
.header .logo i {
  color: #5fc3e0;
  font-style: normal;
}

.main-menu {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
  padding: 0;
}
.main-menu li {
  display: inline-block;
}
.main-menu a {
  color: #1d1d1b;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 45px;
  display: inline-block;
  text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.30);
  vertical-align: top;
  letter-spacing: 2px;
  margin: 0 19px;
  font-size: 29px;
  position: relative;
}
.header.white .main-menu a {
  color: #fff;
}

.main-menu a:after {
  content: '';
  display: block;
  background: #fd0;
  position: absolute;
  height: 5px;
  border-radius: 3px;
  bottom: 20px;
  width: 0;
  left: -7px;
  transition: all 0.5s ease;
}

.main-menu a:hover:after,
.main-menu a.is-active:after {
  width: calc(100% + 14px);
}

.mobile-header {
  height: 65px;
  background: #e73b57;
  border-radius: 65px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-right: 55px;
  transition: all 1s ease;
  width: 335px;
}
.mobile-header .logo {
  height: 65px;
  width: 65px;
  background: #ffffff;
  border-radius: 65px;
  display: inline-block;
  margin-left: -1px;
  font-weight: 600;
   padding-top: 16px;
  padding-left: 14px;
  vertical-align: top;
  font-size: 13px;
  color: #1d1d1b;
}
.mobile-header .logo i {
  color: #5fc3e0;
}
.mobile-menu {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
  padding: 0;
  opacity: 1;
  transition: all 0.5s ease;
}
.mobile-menu li {
  display: inline-block;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 65px;
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0px;
  margin: 0 1px;
  font-size: 10px;
  position: relative;
}
.mobile-menu a:hover:after,
.mobile-menu a.is-active:after {
  content: '';
  display: block;
  background: #fd0;
  position: absolute;
  height: 3px;
  width: calc(100% + 8px);
  border-radius: 3px;
  bottom: 18px;
  left: -4px;
  animation: active-mobile-menu-animate 0.5s ease;
}
@keyframes active-mobile-menu-animate {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% + 8px);
  }
}
.mobile-menu-lang {
  opacity: 1;
  transition: all 0.5s ease;
}
.mobile-menu a {
  opacity: 1;
  transition: all 1s cubic-bezier(1, 0, 1, 0);
}

.mobile-header.is-closed {
  width: 140px;
  border-radius: 65px;
}
.mobile-header.is-closed .mobile-menu {
  opacity: 0;
}
.mobile-header.is-closed .mobile-menu a {
  opacity: 0;
}
.mobile-header.is-closed .mobile-menu-lang {
  opacity: 0;
}
.mobile-header.is-closed .show-mobile-menu {
  /* animation: spin 1s ease; */
}
.show-mobile-menu {
  width: 28px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin: 20px 20px 20px 5px;
  display: inline-block;
  vertical-align: top;
}
.show-mobile-menu .bar {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}
.show-mobile-menu .bar-1 {
  top: 0px;
}
.show-mobile-menu .bar-2 {
  top: 10px;
}
.show-mobile-menu .bar-3 {
  top: 20px;
}
.show-mobile-menu.is-active .bar-1 {
  top: 10px;
  transform: rotate(135deg);
}
.show-mobile-menu.is-active .bar-2 {
  opacity: 0;
  left: -60px;
}
.show-mobile-menu.is-active .bar-3 {
  top: 10px;
  transform: rotate(-135deg);
}
@keyframes spin { 
  0% { 
    transform:rotate(0);
  } 
  30% { 
    transform:rotate(180deg);
  } 
  100% { 
    transform:rotate(180deg);
  } 
}

/*------------------------------------------------------------------------------
## Close Buttons
------------------------------------------------------------------------------*/

.close-button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 10px;
  display: block;
  z-index: 1;
}
.close-button .bar {
  width: 30px;
  height: 6px;
  background: #e63a37;
  border-radius: 5px;
  position: absolute;
  top: 12px;
}
.close-button .bar:first-child {
  transform: rotate(45deg);
}
.close-button .bar:last-child {
  transform: rotate(-45deg);
}
.close-button.style-1 .bar {
  background: #e63a37;  
}
.close-button.style-2 .bar {
  background: #ffdd00;  
}
.close-button.style-3 .bar {
  background: #00a099;  
}
.close-button.style-4 .bar {
  background: #5fc3e0;  
}
.close-button.style-5 .bar {
  background: #334d5c;  
}
.close-button.style-6 .bar {
  background: #e73b57;  
}
img[data-enlargable] {
  cursor: zoom-in
}
.zoom-proj {
  width: 45px;
  height: 45px;
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 40px;
  position: absolute;
  top: 105px;
  right: 20px;
  cursor: zoom-in
}
.zoom-proj img {
  width: 25px;
}

/*------------------------------------------------------------------------------
# Demo
------------------------------------------------------------------------------*/


.demo-container {
  max-width: 1750px;
  padding: 40px 30px;
  margin: auto;
  border-bottom: 1px dashed #e73b57;
}
.demo-row.gray {
  background: #f2f2f2;
}

.mobile-header {
  display: none;
}

.controls-fs {
  position: fixed;
  bottom: 30px;
  left: 50vw;
  margin-left: -145px;
}

@media (min-width: 813px) and (max-width: 1600px) { 

.project-list-item .is-default {
    padding-left: 30px;
}
/*   .project-list-item:hover .is-default h3,
.project-list-item:hover .is-default h4 {
  opacity: 1;
  transform: translateY(0);
}

.project-list-item:hover .is-default p {
  transform: translateY(0);
}
.project-list-item:hover:after {
  right: 0%;
}
.project-list-item:after {
    transform: skewX(0);
} */

  .zoom-proj {
    display: none;
  }
  .header-section .header {
    left: 50px;
    top: 50px;
  }
  .main-slider-overlay,
  .main-image-overlay {
    top: calc(50vh - 50px);
  }
  .main-image-overlay {
    /* top: calc(50vh - 235px); */
    /* top: calc(50vh - 95px); */
    top: calc(50vh - 0px);
    
  }
  .main-slider-overlay:after,
  .main-image-overlay:after {
    width: 800px;
    height: 800px;
    margin-left: -1250px;
    margin-top: -1250px;
  }
  .slider-control {
    height: 80px;
    border-radius: 80px;
    line-height: 80px;
    font-size: 30px;
  }
  .slider-control-button {
    height: 80px;
    width: 80px;
    border-radius: 80px;
  }
  .slider-control-button i {
    width: 15px;
    height: 30px;
    border-width: 15px 15px 15px 0;
    top: 25px;
    left: 30px;
  }
  .slider-control-button:last-child i {
    width: 15px;
    height: 30px;
    border-width: 15px 0 15px 15px;
    top: 25px;
    left: 36px;
  }
  .slider-control-grey:before, 
  .slider-control:before, 
  .slider-control:after {
    width: 80px;
    height: 80px;
  }
  .header-section .slider-control {
    bottom: -40px;
  }
  .home-project {
    padding: 130px 0;
  }

  /*----------------------------------------------------------------------------*/
  .home-project-1 .home-project-img {
    top: 15px;
    left: 40px;
  }
  .home-project-1 .home-project-arrow {
    top: -50px;
    left: 170px;
  }
  .home-project-1 .home-project-text {
    top: -110px;
    left: -160px;
    width: 390px;
  }
  /*----------------------------------------------------------------------------*/
  .home-project-2 .home-project-img {
    top: -160px;
    right: 40px;
  }
  .home-project-2 .home-project-arrow {
    top: -145px;
    right: 300px;
  }
  .home-project-2 .home-project-text {
    top: -100px;
    left: -170px;
    width: 510px;
  }
  /*----------------------------------------------------------------------------*/
  .home-project-3 .home-project-img {
    top: -70px;
    left: 280px;
  }
  .home-project-3 .home-project-arrow {
    top: -20px;
    left: 200px;
  }
  .home-project-3 .home-project-text {
    top: -110px;
    left: -200px;
  }
  .home-project.home-project-3 {
    margin-top: 170px;
  }
  /*----------------------------------------------------------------------------*/
  .home-project-4 .home-project-img {
    top: -10px;
    right: 340px;
    float: right;
  }
  .home-project-4 .home-project-arrow {
    top: 60px;
    right: 280px;
  }
  .home-project-4 .home-project-text {
    top: -110px;
    left: -150px;
    width: 400px;
  }
  .home-project.home-project-4 {
    margin-top: 120px;
  }
  /*----------------------------------------------------------------------------*/
  .home-project-5 .home-project-img {
    top: -65px;
    left: 30px;
  }
  .home-project-5 .home-project-arrow {
    top: -15px;
    left: 215px;
  }
  .home-project-5 .home-project-text {
    top: -110px;
    left: -220px;
  }
  .home-project.home-project-5 {
    margin-top: 70px;
  }
  /*----------------------------------------------------------------------------*/

  .footer-section .more-button {
    top: 370px;
    margin-right: -690px;
  }
  .footer-slogan {
    top: 570px;
  }
  .main-more,
  .main-more-image-overlay,
  .footer-about {
    z-index: 3;
  }
  .main-more-image {
    z-index: 2;
  }
  .footer-contacts,
  .footer-about {
    width: 50%;
  }
  .about-first-text {
    width: 90%;
    margin-top: 35px;
  }
  .about-last-text {
    width: 80%;
    padding: 0 35px;
  }
  .project-list-item:hover .is-hover .h3 {
    font-size: 3vw; /*9*/
  }
  .header-title {
    top: 220px;
    right: 80px;
    width: 600px;
    font-size: 100px;
  }
  .project-big-header {
    width: auto;
    margin: 0 30px;
  }
  .project-desc-col-text {
    width: 40%;
    padding: 275px 0px 0px 60px;
    font-size: 15px;
  }
  .project-desc-col-image {
    width: 59%;
    padding: 300px 40px 0px 30px;
  }
  .proj-slider-control {
    bottom: 20px;
  }
}

@media (min-width: 813px) and (max-width: 900px) {
  .main-menu a {
      font-size: 19px;
  }
  .project-list-more {
    display: none;
  }
  .project-desc-col-more {
    left: 80px;
  }
  .project-big-header {
    font-size: 24px;
  }
  .project-list-item:hover .is-default h3,
  .project-list-item:hover .is-default h4 {
    opacity: 1;
    transform: translateY(0);
  }
  
  .project-list-item:hover .is-default p {
    transform: translateY(0);
  } 
    
   .project-list-item:hover:after {
    right: 0%;
  }
  
  .project-list-item:after {
      transform: skewX(0);
  }
  .is-hover {
    display: none !important;
  }
}

@media (min-width: 100px) and (max-width: 560px) {
  .header-title {
    font-size: 27px !important;
  }
  
  .header-filter a {
    letter-spacing: 0px;
    margin: 0 5px;
    font-size: 18px;
  }

}
@media (min-width: 100px) and (max-width: 813px) {   
  .project-list-item:hover .is-default h3,
  .project-list-item:hover .is-default h4 {
    opacity: 1;
    transform: translateY(0);
  }
  .project-list-more {
    display: none;
  }
  .project-list-item, .project-list-item:hover {
    padding: 20px;
  }
  .project-list-item:hover .is-default p {
    transform: translateY(0);
  }
  .project-list-item:hover:after {
    right: 0%;
  }
  .project-list-item:after {
      transform: skewX(0);
  }
  .header-section.contacts {
    margin-bottom: 0;
  }
  .footer-section.contacts .footer-wrap-map {
    margin-top: 0;
  }
  .footer-section.contacts .footer-about{
    bottom: 375px;
  }
  .mobile-menu-lang {
    display: block;
  }
  .project-desc-col-image > img {
    width: 100%;
    height: 65vw;
    object-fit: cover;
  }
  .zoom-proj {
    display: none;
  }
  .main-slider-overlay:after,
  .main-image-overlay:after {
    width: 350px;
    height: 350px;
    margin-left: -1025px;
    margin-top: -1025px;
  }
  .main-slider-overlay,
  .main-image-overlay {
    width: 90px;
    height: 90px;
    top: calc(50vh + 140px);
    margin-left: -45px;
  }
  .main-slider-overlay {
    top: calc(50vh - -90px);
  }
  .main-slider-item h2 {
    letter-spacing: 2px;
  }
  .main-image-item h2 {
    letter-spacing: 2px;
  }
  .header {
    display: none !important;
  }
  .slider-control {
    height: 80px;
    border-radius: 80px;
    line-height: 80px;
    font-size: 30px;
    right: 50% !important;
    width: 300px;
    margin-right: -150px;
    bottom: -40px !important;
   z-index: 3;
  }
  .slider-control-button {
    height: 80px;
    width: 80px;
    border-radius: 80px;
  }
  .slider-control-button i {
    width: 15px;
    height: 30px;
    border-width: 15px 15px 15px 0;
    top: 25px;
    left: 30px;
  }
  .slider-control-button:last-child i {
    width: 15px;
    height: 30px;
    border-width: 15px 0 15px 15px;
    top: 25px;
    left: 36px;
  }
  .slider-control-grey:before, 
  .slider-control:before, 
  .slider-control:after {
    width: 80px;
    height: 80px;
  }
  .mobile-header {
    display: block;
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    border-radius: 65px 65px 0 65px;  
    overflow: visible;
  }
  .home-projects-section {
    padding: 0 0 0px;
    /* padding: 0 0 40px; */
    margin-top: -80px;
  }
  .home-project,
  .home-project:hover {
    padding: 20px;
    height: auto;
    background-position: center;
    background-size: cover;
    opacity: 1 !important;
    transform: translateZ(0);
    overflow: hidden;
  }
  .home-project:last-child {
    max-width: initial;
  }
  .home-project-arrow {
    width: auto;
    height: auto;
    position: static;
    border: none;
  }
  .home-project-text {
    position: static;
   text-align: left !important;
   width: 100% !important;
  }
  .home-project-arrow:after, 
  .home-project-arrow:before {
    display: none;
  }
  .home-project .home-project-img {
    position: absolute;
    font-size: 0;
    border-radius: 270px;
    z-index: -1;
    top: 0 !important;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
     min-height: 520px;
    border-radius: 0;
  }
  .home-project img {
    display: none;
  }
  .home-project .home-project-img:after {
    border-radius: 0;
  }
  .home-project-text h2 {
    font-size: 30px;
  }
  .home-project-1 .home-project-text {
    padding-top: 50px;
  }
  .home-project-1 h2,
  .home-project-1 h3,
  .home-project-1 p,
  .home-project-4 h2,
  .home-project-4 h3,
  .home-project-4 p {
    color: #fff;
  }
  .footer-section {
    margin-top: 0;
  }
  .more-button {
    height: 80px;
    width: 375px;
    font-size: 21px;
    line-height: 80px;
    padding-right: 40px;
  }
  .more-button:before, .more-button:after {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
  }  
  .more-button-arrow {
    height: 80px;
    width: 80px;
    border-radius: 125px;
    border: none;
    background: #5fc3e0;
    color: #334d5c;
    vertical-align: top;
    margin-right: 20px;
    position: relative;
    z-index: 1;
  }
  .more-button-arrow i {
    width: 15px;
    height: 30px;
    border-width: 15px 0 15px 15px;
    top: 25px;
    left: 36px;
  }
  .footer-section .more-button {
    position: relative;
    top: 0;
    right: -40px;
    margin-right: 0;
    width: 375px;
  }
  .footer-wrap-map {
    width: 100%;
    height: 730px;
    transform: none;
    position: static;
    bottom: 200px;
    z-index: 1;
    margin-top: 40px;
  }
  .footer-map {
    transform: none;
    width: 100%;
    height: 730px;
  }
  .footer-slogan {
    color: #fd0;
    font-size: 100px;
    text-align: left;
    padding: 0 30px;
    top: 150px;
    line-height: 110px;
    width: 300px;
  }
  
  .footer-about h1 {
    display: none;
  }
  .footer-section {
    height: 1110px;
  }
  .main-more {
    margin-left: 50px;
     z-index: 2;
  }
  .main-more-image-overlay {
    margin-left: 245px;
    z-index: 3;
  }
  
  .footer-about {
    z-index: 2;
  }
  .footer-about p {
    width: 100%;
  }
  .main-more-image {
    margin-left: -115px;
    z-index: 1;
  }
  
  .header-close {
    top: 27px;
    right: 20px;
    opacity: 1;
    transition: all 0.5s ease;
  }
  .header-close.is-hidden {
    opacity: 0;
    display: none;
  }
  .main-image-item {
    height: 100vh;
  }
  .main-image-item h2 {
    padding-top: calc(50vh - 80px);
    text-shadow: 1px 1px 0px #000;
  }
  .header-section-image {
    height: 100vh;
    margin-bottom: 0;
  }
.about-first-text {
  font-size: 21px;
  width: 100%;
  margin-top: 75px;
}
.about-last-text {
  font-size: 21px;
  width: 90%;
  margin-top: 115px;
  margin-bottom: 165px;
  text-align: right;
}
.marquee {
  font-size: 60px;
  top: 210px;
}  
.about-footer-image {
  width: 375px;
}
.form-container {
  max-width: 100%;
}  
.form-row input {
  width: 350px;
  width: 98%;
}
.form-row {
  position: relative;
}
.form-row .desc-2 {
  text-align: right;
  position: absolute;
  top: 10px;
  right: 30px;
  z-index: -1;
  font-size: 17px;
}
.form-row input {
  background: transparent;
}
.form-row .desc-1 {
  text-align: left;
  position: absolute;
  top: -170px;
  left: 20px;
  z-index: -1;
}
  
.header-bg {
  width: 180px;
  height: 180px;
  top: -30px;
  left: -20px;
}
  
.header-title {
  top: 110px;
  right: 30px;
  font-size: 40px;
  width: 310px;
}
.header-title-up {
  top: 30px;
}

.header-filter {
  bottom: 25px;
}

.header-section-mini {
  height: 250px;
}  
  
.project-list-item .is-hover {
  opacity: 0 !important;
}
  
.project-list-item p {
  width: 100%;
}

.project-list-item:after {
  background: #e73b57;
  opacity: 0.8;
}

.project-list-item h3 {
  margin: 15px 0 4px 0;
  font-size: 35px;
}
  
.project-list-item, .project-list-item:hover {
  height: auto;
  color: #fff;
}
.project-list-item h4 {
  color: #fff;
}
.projects-more-block {
  padding: 70px 10px;
  display: none;
}
.projects-more-block .more-button {
  text-align: left;
  width: 355px;
  font-size: 20px;
}



.main-image-item h3 {
  color: #ffffff;
  right: 0;
  font-size: 18px;
  text-align: center;
  left: 0;
  width: auto;
}


.project-ball {
  width: 300px;
  height: 300px;
  margin-left: -110px;
  margin-top: -80px;
}

.project-big-header {
  font-size: 20px;
  width: 100%;
  padding: 30px;
}

.project-big-header:before {
  font-size: 110px;
  top: 20px;
  left: 20px;
}
.project-big-header:after {
  font-size: 110px;
  bottom: -30px;
  left: 20px;
}
.project-desc-col-text {
  width: 100%;
  padding: 320px 20px 0px 80px;
}
.project-desc-col-image {
  width: 100%;
  padding: 30px 0 0px 0;
}
.proj-slider-item {
  width: 160px;
  height: 105px;
}
.proj-slider {
  height: 105px;
  margin-top: 40px;
}
.project-desc-col-text {
  padding-top: 320px !important;
}

}

@media (min-width: 813px) {   
/*   .project-list-item:hover .is-default h3,
.project-list-item:hover .is-default h4 {
  opacity: 1;
  transform: translateY(0);
}

.project-list-item:hover .is-default p {
  transform: translateY(0);
} */
  
/*   .project-list-item:hover:after {
  right: 0%;
}

.project-list-item:after {
    transform: skewX(0);
} */
    .header-section-custom {
    display: flex;
    align-items: center;
  }

  .header-section-custom .header-title {
    top: initial;
    right: 150px;
    padding-top: 125px;
  }
}

.projects-more-block {
    padding: 0;
    text-align: right;
    opacity: 0;
    height: 0;
}

.projects-more-block .more-button{
    height: 0;
}