html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}




* {
  --blue-color: #507e8d;
  --light-red: #ff3701;
  --mid-red: #C00E19;
  --dark-red: #9F0E01;
  --cat-color: #1c1c1c;
  --blue-accent-color: #507e8d;
}


html, body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

body {
  width: 100vw;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 1rem;
  background-color: rgba(0,0,0,0.0001);
}

body::-webkit-scrollbar-track {
  border: solid 0.375rem transparent;
}
body::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 10px 10px #999;
  border-radius: 1rem;
  border: solid 0.375rem transparent;
}


.container {
  width: 75rem;
  margin: 0 auto;
  height: 100%;
}
section {
  width: 100vw;
  height: calc(100vh - 4rem);
  position: relative;
}
.sectionAnchor, .sectionAnchorNoLink {
  position: absolute;
  top: -4rem;
  left: 0;
  width: 0;
  height: 0;
}
h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0.25em;
  line-height: 1.5;
}
h1, h2, h3, h4 {
  font-weight: bold;
  line-height: 1;
}

h1 {  font-size: 4rem; }
h2 {  font-size: 2.5rem; }
h3 {  font-size: 1.5rem; }
h4 {  font-size: 1.25rem; }
h5 {  font-size: 1rem; }
h6 {  font-size: 0.75rem; }
p {  font-size: 1rem; }
a {
  color: var(--light-red);
  transition: all 0.2s ease-out;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
  color: var(--mid-red);
}
strong {
  font-weight: 700;
}
.red {
  color: var(--mid-red);
}



