/* ============================== GLOBAL ============================== */
/* ============================== GLOBAL ============================== */

:root {
  --text: #FAFAFA;
  --background: #0B0714;
  --link: #8F00FF;
  --gray: #767676;
  --gray-light: #BFBFBF;
  --card-red: #FF6A68;
  --card-red-gradient: #9A4145;
  --error: #F97066;
  --card-yellow: #FAFF00;
  --card-yellow-gradient: #989A08;
  --card-green: #7F5;
  --card-green-gradient: #4B9A3B;
  --card-crimson: #A1078B;
  --card-crimson-gradient: #6C1D61;
  --card-purple: #9237ED;
  --card-cian: #00FFFF;
  --sections-gap-dekstop-large: 200px;
  --sections-gap-dekstop-small: 150px;
  --sections-gap-tablet: 120px;
  --sections-gap-mobile: 100px;
}

html, body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text, #FAFAFA);
  line-height: 130%;
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  background: #0B0714;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
}

.main section {
  padding-top: var(--sections-gap-dekstop-large, 200px);
}

.button {
  display: inline;
  font-size: 18px;
  font-family: Geologica, sans-serif;
  font-weight: 600;
  line-height: 1em;
  padding: 14px 70px;
  color: var(--background, #0B0714);
  border-radius: 10px;
  background: var(--text, #FAFAFA);
  white-space: nowrap;
  transition: all .3s;
  text-align: center;
  border: 3px solid var(--text, #FAFAFA);
}

.button:hover {
  color: var(--text, #FAFAFA);
  border: 3px solid var(--text, #FAFAFA);
  background: var(--background, #0B0714);
  -webkit-box-shadow: 8px 8px 0px 0px #8F00FF;
  -moz-box-shadow: 8px 8px 0px 0px #8F00FF;
  box-shadow: 8px 8px 0px 0px #8F00FF;
}
.button.disabled {
  pointer-events: none;
  color: #D2D2D2;
  background: var(--gray, #767676);
  border: 3px solid var(--gray, #767676);
}

.button--short {
  padding: 14px 50px;
}

.button--empty {
  color: var(--text, #FAFAFA);
  border: 3px solid var(--text, #FAFAFA);
  background: var(--background, #0B0714);
}

.button--empty span {
  background: linear-gradient(55.95deg, #FF3F3A 0%, #F75E05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.socials-icon svg {
  border-radius: 50%;
  transition: all .3s;
}
.socials-icon svg:hover {
  -webkit-box-shadow: 0px 0px 0px 4px #8F00FF;
  -moz-box-shadow: 0px 0px 0px 4px #8F00FF;
  box-shadow: 0px 0px 0px 4px #8F00FF;
}

.heading {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.heading-title {
  font-family: Geologica, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
}
.heading-icon {
}
.heading-icon img {
  width: 100%;
}

.big-title {
  color: var(--text, #FAFAFA);
  font-family: Geologica, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
}
.big-title span {
  color: var(--gray-light, #BFBFBF);
}
.card {
  z-index: 1;
  border-radius: 20px;
  border-width: 3px;
  border-style: solid;
  border-color: var(--gray, #767676);
  transition: all .3s;
  position: relative;
}
.card .card__bg-gradient {
  z-index: -2;
  border-radius: 20px;
  position: absolute;
  top: -2px;
  left: -2px;
  height: calc(100% + 3px);
  width: calc(100% + 3px);
  opacity: 0;
  transition: all .3s;
}
.card:hover .card__bg-gradient {
  opacity: 1;
}
.card--red {
  border-color: var(--card-red,#FF6A68);
}
.card--red .card__bg-gradient {
  background: linear-gradient(180deg, rgba(17, 10, 31, 0.35) 26.15%, var(--card-red-gradient, #9A4145) 98.96%);
}
.card--red path{
  fill: var(--card-red,#FF6A68);
}
.card--yellow {
  border-color: var(--card-yellow,#FAFF00);
}
.card--yellow .card__bg-gradient {
  background: linear-gradient(180deg, rgba(17, 10, 31, 0.35) 26.15%, var(--card-yellow-gradient, #989A08) 98.96%);
}
.card--yellow path{
  fill: var(--card-yellow,#FAFF00);
}
.card--green {
  border-color: var(--card-green, #7F5);
}
.card--green .card__bg-gradient {
  background: linear-gradient(180deg, rgba(17, 10, 31, 0.35) 26.15%, var(--card-green-gradient, #4B9A3B) 98.96%);
}
.card--green path{
  fill: var(--card-green, #7F5);
}
.card--crimson {
  border-color: var(--card-crimson, #A1078B);
}
.card--crimson .card__bg-gradient {
  background: linear-gradient(180deg, rgba(17, 10, 31, 0.35) 26.15%, var(--card-crimson-gradient, #6C1D61) 98.96%);
}
.card--crimson path{
  fill: var(--card-crimson, #A1078B);
}
.card--purple {
  border-color: var(--card-purple, #9237ED);
}
.card--cian {
  border-color: var(--card-cian, #00ffff);
}
.textarea {
  transition: all .3s;
  resize: none;
  width: 100%;
  background-color: transparent;
  line-height: 130%;
  color: var(--text, #FAFAFA);
  padding-bottom: 17px;
  padding-right: 0;
}
.input, .input:required:invalid:placeholder-shown{
  width: 100%;
  background-color: transparent;
  line-height: 130%;
  color: var(--text, #FAFAFA);
  padding-bottom: 17px;
  padding-right: 0;
}
.input, .input:required:invalid:placeholder-shown, .textarea {
  border-bottom: 1px solid var(--text, #FAFAFA);
  background: none;
}
.input:disabled {
  border-bottom-color: var(--error, #F97066);
  background: url(../images/disabled-input.svg) no-repeat scroll 100% 0;
}
.input:required:invalid {
  border-bottom-color: #F97066;
  padding-right: 15px;
  background: url(../images/error-input.svg) no-repeat scroll 100% 0;
}
.input:required:invalid:focus {
  border-bottom-color: var(--error, #F97066);
  padding-right: 0;
  background: none;
}
.input:required:valid {
  border-bottom-color: #95FF63;
  padding-right: 15px;
  background: url(../images/valid-input.svg) no-repeat scroll 100% 0;
}
.input:required:valid:focus {
  border-bottom-color: #95FF63;
  padding-right: 0;
  background: none;
}
.body--freeze {
  overflow: hidden;
}
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(11, 7, 20, 0.80);
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
.overlay--show {
  visibility: visible;
  opacity: 1;
}
/* ------------------------------ HIRE US ------------------------------ */
#hire-us-dialog {
  position: fixed;
  z-index: 150;
  top: 50vh;
  left: 50vw;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  background: var(--background, #0B0714);
}
.hire {
  overflow: hidden;
  position: relative;
  padding-top: 100px;
  padding-bottom: 215px;
  display: flex;
  flex-direction: column;
  row-gap: 65px;
  border-radius: 20px;
  background-image: url(../images/hire-decoration.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
.hire__close-btn {
  position: absolute;
  top: 40px;
  right: 46px;
}
.hire__title {
  color: var(--text, #FAFAFA);
  font-family: Geologica;
  font-size: 61px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; 
  text-align: center;
}
.hire__form {
  padding: 0 200px;
}
.hire__form-inner {
  margin: 0 auto;
  max-width: 367px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.hire__form-input {
}
.hire__form-textarea {
}
.hire__form-btn {
  font-size: 18px;
  line-height: 120%;
}


/* ============================== HEADER ============================== */
/* ============================== HEADER ============================== */
.header {
  height: 100vh;
  position: relative;
}
.header__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.header__top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
.header__top-logo {
  font-size: 24px;
  line-height: 130%;
  font-style: normal;
  font-weight: 600;
}
.header__top-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  margin-right: auto;
  margin-left: 64px;
}
.header__nav-list {
  display: flex;
  column-gap: 30px;
}
.header__nav-item {
  transition: all .3s;
}
.header__nav-item:hover {
  color: var(--link, #8F00FF);
}
.header__nav-item.disabled {
  pointer-events: none;
  color: var(--gray, #767676);
}
.header__nav-link {
}
.header__socials {
  display: flex;
  column-gap: 20px;
}
.header__socials-item {
}
.header__socials-link {
}

.header__body {
  height: 100%;
  z-index: 4;
}
.header__content {
  height: 100%;
  display: flex;
  align-items: center;
}
.header__content-inner {
  position: relative;
}
.header__title {
  padding-bottom: 30px;
  color: var(--text, #FAFAFA);
  text-align: center;
  font-family: Geologica, sans-serif;
  font-size: 61px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.header__content-buttons {
  display: flex;
  column-gap: 25px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.header__content-btn {
}
.header__bg-animation {
  z-index: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 100%;
  left: 0;
  transform: translate(0, -100%);
}
.header__bg-opacity-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #0B0714;
  background: linear-gradient(180deg, rgba(11,7,20,0.9102779745042493) 30%, rgba(11,7,20,0.4990371148459384) 80%, rgba(0,0,0,0) 100%);
  background: linear-gradient(180deg, #0B0714 0%, rgba(11, 7, 20, 0.96) 9.02%, rgba(11, 7, 20, 0.80) 38.70%, rgba(11, 7, 20, 0.64) 67.43%, rgba(11, 7, 20, 0.00) 100%);
}

#bars {
  display: flex;
  align-items: end;
  height: 100%;
  transition: all 1s;
}

.bar {
  position: absolute;
  background: #8F00FF;
  display: inline-block;
  border-right: 2px solid #000;
  margin: 0px;
  position: relative;
  bottom: 0px;
  vertical-align: top;
  text-align: center;
  font-weight: bold;
  flex-grow: 1;
  transition: all 1s;
}

.compared {
  transition: background-color ease-in 0.1s;
  background: #9377d4;
}

/* ============================== SERVICES ============================== */
/* ============================== SERVICES ============================== */
.services {
}
.services__inner {
}
.services__heading {
}
.services__content {
}
.services__content-list {
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(2, 1fr);
  gap: 20px 40px;
}
.services__content-item:first-child {
  grid-row-start:1;
  grid-row-end: 3;
}
.services__content-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  border: 3px solid var(--text, #FAFAFA);
}
.services__content-text-block {
  padding: 30px;
}
.services__content-title {
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 20px;
}
.services__content-text {
  line-height: 130%;
}
.services__content-image {
  width: 100%;
  object-fit: cover;
  margin-top: -30px;
  border-radius: 0 0 20px 20px;
}

/* ============================== PROJECTS ============================== */
/* ============================== PROJECTS ============================== */
.projects {
}
.projects__inner {
}
.projects__heading {
}
.projects__list {
  margin-top: -20px;
  column-gap: 40px;
  row-gap: 40px;
  position: relative;
  transition: all .6s;
}
.projects__item {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
  padding: 30px;
  row-gap: 20px;
  column-gap: 20px;
  visibility: visible;
  background: #0B0714;
  transition: all .6s;
}
.projects__item-head {
  display: flex;
  align-items: start;
  justify-content: center;
  column-gap: 10px;
  height: 240px;
  width: auto;
  overflow: hidden;
  /*border-radius: 18px;*/
  border-radius: 10px;
  flex-shrink: 0;
}
.projects__item-head-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects__item-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.projects__item-title-wrap {
  position: relative;
}

.projects__item-title-wrap::before {
  transition: all .3s;
  content: '';
  position: absolute;
  height: 1px;
  width: 15px;
  background-color: var(--text, #FAFAFA);
  top: 50%;
  right: 12px;
}
.projects__item-title-wrap::after {
  transition: all .3s;
  content: '';
  position: absolute;
  height: 1px;
  width: 15px;
  background-color: var(--text, #FAFAFA);
  top: 50%;
  transform: rotate(90deg);
  right: 12px;
}
.projects__item-title {
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 14.5px;
  flex-shrink: 0;
  margin-right: 50px;
  max-width: 250px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mines-project {
  max-width: 140px;
  text-overflow: clip;
}
.ethrum-project {
  max-width: 98px;
  text-overflow: clip;
}
.projects__item-link-wrapper {
  color: var(--link, #8F00FF);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.projects__item-link {
  line-height: 130%;
  transition: all .3s ease-in-out;
  border-bottom: 1px solid transparent;
}
.projects__item-link:hover {
  border-bottom: 1px solid var(--link, #8F00FF);
}

.projects__item-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  opacity: 1;
  transition: all .3s;
}
.projects__item-text--show p {
  padding-bottom: 1rem;
}
.projects__item-text--show p:last-child {
  padding-bottom: 0;
}
.projects__item-text--show {
  -webkit-line-clamp: unset;
}
.projects__item-text--preview {
  -webkit-line-clamp: 5;
}
.projects__item-text--preview p:first-child {
  padding-top: 0;
}
.projects__item-text--preview p {
  padding-top: 1rem;
}
.projects__item--single {
  margin-right: 69%;
}
.projects__item--show {
  max-width: 100%;
  flex-direction: row;
  column-gap: 40px;
  margin-right: 0%;
}
.projects__item--show .projects__item-head {
  height: 417px;
  /* width: auto;
  max-width: calc(50% - 20px); */
  width: calc(50% - 20px);
  /*align-self: center;*/
  margin: 0 auto;
}
.projects__item--show .projects__item-content {
  row-gap: 15px;
}
.projects__item--show .projects__item-title {
  max-width: none;
  white-space: normal;
  margin-bottom: 10px;
}
.projects__item--show .projects__item-title-wrap::before {
  transform: rotate(-135deg);
}
.projects__item--show .projects__item-title-wrap::after {
  transform: rotate(-45deg);
}
.projects__item--preview {
  flex-direction: row;
  max-width: 100%;
}
.projects__item--preview .projects__item-title {
  max-width: none;
}

.projects__list--tech {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 100%;
}
.projects__item--tech {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-grow: 1;
  padding: 30px;
  row-gap: 20px;
  column-gap: 40px;
  border: solid 3px #0B0714;
}
.projects__item--tech .projects__item-head {
  height: 417px;
  width: auto;
  max-width: calc(50% - 20px);
  align-self: center;
  margin: 0 auto;
}
.projects__item--tech .projects__item-title {
  max-width: none;
  white-space: normal;
  margin-bottom: 10px;
}
.projects__item--tech .projects__item-content {
  row-gap: 15px;
}

/* ============================== CONTACT ============================== */
/* ============================== CONTACT ============================== */

.contact {
  position: relative;
}
.contact__inner {
  display: flex;
  min-height: 669px;
  align-items: center;
}
.contact__content {
  z-index: 4;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  justify-items: end;
}
.contact__title {
}
.contact__button {
}
.contact__bg-opacity-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #0B0714;
  background: linear-gradient(180deg, rgba(11, 7, 20, 0.00) 0%, #0B0714 100%);
}
.contact__bg-dimmer {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  transform: translate(0, -100%);
  background-color: #0B071480;
}
.contact__bg-animation {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  transform: translate(0, -100%);
}
#contact_bars {
  display: flex;
  align-items: end;
  height: 99%;
  transition: all 1s;
}
#bars_1 {
  display: flex;
  align-items: end;
  height: 500px;
  transition: all 1s;
}

.bar_1 {
  position: absolute;
  background: #8F00FF;
  display: inline-block;
  border-right: 2px solid #000;
  margin: 0px;
  position: relative;
  bottom: 0px;
  vertical-align: top;
  text-align: center;
  font-weight: bold;
  flex-grow: 1;
  transition: all 1s;
}

.compared {
  transition: background-color ease-in 0.1s;
  background: #9377d4 !important;
}

/* ============================== DIFFERENCE ============================== */
/* ============================== DIFFERENCE ============================== */
.difference {
}
.difference__heading {
}
.difference__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
}
.difference__item {
  padding: 54px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.difference__item-icon {
}
.difference__item-title {
  text-align: center;
  font-size: 24px;
  line-height: 130%;
}
.difference__item-text {
  line-height: 130%;
  width: 100%;
}
/* ============================== FOOTER ============================== */
/* ============================== FOOTER ============================== */
.footer {
  z-index: 2;
  position: relative;
  padding: var(--sections-gap-dekstop-large, 200px) 0;
}
.footer::before {
  position: absolute;
  top: 20%;
  left: 47%;
  content: url(../images/footer-bg-element.png);
  z-index: -1;
}
.footer__inner {
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(2, 1fr);
  column-gap: 40px;
}
.footer__title {
  color: var(--text, #FAFAFA);
  font-family: Geologica, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
}
.footer__title span {
  color: var(--gray-light, #BFBFBF);
}
.footer__socials {
  align-self: end;
}
.footer__socials-title {
  font-size: 24px;
  line-height: 130%;
}
.footer__socials-list {
  margin-top: 20px;
  display: flex;
  column-gap: 20px;
}
.footer__socials-item {
}
.footer__socials-link {
}
.footer__form {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  padding: 60px;
  border-radius: 20px;
  border: 3px solid var(--gray, #767676);
  background: rgba(11, 7, 20, 0.80);
  backdrop-filter: blur(8px);
}
.footer__form-inner {
  max-width: 367px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 36px;
}
.footer__form-input {
}
.footer__form-btn {
}

/* ============================== MEDIA ============================== */
/* ============================== MEDIA ============================== */
/* ============================== 1440 =============================== */
@media (max-width: 1440px) {
  .heading-icon {
    height: 100px;
    width: 100px;
  }
}
/* ============================== 1280 =============================== */
@media (max-width: 1280px) {
  .main section {
    padding-top: var(--sections-gap-dekstop-small, 150px);
  }
  html, body {
    font-size: 15px;
  }
  .heading-title {
    font-size: 36px;
  }
  .heading-icon {
    height: 80px;
    width: 80px;
  }
  .big-title {
    font-size: 26px;
  }
  .header__top-logo {
    font-size: 18px;
  }
  .header__title {
    font-size: 47px;
  }
  /* ------------------------------------------------------------------- */
  .services__content-list {
    column-gap: 20px;
  }
  .services__content-title {
    font-size: 18px;
  }
  .projects__list {
    column-gap: 20px;
  }
  .projects__item::before, .projects__item::after {
    right: 40px;
  }
  .projects__item-head {
    height: 192px;
  }
  .projects__item-title {
    font-size: 18px;
    margin-bottom: 18.5px;
  }
  .mines-project {
    max-width: 104px;
    text-overflow: clip;
  }
  .ethrum-project {
    max-width: 72px;
    text-overflow: clip;
  }
  .projects__item--show .projects__item-head {
    width: calc(50% - 10px);
  }
  .contact {
    position: relative;
  }
  .contact__inner {
    min-height: 340px;
  }
  .difference__list {
    column-gap: 20px;
  }
  .difference__item {
    padding: 54px 34px;
    row-gap: 20px;
  }
  .difference__item-title {
    font-size: 18px;
  }
  /* ------------------------------------------------------------------- */
  .footer {
    padding: var(--sections-gap-dekstop-small, 150px) 0;
  }
  .footer__title {
    font-size: 26px;
  }
  .footer__socials-title {
    font-size: 18px;
  }
  .footer__form {
    padding: 60px 41.75px;
  }
  .footer__form-inner {
    row-gap: 30px;
  }
}
/* ============================== 980 =============================== */
@media (max-width: 980px) {
  .main section {
    padding-top: var(--sections-gap-tablet, 125.5);
  }
  .container {
    max-width: 632px;
  }
  .burger {
    height: 40px;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s;
  }

  .burger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text, #FAFAFA);
    margin: 8px 0;
  }

  .burger::before,
  .burger::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text, #FAFAFA);
  }
  .button {
    font-size: 16px;
  }
  .heading {
    margin-bottom: 40px;
  }
  .heading-title {
    font-size: 24px;
  }
  /* ------------------------------------------------------------------- */
  #hire-us-dialog {
    min-width: 592px;
  }
  .hire {
    padding-top: 80px;
    padding-bottom: 215px;
    background-image: url(../images/hire-decoration.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 160%;
    border-radius: 20px;
  }
  .hire__close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
  }
  .hire__title {
    font-size: 37px;
  }
  .hire__form {
    padding: 0 112.75px;
  }
  .hire__form-inner {
    max-width: none;
  }
  .hire__form-btn {
    font-size: 18px;
  }
  /* ------------------------------------------------------------------- */
  .header__top--open {
    z-index: 100;
    background: var(--background, #0B0714);
    height: 100%;
  }
  .header__top-inner {
    position: relative;
  }
  .header__top-content {
    position: absolute;
    top: 100%;
    padding-top: 80px;
    flex-direction: column;
    justify-content: center;
    row-gap: 60px;
    transition: all .3s;
    transform: translate(100%);
  }
  .header__top--open .header__top-content {
    transform: translate(-20px);
  }
  .header__nav {
    margin: 0;
  }
  .header__nav-list {
    flex-direction: column;
    row-gap: 60px;
  }
  .header__nav-item {
    text-align: center;
  }
  .header__nav-link {
    font-family: Geologica;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
  }
  .header__socials {
    column-gap: 40px;
  }
  .header__socials-link svg {
    height: 40px;
    width: 40px;
  }
  .header__title {
    font-size: 37px;
  }
  /* ------------------------------------------------------------------- */
  .services__content-list {
    grid-template: repeat(4, 1fr) / 1fr;
  }
  .services__content-text-block {
    padding-bottom: 0;
  }
  .services__content-title {
    font-size: 18px;
  }
  .services__content-image {
    margin-top: 0;
  }
  /* ------------------------------------------------------------------- */
  .projects__list {
    display: flex;
    flex-direction: column;
  }
  .projects__list {
    margin-top: 0;
  }
  .projects__item {
    flex-grow: 1;
    max-width: 100%;
    flex-direction: column;
  }
  .projects__item--hide {
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .projects__item--show {
    grid-column: 1;
  }
  .projects__item-head {
    height: 425px;
  }
  .projects__item--show .projects__item-head {
    height: 425px;
    width: auto;
    max-width: 100%;
  }
  .projects__item--show .projects__item-content {
    row-gap: 20px;
  }
  .projects__item--preview .projects__item-title {
    max-width: none;
  }
  .projects__item--preview .projects__item-text {
    -webkit-line-clamp: 2;
  }
  .projects__item-title {
    font-size: 18px;
    max-width: 100%;
  }
  .projects__item--show .projects__item-head {
    width: 100%;
  }
  .projects__item .projects__item-title {
    max-width: none;
  }
  .projects__item--show .projects__item-title {
    margin-bottom: 18.5px;
  }
  .contact__inner {
    padding: 120px 0;
  }
  .contact__content {
    grid-template-columns: auto;
    row-gap: 30px;
    justify-items: center;
  }
  .contact__title {
    text-align: center;
    font-size: 24px;
  }
  .difference__list {
    grid-template-columns: auto;
    row-gap: 20px;
  }
  .difference__item-title {
    font-size: 18px;
  }
  /* ------------------------------------------------------------------- */
  .footer {
    padding: var(--sections-gap-tablet, 120px) 0;
  }
  .footer::before {
    position: absolute;
    top: 25%;
    left: 6%;
    content: url(../images/footer-bg-element.png);
    z-index: -1;
  }
  .footer__inner {
    grid-template: repeat(4, auto) / repeat(1, 1fr);
    row-gap: 40px;
  }
  .footer__title {
    font-size: 24px;
    text-align: center;
  }
  .footer__socials-title {
    font-size: 18px;
  }
  .footer__socials-list svg {
    height: 40px;
    width: 40px;
  }
  .footer__form {
    grid-row: 2 / 4;
    grid-column: 1 / 2;
    padding: 60px 40px;
  }
  .footer__form-inner {
    max-width: none;
    row-gap: 30px;
  }
}
/* ============================== 640 =============================== */
@media (max-width: 640px) {
  html, body {
    font-size: 14px;
  }
  .main section {
    padding-top: var(--sections-gap-mobile, 100);
  }
  .container {
    max-width: 328px;
  }
  .heading-title {
    font-size: 20px;
  }
  .heading-icon {
    height: 70px;
    width: 70px;
  }
  .header__content {
    max-width: 330px;
    margin: 0 auto;
  }
  .header__title {
    font-size: 27px;
  }
  .header__content-buttons {
    flex-direction: column;
    row-gap: 20px;
  }
  /* ------------------------------------------------------------------- */
  #hire-us-dialog {
    min-width: auto;
  }
  .hire {
    padding-top: 150px;
    padding-bottom: 215px;
    background-position: bottom;
    background-size: 263%;
  }
  .hire__close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
  }
  .hire__title {
    font-size: 27px;
  }
  .hire__form {
    padding: 0 40px;
  }
  .hire__form-inner {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .hire__form-btn {
    font-size: 18px;
    line-height: 120%;
  }
  /* ------------------------------------------------------------------- */
  .services__content-text-block {
    padding: 30px;
  }
  .services__content-list {
    grid-template-rows: auto;
  }
  .services__content-item:first-child {
    grid-row-start: auto;
    grid-row-end: auto;
  }
  .services__content-title {
    font-size: 16px;
  }
  .services__content-text {
    line-height: 130%;
  }
  .services__content-image {
    margin-top: 17px;
  }
  .projects__list {
    display: flex;
    flex-direction: column;
  }
  .projects__item-title {
    margin-bottom: 10px;
  }
  .projects__item-head {
    height: 192px;
  }
  .projects__item-title {
    font-size: 16px;
    max-width: 142px;
    white-space: normal;
  }
  .projects__item--show .projects__item-head {
    height: 192px;
    width: 100%;
  }
  .projects__item--show .projects__item-title {
    margin-bottom: 10px;
}
  .contact__inner {
    display: flex;
    align-items: center;
  }
  .contact__content {
    align-items: normal;
    justify-items: normal;
  }
  .contact__title {
    text-align: left;
    font-size: 20px;
  }
  .difference__item-title {
    font-size: 16px;
  }
  /* ------------------------------------------------------------------- */
  .footer {
    padding: var(--sections-gap-mobile, 100px) 0;
  }
  .footer::before {
    top: 80.5%;
    left: 82%;
    transform: translate(-50%, -50%);
  }
  .footer__title {
    font-size: 20px;
  }
  .footer__socials-list {
    justify-content: center;
  }
  .footer__socials-title {
    font-size: 16px;
    text-align: center;
  }
  .footer__form {
    padding: 40px;
  }
  .footer__form-btn {
    padding: 14px 62px;
  }
}
