@import "../node_modules/hamburgers-master/dist/hamburgers.css";
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

.overlay {
  display: none;
  width: 100%;
  height: 100%;
  background-color: #ffffffe8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.overlay.open {
  display: flex;
  justify-content: flex-end;
  -webkit-animation: slide-down 0.3s ease-out;
  -moz-animation: slide-down 0.3s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
a {
  text-decoration: none;
  color: black;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Hind", sans-serif;
  font-weight: 100;
  width: 100%;
}
body.overflow {
  overflow: hidden;
}

.mainWrap {
  position: relative;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 120px;
  transition: all 100ms ease;
}
.mainWrap .title {
  color: #DF3940;
  margin-bottom: 20px;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  display: block;
  padding: 10px 0;
}
@media only screen and (max-width: 950px) {
  .mainWrap {
    padding: 50px 70px;
  }
}
@media only screen and (max-width: 700px) {
  .mainWrap {
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 500px) {
  .mainWrap {
    padding-bottom: 0;
  }
}
.mainWrap .sayingHi {
  font-size: 30px;
  text-align: center;
  transition: all 200ms ease;
  max-width: 860px;
  margin: 0 auto;
}
.mainWrap .sayingHi .imgWrap {
  width: 100%;
  margin: 0 auto 0;
}
@media only screen and (max-width: 500px) {
  .mainWrap .sayingHi .imgWrap {
    margin: 20px auto 0;
  }
}
.mainWrap .sayingHi .imgWrap img {
  width: 100%;
}
.mainWrap .sayingHi span {
  font-weight: 500;
}

.designWrapper,
.devWrapper,
.artWrapper {
  display: none;
}
.designWrapper .paddingTop,
.devWrapper .paddingTop,
.artWrapper .paddingTop {
  padding-top: 160px;
}
.designWrapper.show,
.devWrapper.show,
.artWrapper.show {
  display: block;
}

.header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999;
  box-shadow: 0 1px 10px #e6e6e6a1;
  height: 100px;
  background-color: #fff;
}
.header.fixed .headerInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 120px;
}
@media only screen and (max-width: 500px) {
  .header.fixed {
    height: 152px;
    padding-top: 30px;
  }
  .header.fixed .headerInner {
    padding: 0 120px;
  }
}

@media only screen and (max-width: 500px) {
  .page .fixed {
    height: 115px;
  }
}

.headerInner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  transition: all 200ms ease;
}
.headerInner .logo {
  width: 120px;
}
.headerInner .menu {
  margin-top: 10px;
}
@media only screen and (max-width: 500px) {
  .headerInner {
    margin: 0;
    align-items: center;
    flex-direction: column;
  }
}
.headerInner .logo {
  background: url(../imgs/_main/logo.png) no-repeat;
  width: 169px;
  height: 85px;
  background-size: contain;
  opacity: 1;
  transition: opacity 0.3s linear;
  cursor: pointer;
}
@media only screen and (max-width: 650px) {
  .headerInner .logo {
    width: 140px;
    height: 70px;
  }
}
.headerInner .logo:hover {
  opacity: 0.8;
}
.headerInner .menu {
  font-family: "Hind", sans-serif;
  margin-top: 30px;
}
.headerInner .menu a {
  margin-right: 20px;
  text-transform: none;
  text-decoration: none;
  color: #333;
  transition: all 0.2s linear;
  font-size: 17px;
}
.headerInner .menu a:last-child {
  margin-right: 0;
}
.headerInner .menu a:hover {
  color: #DF3940;
}
.headerInner .menu .selected {
  border-bottom: 3px solid #DF3940;
}

.itemsList {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  width: 100%;
}
.itemsList li {
  background-color: #ffca06;
  text-align: center;
  white-space: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  box-shadow: 0 0 5px 1px #bfbfbf91;
  width: 250px;
}
.itemsList li .item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.itemsList li .item img {
  width: 100%;
}
@media only screen and (min-width: 1500px) {
  .itemsList li {
    width: 340px;
  }
}
@media only screen and (max-width: 500px) {
  .itemsList li {
    height: auto;
  }
}

.item {
  display: block;
  position: relative;
}
.item:hover .hover {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.item.notLink {
  cursor: auto;
}
.item .hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 23px;
  height: 100%;
  margin: 0;
  opacity: 0;
  vertical-align: text-bottom;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  text-align: center;
  background: #000;
}
.item .hover .workName {
  color: #fff;
  padding: 10px 20px;
  line-height: 25px;
  text-transform: uppercase;
  font-family: "Hind", sans-serif;
}
.item .hover .workDisc {
  text-transform: none;
  line-height: 20px;
  white-space: normal;
  font-size: 14px;
  color: #ffffff;
  padding: 0 15px;
}
.item img {
  width: 100%;
  display: block;
}