.header {
  width: 100vw;
  height: 4rem;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 101;
  box-shadow: 0 0.25rem 3rem 0 rgba(0,0,0,0.05);
}
.header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.logoAndText {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.header .logoContainer {
  width: 3rem;
  height: 3rem;
  opacity: 1;
  transition: all 0.5s ease-out;
  transition-delay: 1s;
}
.header.notLoaded .logoContainer {
  opacity: 0;
}
.logoText {
  font-weight: 900;
  font-size: 1.5rem;
  color: #1c1c1c;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.logoText b {
  overflow: hidden;
  max-width: 0;
  transition: max-width 0.2s ease-out;
}
.logoText:hover b {
  max-width: 6.5rem;
}
.logoText .and {
  position: relative;
  width: 1.125rem;
  overflow: hidden;
}
.logoText .and:before {
  content: 'N';
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.logoText .and:after {
  content: '&';
  position: absolute;
  bottom: 2rem;
  left: 0;
  transition: all 0.2s ease-out;
  opacity: 0;
}
.logoText:hover .and:before {
  bottom: -2rem;
  opacity: 0;
}
.logoText:hover .and:after {
  bottom: 0;
  opacity: 1;
}
.logoText .logoRed {
  color: var(--cat-color);
  transition: color 0.2s ease-out;
}
.logoText:hover .logoRed {
  color: var(--dark-red);
}
.logo {
  width: 100%;
  height: 100%;
  background-image: url("../cat.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation: catSpin 1.5s ease-out infinite;
}

@keyframes catSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.header a {
  text-decoration: none;
}


.loader .logoContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 40rem;
  height: 40rem;
}


.menu .dropdown {
  display: flex;
  flex-direction: row;
  height: 4rem;
}
.menu .dropdown .menuItem {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.menu .menuItem {
  position: relative;
}
.menu .menuItem span {
  color: #1c1c1c;
  margin-left: 2rem;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
}
.menu .menuItem span:before,
.menu .menuItem span:after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  height: 0.0625rem;
  width: 100%;
  background-color: var(--dark-red);
  opacity: 0.1;
}
.menu .menuItem:hover span:after {
  animation: underlineFill 0.5s ease-out;
  animation-fill-mode: forwards;
  background-color: #ff3701;
  opacity: 1;
}
.menu .droppable {

}
.menu .droppable .arrow {
  position: relative;
  top: -3px;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-color: #666;
  border-style: solid;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  transform-origin: center;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  margin-left: 0.25rem;
}
.menu .droppable:hover .arrow {
  transform: rotate(225deg);
  top: 1px;
}

@keyframes underlineFill {
  from { width: 0; }
  to { width: 100%; }
}

.menu a.activeTab span {
  color: var(--mid-red);
  font-weight: 600;
  pointer-events: none;

}
.menu a.activeTab span:before,
.menu a.activeTab span:after {
  display: none;
}
.droppable .subMenu {
  position: absolute;
  top: 3.5rem;
  left: calc(1rem - 1px);
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  background-color: #fff;
  border: 1px solid #eee;
  max-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.droppable:hover .subMenu {
  max-height: 20rem;
  padding: 0.75rem 1rem;
  opacity: 1;
}
.droppable .subMenu a {
  white-space: nowrap;
  padding: 0.25rem 0;
  color: #000000;
  font-size: 0.875rem;
}
.droppable .subMenu a:hover {
  color: #666;
}

.loader {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100vw;
  height: calc(100vh - 4rem);
  background-color: #fff;
  z-index: 100;
}


.downArrow,
.rightArrow {
  font-size: 1.5rem;
  padding: 1rem;
  margin: -1rem 0 0 -1rem;
  transition: all 0.2s ease-out;
}
.downArrow:hover,
.rightArrow:hover {
  color: #9F0E01;
}
.showcaseNext {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.showcases:nth-of-type(2n-1) .showcaseNext {
  left: auto;
  right: 1.5rem;
}
.spacer {
  height: 4rem;
  width: 100%;
}
.firstScreen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 4rem);
}
.brandMessage {
  width: 40rem;
  margin-bottom: 4rem;
}
.brandMessage h3,
.brandMessage h2,
.brandMessage h1,
.brandMessage p {
  animation: slideUp 1s ease-out;
  transform: translate3d(0,1rem,0);
  opacity: 0;
  animation-fill-mode: forwards;
}
.brandMessage h3 {
  animation-delay: 1s;
}
.brandMessage h2 {
  animation-delay: 0.25s;
}
.brandMessage h1 {
  font-weight: 900;
  animation-delay: 0.5s;
  position: relative;
  margin-bottom: 4rem;
  display: inline-block;
}
h1 span.digitalStudio {
  position: absolute;
  top: 4rem;
  left: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
.brandMessage p {
  animation-delay: 0.75s;
}
@keyframes slideUp {
  0% {
    transform: translate3d(0,1rem,0);
    opacity: 0;
  }
  50% {
    transform: translate3d(0,1rem,0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}
.firstScreen.notLoaded .brandMessage h3,
.firstScreen.notLoaded .brandMessage h2,
.firstScreen.notLoaded .brandMessage h1,
.firstScreen.notLoaded .brandMessage p {
  animation-play-state: paused;
}
.showcasesContainer {
}
.showcases {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
}
.showcases:nth-of-type(2n-1) {
  flex-direction: row-reverse;
}
.showcaseBox {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vidBlock {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;

}
.vidBlock .laptop {
  background-image: url("../images/laptopMockup40.png");
  background-position: center;
  background-size: cover;
  width: 40rem;
  height: 40rem;
  position: relative;
}
.vidBlock .laptop .screen {
  width: 29.375rem;
  height: 18.375rem;
  margin: 9.4375rem 0 0 5.4375rem;
}
.vidBlock .laptop:after {
  position: absolute;
  top: 0;
  left: 0;
  content:'';
  width: 302px;
  height: 328px;
  margin: 131px 0 0 272px;
  background: linear-gradient(75deg, rgba(255,255,255,0.001) 0%, rgba(255,255,255,0.001) 40%,rgba(255,255,255,0.1) 40%,rgba(255,255,255,0.1) 100%);
  border-radius: 0 17px 0 0;
  pointer-events: none;
}

.vidBlock .laptop video {
  height: 100%;
  width: 100%;
  min-height: 100%;
  min-width: 100%;
  }

.vidBlock .phone {
  background-image: url("../images/phoneMockup.png");
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -6rem;
  margin-left: 3rem;
  width: 25rem;
  height: 25rem;
}
.vidBlock .phone .screen {
  width: 8.5625rem;
  height: 17.8125rem;
  margin: 3.375rem 0 0 8rem;
  border-radius: 0.5rem;
  overflow: hidden;
}


.vidBlock .phone video {
  height: 100%;
  width: 100%;
  min-height: 100%;
  min-width: 100%;
}

.withPhone .laptop {
  margin-right: 4rem;
}







.textBlock {
  padding: 12rem;
  box-sizing: border-box;
  position: relative;
}
.wip {
  font-size: 0.75rem;
  padding: 0.375rem 0.25rem 0.25rem 0.25rem;
  background-color: var(--dark-red);
  color: #ffffff;
  position: relative;
  bottom: 0.375rem;
  display: inline-flex;
  border-radius: 0.25rem;
  flex-direction: row;
  justify-content: flex-start;
  cursor: pointer;
}
.wip b {
  max-width: 0;
  overflow: hidden;
  display: block;
  transition: max-width 0.2s ease-out;
  vertical-align: text-bottom;
}
.wip:hover b {
  max-width: 4rem;
  margin-right: 0.25rem;
}
.wip:hover b:last-of-type {
  margin-right: 0;
}
.techStack, .urlState {
  color: #ccc;
}
.textBlock h2,
.textBlock p {
  margin-bottom: 1rem;
}

.showcaseOne {
  background-color: #fafafa;
  box-shadow: 0 -0.25rem 3rem 0 rgba(0,0,0,0.1);
}







.blog {
  width: 100vw;
  height: calc(100vh - 20rem);
  background-color: #ffffff;
  position: relative;
  padding-top: 4rem;
  box-sizing: border-box;
}
.blogThumbs {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8rem 0;
  box-sizing: border-box;
}
.blogThumb {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.postDetails {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
.postAva {
  width: 3rem;
  height: 3rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  border: 0.0625rem solid #cccccc;
  margin-right: 1rem;
}
.postDate {
  margin-left: auto;
  color: #cccccc;
}
.blogThumb h3 {
  line-height: 1;
  margin-bottom: 1rem;
}
.blogThumb a {
  color: #1c1c1c;
  text-decoration: none;
}
.preFooter {
  width: 100vw;
  height: 12rem;
  background-color: var(--cat-color);
  position: relative;
  color: #ffffff;
}
.preFooter .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.preFooter .rightArrow {
  margin-left: 3rem;
}
.preFooter h2 {
  line-height: 1;
}
.footer {
  width: 100vw;
  height: 4rem;
  background-color: var(--mid-red);
  color: #ffffff;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer a {
  color: #fff;
  font-size: 1.5rem;
  margin-left: 1rem;
}

.contactsFrame {
  height: calc(100vh - 4rem);
}
.contactsFrame .container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mapLines {
  display: flex;
  flex-direction: row;
}
.mapLines .map,
.mapLines .lines {
  width: 30rem;
}
.mapLines .map {
  height: 30rem;
  background-color: #999999;
}
#map {
  width: 100%;
  height: 100%;
}
.mapLines .lines {
  padding: 4rem;
  border: 0.0625rem solid #eaeaea;
}
.lines li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
}
.lines li i {
  font-size: 2rem;
  margin-right: 1rem;
  min-width: 2rem;
  color: var(--dark-red)
}
.aboutStart {
  padding-top: 4rem;
  position: relative;
}
.officePic {
  width: 100%;
  height: 22rem;
  background-color: #cccccc;
  margin: 4rem 0;
  background-image: url("../images/office_hard_working.jpg");
  background-size: cover;
  background-position: center;
}
.introText {
  padding-bottom: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.introText div {
  width: 30%;
  margin-left: 2rem;
}
.introText h2 {
  width: 10rem;
  margin-right: 12rem;
}
.introText p {
  margin-bottom: 1rem;
}

.clientsList {
  width: 100%;
  background-color: #fafafa;
  position: relative;
  padding: 4rem 0;
}
.clientsList .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.clientsList .container div {
  width: 10rem;
  height: 10rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.blogScreen {
  background-color: #f8f8f8;
  padding: 6rem 0;
  height: auto;
}
.blogScreen .container {
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  flex-direction: column;
}

.blogList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.blogItem {
  background-color: #ffffff;
  width: 31%;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.5rem 0 rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  display: block;
  margin-left: 2rem;
  margin-bottom: 2rem;
  flex-direction: row;
}

.pagination {
  display: flex;
  flex-direction: row;
  width:100%;
  justify-content: center;
  align-items: center;
}

.pagination a {
  width: 2rem;
  height: 2rem;
  background-color: #C00E19;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem;
  text-decoration: none;
}

.pagination a.active {
  background-color: #cccccc;
}

.pagination a.active:hover {
  background-color: #cccccc;
}

.pagination a:hover {
  background-color: #ff3701;
}

.blogItem:nth-of-type(3n+1) {
  margin-left: 0;
}
.blogItem a {
  text-decoration: none;
  color: #1c1c1c;
}
.blogItem a:hover {
  color: #1c1c1c;
}
.blogImage {
  height: 12rem;
  width: 100%;
  background-image: url("../images/stycomp.png");
  background-position: center;
  background-size: cover;
}
.blogTextPart {
  padding: 2rem;
}
.blogTextPart h3 {
  margin-bottom: 1rem;
}
.blogTextPart p {
  height: 4.5rem;
  overflow: hidden;
  position: relative;
}
.blogTextPart p:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.5rem;
  background: linear-gradient(90deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
}
.blogItem .postDetails {
  background-color: #fafafa;
  margin-bottom: 0;
  height: 5rem;
  padding: 0 2rem;
  box-sizing: border-box;
  border-top: 1px solid #f0f0f0;
}

.chochFrame .container {
  margin-top: 4rem;
  min-height: calc(100vh - 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.choch {
  font-size: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--mid-red);
  margin-bottom: 2rem;
}

.choch div {
  display: inline-flex;
  height: 10rem;
  width: 10rem;
  background-image: url("../cat.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation: catSpin 1.5s ease-out infinite;
  margin: 0 -1rem;
}
.chochFrame h2,
.chochFrame h3,
.chochFrame h4 {
  text-align: center;
}




.linksCemeteryWidget {
  background-color: #f3f3f3;
  padding: 6rem 0;
  box-sizing: border-box;
}
.linksCemeteryWidget .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.linksCemeteryWidget h3 {
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.5;
}
.linksCemeteryWidget h4 {
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 300;
}
.linksCemeteryWidget .linksContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 2rem;
}
.linksCemeteryWidget .linksContainer a {
  display: block;
  margin: 0.5rem;
  width: 17rem;
  height: 10.75rem;
  flex-shrink: 0;
  border: 1px solid #ddd;
  box-shadow: 0 0 0.5rem 0 rgba(0,0,0,0.05);
}
.linksCemeteryWidget .linksContainer a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showMore {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.linksCemetery {
  padding: 6rem 0;
  background-color: #f3f3f3;
  height: auto;
}
.linksCemetery h4 {
  margin-bottom: 1rem;
}
.linksCemetery .sites {
  margin-top: 2rem;
}
.linksCemetery .site {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background-color: #fff;
  box-shadow: 0 0 1.5rem 0 rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

@media all and (min-width: 721px) {
  .linksCemetery .site .description {
    height: 10rem;
  }
  .linksCemetery .site .pic {
    width: 15rem;
    height: 10rem;
  }
  .linksCemetery .site .pic img {
    width: 15rem;
    height: 10rem;
  }
}


@media all and (max-width: 720px) and (orientation:portrait) {
  .linksCemetery .site {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fff;
    box-shadow: 0 0 1.5rem 0 rgba(0,0,0,0.05);
    border: 1px solid #eee;
  }
  .linksCemetery .site .description {
    height: 13rem;
    padding: 0 2rem;
  }
  .linksCemetery .site .pic {
    width: 100%;
    height: auto;
  }
  .linksCemetery .site .pic img {
    width: 100%;
    height: auto;
  }
  }



@media all and (max-width: 480px){
  .linksCemetery .site .description {
    height: 18rem;
    padding: 0 2rem;
  }
}



.linksCemetery .site .pic a {
  display: block;
}
.linksCemetery .site .description {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 2rem;
 /* height: 10rem;*/
  border-left: 1px solid #eee;
}
.linksCemetery .site .description p {
  margin-bottom: 0;
}
.linksCemetery .site .description p span {
  color: #ccc;
}



.vacancies {
  margin-top: 4rem;
  height: auto;
  background-color: #f6f6f6;
  padding: 2rem 0;
}
.vacancies .container {
  display: flex;
  flex-direction: row;
  position: relative;
}
.vacancies .body {
  width: calc(100% - 18rem);
}
.sidebar {
  position: fixed;
  width: 16rem;
  margin-left: 22rem;
  top: 6rem;
  left: 50%;
}
.vacancy {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 2rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
  position: relative;
}
.vacancy .sectionAnchor {
  top: -6rem;
}
.vacancy h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}
.vacancy p {
  margin-bottom: 1rem;
}
.vacancy h4 {
  margin-bottom: 1rem;
}
.vacancy ul {
  margin-bottom: 1rem;
  list-style-type: disc;
}
.vacancy ul li {
  margin: 0 0 0.5rem 2rem;
}
.vacancyLinks a {
  margin: 0.5rem 0;
  display: block;
}
.applyNow {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 1rem;
  box-sizing: border-box;
  margin: 2rem 0;

}
.contactPerson {
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: row-reverse;
}
.contactAva {
  width: 3rem;
  height: 3rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  border: 0.0625rem solid #cccccc;
  margin-left: 1rem;
}
.contactInfo {
  text-align: right;
}
.contactInfo p {
  font-size: 0.75rem;
  color: #999;
}
.contactLine {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  padding: 0 1.5rem;
}
.contactLine i {
  color: #999;
  margin-right: 0.5rem;
}
.contactLine a {
  color: #999;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.contactLine a:hover {
  color: #333;
}
.applyNowButton {
  height: 2.5rem;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  border: 1px solid #ccc;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  color: #000;
  width: 10rem;
  margin: 0 auto;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
}
.applyNowButton:hover {
  color: #fff;
  background-color: #9F0E01;
  border-color: #9F0E01;
}
.form {
  position: relative;
}
.form .sectionAnchor {
  top: -6rem;
}
.form form h3 {
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.5;
}
.form form {
  background-color: #fff;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  width: 24rem;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}
.form form label {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.form form input,
.form form select,
.form form textarea {
  height: 2.5rem;
  padding: 0 1rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif !important;
  border: 1px solid #ccc;
  outline: none !important;
}
.form form textarea {
  padding: 1rem;
  height: auto;
  min-height: 3rem;
}
.form form input[type='file'] {
  padding: 0;
  border: none;
}
.form form input.fileHiddenButton {
  height: 0;
  width: 0;
}
.fileAttach {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.fileButton {
  width: 8rem;
  height: 2rem;
  padding-top: 2px;
  box-sizing: border-box;
  display: flex;
  flex-direction:row ;
  justify-content: center;
  align-items: center;
  color: #999;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
  margin-right: 1rem;
  font-size: 0.875rem;
}
.fileButton svg, .loadedFile svg {
  height: 1rem;
  margin-right: 0.5rem;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}
.loadedFile {
  width: calc(100% - 9rem);
  height: 2rem;
  color: #999;
  overflow: hidden;
  margin-right: 2rem;
  position: relative;
  font-size: 0.75rem;
  display: none;
}
.loadedFile div {
  height: 2rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.loadedFile:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(90deg, rgba(0,0,0,0.00001) 0%, #fff 100%);
}
.fileButton:hover {
  border-color: #999;
  color: #000;
}
.form form input[type='submit'] {
  width: 10rem;
  margin: 1rem auto 0 auto;
  background-color: #9F0E01;
  justify-content: center;
  color: #fff;
  border-color: #9F0E01;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
}
.form form input[type='submit']:hover {
  background-color: #C00E19;
  border-color: #C00E19;
}

.services {
  padding: 6rem 0 2rem 0;
  height: auto;
  min-height: auto;
  background-color: #f6f6f6;
}
.services .body {
  min-height: calc(100vh - 22rem);
  width: calc(100% - 18rem);
}
.services h1 {
  margin-bottom: 2rem;
  font-size: 3rem;
}
.services p {
  margin-bottom: 1rem;
}
.domains p {
  margin-bottom: 1rem;
}
.services .sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 5;
}
.serviceType {
  background-color: #fff;
  border: 1px solid #eee;
  margin-bottom: 2rem;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
}
.serviceType h3 {
  margin-bottom: 1rem;
}
.serviceType h4 {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.serviceType h4 span {
  font-weight: 700;
}
.serviceType p {
  line-height: 1.5;
}
.serviceTypeAnchor, .domainAnchor {
  position: absolute;
  top: -6rem;
  left: 0;
}
.domainItem {
  box-sizing: border-box;
  position: relative;
}
.domainSites{
  padding: 0 0 5rem 0;
  background-color: transparent;
}
.domainLinks a{
  margin: 0.5rem 0;
  display: block;
}
.complexityScale {
  align-self: flex-end;
  margin-top: 2rem;
  height: calc(100vh - 28rem);
  width: 2rem;
  border-radius: 0.25rem;
  background: linear-gradient(180deg, #52da85 0%, #e8d602 50%, #9F0E01 100%);
  position: relative;
  border: 1px solid #666;
  user-select: none;
}
.complexityScale .tiles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
  display: flex;
  flex-direction: column;
  border-radius: 0.25rem;
}
.complexityScale .tiles div {
  height: 10%;
  width: 100%;
}
.complexityScale .tiles div:nth-of-type(1) {
  background-color: #52da85;
}
.complexityScale .tiles div:nth-of-type(2) {
  background-color: #81d95d;
}
.complexityScale .tiles div:nth-of-type(3) {
  background-color: #9dd842;
}
.complexityScale .tiles div:nth-of-type(4) {
  background-color: #bcd729;
}
.complexityScale .tiles div:nth-of-type(5) {
  background-color: #d9d710;
}
.complexityScale .tiles div:nth-of-type(6) {
  background-color: #e0c102;
}
.complexityScale .tiles div:nth-of-type(7) {
  background-color: #d19802;
}
.complexityScale .tiles div:nth-of-type(8) {
  background-color: #c27001;
}
.complexityScale .tiles div:nth-of-type(9) {
  background-color: #b44801;
}
.complexityScale .tiles div:nth-of-type(10) {
  background-color: #9F0E01;
}
.complexityScale .marker {
  position: absolute;
  margin-top: -1rem;
  right: 2.375rem;
  background-color: #fff;
  border: 1px solid #ddd;
  height: 2rem;
  z-index: 5;
}
.complexityScale .marker:before,
.complexityScale .marker:after {
  position: absolute;
  top: 0.5rem;
  right: calc(-0.75rem + 1px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.75rem;
  border-color: transparent transparent transparent #fff;
  content: "";
  z-index: 2;
}
.complexityScale .marker:after {
  border-color: transparent transparent transparent #ddd;
  right: -0.75rem;
  z-index: 1;
}
.complexityScale .marker a {
  white-space: nowrap;
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1rem;
  line-height: 2rem;
}
.complexityScale .marker a:hover {
  color: #9F0E01;
  text-decoration: underline;
}
.complexityScale .marker .blob {
  position: absolute;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background-color: white;
  right: -2rem;
  border: 1px solid #999;
  transition: border 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.complexityScale .marker .blob:after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background-color: #cccccc;
  transition: background-color 0.2s ease-in-out;
}
.complexityScale .marker:hover .blob {
  border: 1px solid #333;
}
.complexityScale .marker:hover .blob:after {
  background-color: #9F0E01;
}
html {
  scroll-behavior: smooth;
}

@media all and (max-width: 1600px) {
  html, body {
    font-size: 14px;
  }
}
@media all and (max-width: 1400px) {
  html, body {
    font-size: 14px;
  }
  .textBlock {
    padding: 8rem;
  }
}
@media all and (max-width: 1200px) and (orientation:portrait) {
  html, body {
    font-size: 12px;
  }
  .textBlock {
    padding: 8rem;
  }
  section, .blog {
    height: calc(50vh - 2rem);
    }
}
@media all and (max-width: 960px) and (orientation:portrait) {
  html, body {
    font-size: 9px;
  }

}
@media all and (max-width: 720px) and (orientation:portrait) {
  html, body {
    font-size: 14px;
  }
  section {
    height: auto;
    min-height: calc(100vh - 4rem);
  }
  .menu {
    height: 100%;
    width: 4rem;
    position: relative;
  }
  .menu .burger {
    position: absolute;
    right: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
  }
  .burger span {
    height: 1px;
    width: 2rem;
    background-color: #1c1c1c;
    transform: rotate(0deg);
    transition: all 0.2s ease-out;
    position: absolute;
    margin-left: 1rem;
    opacity: 1;
    transform-origin: 50% 50%;
  }
  .burger span:nth-of-type(1) { top: 35%; }
  .burger span:nth-of-type(2) { top: 50%; }
  .burger span:nth-of-type(3) { top: 65%; }

  .menu.open .burger span:nth-of-type(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  .menu.open .burger span:nth-of-type(2) { opacity: 0; }
  .menu.open .burger span:nth-of-type(3) {
    top: 50%;
    transform: rotate(-45deg);
  }

  .menu .dropdown {
    position: absolute;
    top: 3.5rem;
    right: -2rem;
    padding: 1.5rem 4rem 1.5rem 2rem;
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .menu.open .dropdown {
    opacity: 1;
    pointer-events: auto;
  }

  .menu .menuItem span {
    margin: 0.5rem 0;
    white-space: nowrap;
  }
  .menu .dropdown .subMenu {
    display: none;
  }
  .menu .dropdown .droppable .arrow {
    display: none;
  }

  .loader .logoContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50vw;
    height: 50vw;
  }
  .container {
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .brandMessage {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
  }
  .brandMessage h1 {
    font-size: 2.5rem;
  }
  h1 span.digitalStudio {
    top: 3rem;
    font-size: 1.5rem;
  }
  .brandMessage h3 {
    font-size: 1.25rem;
  }
  .showcases,
  .showcases:nth-of-type(2n-1) {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .showcaseBox {
    width: 100%;
  }
  .textBlock {
    padding: 2rem 2rem 4rem 2rem;
  }
  .textBlock div h2 {
    font-size: 1.5rem;
  }
  .textBlock div p {
    font-size: 0.75rem;
  }
  .vidBlock .laptop {
    width: 20rem;
    height: 20rem;
  }
  .vidBlock .laptop .screen {
    width: 14.6875rem;
    height: 9.1875rem;
    margin: 4.71875rem 0 0 2.71875rem;
  }
  .vidBlock .laptop:after {
    display: none;
  }
  .vidBlock .phone {
    margin-top: -3rem;
    margin-left: 1.5rem;
    width: 12.5rem;
    height: 12.5rem;
  }
  .vidBlock .phone .screen {
    width: 4.28125rem;
    height: 8.90625rem;
    margin: 1.6875rem 0 0 4rem;
    border-radius: 0.25rem;
    overflow: hidden;
  }
  .withPhone .laptop {
    margin-right: 2rem;
  }


  .showcaseNext {
    left: auto;
    right: 1.5rem;
  }
  .blog {
    height: auto;
    padding-top: 2rem;
  }
  .blog .container {
    height: auto;
  }
  .blogThumbs {
    flex-direction: column;
    padding: 2rem 0;
  }
  .blogThumb {
    margin-bottom: 4rem;
    width: 100%;
  }
  .blog h2 {
    font-size: 2rem;
  }
  .preFooter h2 {
    font-size: 1.5rem;
  }
  .preFooter h2 br {
    display: none;
  }
  .preFooter h4 {
    font-size: 1rem;
  }
  .footer a {
    margin-left: 0.75rem;
  }
  .footer .mobileRules {
    width: 10rem;
  }
  .officePic {
    height: 30vh;
    margin: 2rem 0;
  }
  .introText {
    flex-direction: column;
  }
  .introText h2 {
    font-size: 2rem;
  }
  .introText h2 br {
    display: none;
  }
  .introText div {
    width: 100%;
    margin-left: 0;
  }
  .clientsList .container {
    flex-wrap: wrap;
  }
  .contactsFrame {
    height: auto;
    padding: 6rem 0 2rem 0;
  }
  .contactsFrame h1 {
    font-size: 2rem;
  }
  .mapLines {
    flex-direction: column;
  }
  .mapLines .map, .mapLines .lines {
    width: 100%;
    box-sizing: border-box;
    height: calc(100vw - 4rem);
  }
  .mapLines .lines {
    padding: 2rem;
    height: auto;
  }
  .mapLines .lines li {
    margin-bottom: 1rem;
  }
  .blogItem {
    width: 100%;
    margin: 0 0 2rem 0;
  }
  .postHeading h1 {
    font-size: 2rem;
  }
  .vacancies .container {
    flex-direction: column;
  }
  .vacancies .body {
    width: 100%;
  }
  .sidebar {
    position: relative;
    width: 100%;
    margin-left: 0;
    top: auto;
    left: auto;
  }
  .contactLine {
    justify-content: flex-end;
  }
  .form form {
    width: 100%;
  }
  .services .sidebar {
    display: none;
  }
  .services .body {
    width: 100%;
  }
  .services h1 {
    font-size: 2rem;
  }
}

/* ios & android phones only and others changes*/
.domainSites .site .description {
  padding-right: 2rem;
}


.vidBlock.mob {
  display: flex;
}
.iphone {
  flex-direction: row;
  background-image: url(../images/iphoneMockup.png);
  background-position: center;
  background-size: cover;
  margin-top: -6rem;
  margin-left: 5rem;
  width: 25rem;
  height: 36rem;
}
.android {
  flex-direction: row;
  background-image: url(../images/phoneMockup.png);
  background-position: center;
  background-size: cover;
  margin-top: -6rem;
  margin-left: -5rem;
  width: 25rem;
  height: 36rem;
}
.vidBlock.mob .iphone .screen {
  margin: 4.1rem 0 0 5.5rem;
  width: 13rem;
  height: auto;
  border-radius: 1.1rem;
  overflow: hidden;
  position: relative;
}
.vidBlock.mob .iphone .screen::before {
  content: '';
  background-image: url(../images/cholochka2.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  /* pointer-events: none; в этом случае. челка айфона. не кликабельна. но это дает возможность кликать, так как под ней есть область кликабельная*/
}

.vidBlock.mob .android .screen {
  margin: 4.8rem 0 0 6rem;
    width: 50%;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
}
.vidBlock.mob .iphone video, .vidBlock.mob .android video {
  height: 100%;
  width: 100%;
}


@media all and (max-width: 1600px) {
  .vidBlock.mob .iphone .screen {
    margin: 4.1rem 0 0 5.5rem;
  }
  .iphone  {
    height: 36rem;
  }
  .android {
    height: 36rem;
  }
  .vidBlock.mob .android .screen {
    width: 50%;
    margin: 4.8rem 0 0 6rem;
  }
}
@media all and (max-width: 1400px) {
  .vidBlock.mob .iphone .screen {
    margin: 4.1rem 0 0 5.5rem;
  }
  .iphone  {
    height: 36rem;
  }
  .android {
    height: 36rem;
  }
  .vidBlock.mob .android .screen {
    width: 50%;
    margin: 4.8rem 0 0 6rem;
  }
}
@media all and (max-width: 1366px) {
  .vidBlock.mob .iphone .screen {
    margin: 4.1rem 0 0 5.2rem;
  }
  .iphone  {
    height: 36rem;
  }
  .android {
    height: 36rem;
  }
  .vidBlock.mob .android .screen {
    width: 50%;
    margin: 4.9rem 0 0 5.8rem;
  }
}
@media all and (max-width: 1200px) {
  .vidBlock.mob .iphone .screen {
    margin: 4.1rem 0 0 3.7rem;
  }
  .iphone  {
    height: 36rem;
  }
  .android {
    height: 36rem;
  }
  .vidBlock.mob .android .screen {
    width: 58%;
    margin: 4.8rem 0 0 4.15rem;
  }
}
@media all and (max-width: 1200px) and (orientation:portrait) {
  .vidBlock.mob .iphone .screen {
    margin: 4.1rem 0 0 5.5rem;
  }
  .iphone  {
    height: 36rem;
  }
  .android {
    height: 36rem;
  }
  .vidBlock.mob .android .screen {
    width: 50%;
    margin: 4.8rem 0 0 6rem;
  }
}
@media all and (max-width: 1024px) {
  .vidBlock.mob .iphone .screen {
    width: 63%;
    margin: 3.7rem 0 0 3rem;
  }
  .iphone  {
    height: 32rem;
  }
  .android {
    height: 32rem;
  }
  .vidBlock.mob .android .screen {
    width: 61%;
    margin: 4rem 0 0 3.25rem;
  }
}


@media all and (max-width: 960px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.85rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 63%;
    margin: 3.4rem 0 0 2.8rem;
  }
  .iphone  {
    height: 30rem;
  }
  .android {
    height: 30rem;
  }
  .vidBlock.mob .android .screen {
    width: 60%;
    margin: 4rem 0 0 3.175rem;
  }
}
@media all and (max-width: 768px) {
  .vidBlock.mob .iphone .screen {
    width: 50%;
    margin: 3.4rem 0 0 4.925rem;
  }
  .iphone  {
    height: 30rem;
  }
  .android {
    height: 30rem;
  }
  .vidBlock.mob .android .screen {
    width: 48%;
    margin: 4rem 0 0 5.175rem;
  }
}
@media all and (max-width: 720px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.7rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 36%;
    margin: 1.9rem 0 0 7.6rem;
  }
  .iphone  {
    height: 23rem;
    margin-top: 0rem;
  }
  .android {
    height: 23rem;
    margin-top: 0rem;
  }
  .vidBlock.mob .android .screen {
    width: 34%;
    margin: 2.4rem 0 0 8rem;
  }
  .wip {
    bottom: 0.25rem;
  }
}
@media all and (max-width: 480px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.85rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 63%;
    margin: 3.4rem 0 0 2.725rem;
  }
  .iphone  {
    height: 30rem;
  }
  .android {
    height: 30rem;
  }
  .vidBlock.mob .android .screen {
    width: 60%;
    margin: 4rem 0 0 3.2rem;
  }
}
@media all and (max-width: 450px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.85rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 60%;
    margin: 3.1rem 0 0 2.825rem;
  }
  .iphone  {
    height: 27rem;
  }
  .android {
    height: 27rem;
  }
  .vidBlock.mob .android .screen {
    width: 58%;
    margin: 3.6rem 0 0 3.15rem;
  }
}
@media all and (max-width: 425px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.7rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 61%;
    margin: 3rem 0 0 2.65rem;
  }
  .iphone  {
    height: 26rem;
  }
  .android {
    height: 26rem;
  }
  .vidBlock.mob .android .screen {
    width: 59%;
    margin: 3.4rem 0 0 2.95rem;
  }
}
@media all and (max-width: 414px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.7rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 61%;
    margin: 2.8rem 0 0 2.52rem;
  }
  .iphone  {
    height: 25rem;
  }
  .android {
    height: 25rem;
  }
  .vidBlock.mob .android .screen {
    width: 59%;
    margin: 3.2rem 0 0 2.75rem;
  }
}
@media all and (max-width: 411px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.7rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 58%;
    margin: 2.75rem 0 0 2.75rem;
  }
  .iphone  {
    height: 24rem;
  }
  .android {
    height: 24rem;
  }
  .vidBlock.mob .android .screen {
    width: 57%;
    margin: 3.1rem 0 0 2.9rem;
  }
}
@media all and (max-width: 375px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.55rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 53%;
    margin: 2.32rem 0 0 2.85rem;
  }
  .iphone  {
    height: 20rem;
  }
  .android {
    height: 20rem;
  }
  .vidBlock.mob .android .screen {
    width: 52%;
    margin: 2.6rem 0 0 3rem;
  }
}
@media all and (max-width: 360px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.45rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 45%;
    margin: 1.7rem 0 0 3.3rem;
  }
  .iphone  {
    height: 16rem;
  }
  .android {
    height: 16rem;
  }
  .vidBlock.mob .android .screen {
    width: 43%;
    margin: 2.1rem 0 0 3.4rem;
  }
}
@media all and (max-width: 320px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.45rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 51%;
    margin: 1.7rem 0 0 2.55rem;
  }
  .iphone  {
    height: 16rem;
  }
  .android {
    height: 16rem;
  }
  .vidBlock.mob .android .screen {
    width: 49%;
    margin: 2.1rem 0 0 2.8rem;
  }
}
@media all and (max-width: 280px) {
  .vidBlock.mob .iphone .screen::before {
    height: 0.45rem;
  }
  .vidBlock.mob .iphone .screen {
    width: 43%;
    margin: 1.3rem 0 0 2.65rem;
    border-radius: 0.5rem;
  }
  .iphone  {
    height: 12rem;
  }
  .android {
    height: 12rem;
  }
  .vidBlock.mob .android .screen {
    width: 41%;
    margin: 1.6rem 0 0 2.8rem;
    border-radius: 0.5rem;
  }
}