.txTitle {
  display: block;
  text-align: center;
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.innerWrapper .subtitle {
  display: block;
  font-size: 17px;
  color: #df3a40;
  font-weight: 500;
  margin-top: 50px;
}
.innerWrapper span {
  text-align: center;
  margin: 0 auto 0;
  display: block;
  font-size: 18px;
}
.innerWrapper ul, .innerWrapper li {
  list-style: none;
}

.allThingsWrap {
  padding: 0 40px 30px;
  text-align: center;
}
.allThingsWrap .thingsWrap {
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: 300px 300px;
  justify-content: center;
  padding: 0;
}
.allThingsWrap .thingsWrap li {
  background-color: #DF3940;
  text-align: center;
  height: 300px;
  align-items: center;
  display: flex;
}
.allThingsWrap .thingsWrap li:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 650px) {
  .allThingsWrap .thingsWrap {
    grid-template-columns: 80%;
  }
  .allThingsWrap .thingsWrap li {
    height: 150px;
  }
}

.mobMenu {
  display: none;
}

input.mobMenuCC {
  display: none;
}

.mobileMenu {
  display: none;
}

@media only screen and (max-width: 650px) {
  .menu {
    display: none;
  }

  .menuPop {
    display: flex;
    flex-direction: column;
    background-color: #DF3940;
    width: 100%;
    height: 100vh;
    justify-content: center;
    box-shadow: 1px 0 8px #00000057;
  }
  .menuPop a {
    align-self: flex-start;
    display: block;
    opacity: 0.7;
    color: #FFFFFF;
    font-size: 45px;
    text-align: center;
    text-decoration: none;
    position: relative;
    width: 100%;
    line-height: 110px;
    font-weight: 600;
  }
  .menuPop .onMenu {
    color: #FFFFFF;
    opacity: 1;
  }
  .menuPop:after {
    content: "";
    position: absolute;
  }
}
.filter {
  display: flex;
  margin: 0 auto 40px;
  justify-content: center;
  padding: 0 120px;
  color: #DF3940;
}
.filter.ffixed {
  position: fixed;
  top: 53px;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 500px) {
  .filter.ffixed {
    top: 80px;
  }
}
@media only screen and (max-width: 500px) {
  .filter {
    justify-content: space-between;
    padding: 0 70px;
    margin-top: 20px;
  }
}
.filter a {
  font-size: 21px;
  padding: 10px 0;
  margin: 0 10px;
  cursor: pointer;
  float: left;
  font-weight: 300;
  color: #DF3940;
}
.filter a:hover {
  color: #DF3940;
}
.filter .selectedTab {
  font-weight: 900;
}

.workContainer {
  display: none;
}

.workContainer,
.designContainer,
.logos,
.allWork {
  margin: 0 auto;
  padding: 0 100px;
}
.workContainer .inner,
.designContainer .inner,
.logos .inner,
.allWork .inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 650px) {
  .workContainer,
.designContainer,
.logos,
.allWork {
    padding: 0 0;
    padding-bottom: 80px;
  }
  .workContainer .item:first-child,
.designContainer .item:first-child,
.logos .item:first-child,
.allWork .item:first-child {
    /*margin-top: 10px;*/
  }
}

.about {
  padding: 0 120px;
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
  max-width: 980px;
  margin: 0 auto;
}
@media only screen and (max-width: 650px) {
  .about {
    padding: 0 30px;
    padding-bottom: 80px;
    flex-direction: column;
  }
  .about div.portret {
    width: 100%;
  }
  .about div.aboutContainer {
    padding: 0;
    margin-top: 20px;
  }
}
.about div {
  display: inline-block;
}
.about .portret img {
  width: 100%;
}
.about .aboutContainer {
  vertical-align: top;
  /*margin-top: 30px;*/
  padding-left: 50px;
}
.about .aboutContainer span {
  display: block;
  margin-bottom: 14px;
}
.about .aboutContainer .hi {
  display: block;
  font-size: 19px;
}
.about .aboutContainer .txt {
  line-height: 25px;
  display: block;
  margin-bottom: 20px;
}
.about .aboutContainer a {
  color: #DF3940;
  font-weight: 500;
}
.about .aboutContainer a:hover {
  opacity: 0.7;
}

.social {
  display: block;
}
.social.cont {
  text-align: center;
}
.social span {
  margin-bottom: -3px;
}
.social a {
  margin-right: 10px;
  color: #DF3940;
  font-weight: 500;
}
.social a:hover {
  opacity: 0.7;
}

.contact {
  padding: 0 130px 100px;
  font-family: "Hind", sans-serif;
  max-width: 1400px;
  margin: 0 auto;
}
.contact .thankyou {
  display: none;
  font-size: 32px;
  line-height: 35px;
  /*display: inline-block;*/
}
.contact .thankyou #errormsg {
  position: absolute;
}
.contact .thankyou span {
  display: block;
  font-size: 15px;
}
.contact #errormsg {
  position: absolute;
  bottom: 100px;
  font-size: 11px;
  color: red;
  font-style: italic;
}
.contact .title {
  color: #DF3940;
  margin-bottom: 20px;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  display: block;
  padding: 10px 0;
}
.contact textarea {
  display: block;
  font-size: 16px;
  border: 1px solid #bebebe;
  width: 100%;
  height: 90px;
  margin-bottom: 30px;
  resize: none;
  padding: 10px 15px;
  box-sizing: border-box;
  outline: 0px;
}
.contact textarea::-webkit-input-placeholder {
  color: #bebebe;
  /*font-family: 'Inconsolata', monospace;*/
  font-family: "Hind", sans-serif;
}
.contact input {
  display: block;
  font-size: 16px;
  padding: 10px 15px;
  outline: none;
  border: none;
  width: 100%;
  margin-bottom: 30px;
  /*background-color: #f5e5cb;*/
  border-bottom: 1px solid #bebebe;
  color: #333;
  font-family: "Hind", sans-serif;
  box-sizing: border-box;
}
.contact input::-webkit-input-placeholder {
  color: #bebebe;
  /*font-family: 'Inconsolata', monospace;*/
  font-family: "Hind", sans-serif;
}
.contact input[type=text] {
  /*height: 50px;*/
  /*padding-bottom: 50px;*/
}
.contact label {
  margin-bottom: 10px;
  display: block;
}
.contact button {
  border: none;
  background-color: #DF3940;
  float: right;
  padding: 10px 15px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
.contact button:hover {
  /*background-color:#f5e5cb;*/
  opacity: 0.8;
  /*color: #333;*/
  cursor: pointer;
}
@media only screen and (max-width: 650px) {
  .contact {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 80px;
  }
  .contact .form {
    display: block;
    width: 100%;
    padding-top: 20px;
  }
  .contact .myInfo {
    margin: 40px 0;
    width: 100%;
    text-align: left;
    padding-right: 0;
  }
  .contact .myInfo:after {
    display: none;
  }
}
@media only screen and (max-width: 650px) {
  .contact {
    margin-bottom: 140px;
    padding: 0 40px;
  }
}

.form {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.myInfo {
  max-width: 400px;
  margin: 0 auto 30px;
  text-align: center;
}
.myInfo a {
  color: #333;
  text-decoration: none;
  font-size: 17px;
  display: block;
  margin: 10px 0;
}
.myInfo a:hover {
  text-decoration: underline;
  color: #DF3940;
}
@media only screen and (max-width: 650px) {
  .myInfo {
    margin-bottom: 10px;
  }
  .myInfo .title {
    text-align: center;
  }
  .myInfo a {
    text-align: center;
  }
}

.designContainer {
  display: none;
}
.designContainer .tempImg {
  background-image: url(../imgs/_main/soon2.png);
  background-size: contain;
  width: 250px;
  height: 250px;
  display: block;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.designContainer img {
  width: 100%;
}

.logos {
  display: none;
}
.logos .item {
  border: 1px solid #dedbdb;
}

.footer {
  width: calc(100% - 240px);
  padding: 20px 120px;
  font-size: 13px;
  color: #bebebe;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 650px) {
  .footer {
    padding: 0 0 10px 0;
    width: 100%;
    position: relative;
  }
}
.footer .totop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 20px;
  background-image: url(../imgs/_icons/arroww.png);
  margin: 0 0 5px;
  width: 30px;
  height: 37px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 650px) {
  .footer .totop {
    right: 13px;
    /*      &:before{
            content: '';
            width: 20px;
            height: 20px;
            background-color: #fff;
            position: fixed;
            top: 0;
          }*/
  }
}

.thanks {
  text-align: center;
  font-size: 30px;
  color: #DF3940;
  margin: 100px auto;
}
.thanks span {
  font-size: 20px;
  display: block;
  margin-top: 20px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 35px !important;
  background-color: #df3a40 !important;
}

.hamburger-inner {
  top: 10px !important;
  right: 10px !important;
}

.hamburger-inner.white {
  background-color: #FFFFFF !important;
}
.hamburger-inner.white:before, .hamburger-inner.white:after {
  background-color: #FFFFFF !important;
}

/*start Menu hamburge start */
.menu-wrapper {
  z-index: 1001;
  display: none;
  position: fixed;
  top: 26px;
  right: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 650px) {
  .menu-wrapper {
    display: block;
  }
}

.hamburger-menu,
.hamburger-menu:after,
.hamburger-menu:before {
  width: 25px;
  height: 3px;
  border-radius: 2px;
}

.hamburger-menu {
  padding-top: 90px;
  position: relative;
  transform: translateY(8px);
  background: #fff;
  transition: all 0ms 300ms;
}
.hamburger-menu.gray {
  background: #bebebe;
}
.hamburger-menu.gray:before {
  background: #bebebe;
}
.hamburger-menu.gray:after {
  background: #bebebe;
}

.hamburger-menu.animate {
  background: rgba(0, 0, 0, 0);
}

.hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #fff;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu:before.gray {
  background: #bebebe;
}

.hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: #fff;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu:after.gray {
  background: #bebebe;
}

.hamburger-menu.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #fff;
}
.hamburger-menu.animate:after.gray {
  background: #bebebe;
}

.hamburger-menu.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #fff;
}
.hamburger-menu.animate:before.gray {
  background: #bebebe;
}

/* end Menu hamburge  */
/*bigger screen*/
.workPage {
  /*width: 100%;*/
  padding: 0 120px;
  position: relative;
  padding-bottom: 100px;
  /*font-family: 'Roboto', sans-serif;*/
  /*font-family: 'Quicksand', sans-serif;*/
  font-family: "Hind", sans-serif;
}
.workPage .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media only screen and (max-width: 650px) {
  .workPage .flex {
    display: block !important;
  }
}
@media only screen and (max-width: 650px) {
  .workPage {
    padding: 0px 20px;
    margin-bottom: 30px;
  }
  .workPage .backtoworks {
    top: 9px;
    left: 20px;
    font-size: 12px;
    height: 20px;
  }
}
.workPage .backtoworks {
  position: absolute;
  bottom: 2px;
  right: 120px;
  font-size: 20px;
  color: #4b4c4c;
  font-weight: bold;
}
.workPage .backtoworks:hover {
  text-decoration: underline;
  color: #DF3940;
}
@media only screen and (max-width: 650px) {
  .workPage .backtoworks {
    top: -38px;
    left: 20px;
    font-size: 12px;
  }
}
.workPage .workImg {
  margin-top: 50px;
}
@media only screen and (max-width: 650px) {
  .workPage .workImg {
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.workPage .workImg img {
  width: 100%;
}
.workPage .workImg .flex {
  display: flex;
  vertical-align: top;
  justify-content: space-between;
}
.workPage .workImg .flex span {
  margin: 15px;
}
@media only screen and (max-width: 500px) {
  .workPage .workImg .flex span {
    margin: 0;
  }
}
.workPage .workImg .flex span:last-child {
  padding-right: 0;
}
.workPage .workImg .masonry {
  column-count: 2;
  column-gap: 15px;
  width: 100%;
}
@media only screen and (max-width: 650px) {
  .workPage .workImg .masonry {
    column-count: 1;
    column-gap: 0;
  }
}
.workPage .workImg .masonry span {
  display: block;
}
.workPage .workImg span {
  width: 100%;
  display: block;
}
.workPage .workInfo {
  margin: 10px 0 20px;
  text-align: center;
}
@media only screen and (max-width: 650px) {
  .workPage .workInfo {
    margin-top: 20px;
  }
}
.workPage .workInfo .title {
  font-size: 21px;
  font-weight: 900;
  display: block;
  color: #DF3940;
  padding: 10px 0;
}
.workPage .workInfo .description {
  display: block;
  line-height: 24px;
  width: 80%;
  margin: 0 auto;
}
.workPage .backNext {
  top: 36px;
  position: absolute;
  right: 100px;
}
@media only screen and (max-width: 650px) {
  .workPage .backNext {
    top: -28px;
    right: 19px;
  }
  .workPage .backNext a.next, .workPage .backNext a.back {
    background-color: #bebebea1;
    padding: 5px;
    border-radius: 200px;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: 7px;
  }
  .workPage .backNext a.back {
    left: 10px;
    top: 150px;
  }
  .workPage .backNext a.next {
    right: 10px;
    top: 150px;
  }
}
.workPage .backNext .next {
  width: 16px;
  background-repeat: no-repeat;
  height: 25px;
  margin-left: 20px;
  background-size: contain;
  display: inline-block;
  background-image: url(../imgs/_icons/arrow.png);
  position: fixed;
  top: 321px;
  right: 80px;
}
.workPage .backNext .back {
  background-image: url(../imgs/_icons/arrow.png);
  transform: rotate(180deg);
  width: 16px;
  background-repeat: no-repeat;
  height: 25px;
  background-size: contain;
  display: inline-block;
  position: fixed;
  top: 321px;
  left: 80px;
}

.bottomToUp {
  margin-top: -10px;
}

/*# sourceMappingURL=style.css.map */
