:root {
  --darkblue: #020a3f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
  font: inherit;
  color: inherit;
  text-size-adjust: none;
  appearance: none;
}

*:before,
*:after {
  box-sizing: border-box;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img,
object,
embed {
  max-width: 100%;
}

ol,
ul {
  list-style-type: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input[type='button'],
input[type='submit'],
input[type='checkbox'],
input[type='file'],
button,
label {
  cursor: pointer;
}

input::-ms-clear {
  display: none;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

textarea {
  overflow: auto;
  resize: vertical;
}

main,
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}

a {
  background: transparent;
  text-decoration: none;
}

svg {
  fill: currentColor;
  transform: translateZ(0);
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  background-color: #fff;
  font: 400 16px/1.4 'Open Sans',
  'Arial',
  'Helvetica',
  sans-serif;
  color: #2f3137;
}

.body_scroll-lock {
  overflow: hidden;
}

.menu-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.menu-toggler__icon {
  width: 80%;
  transition: transform 400ms;
}

.menu-toggler__line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.menu-toggler__line_top {
  stroke-dasharray: 40 139;
}

.menu-toggler__line_bottom {
  stroke-dasharray: 40 180;
}

.menu-toggler_active .menu-toggler__line_top {
  stroke-dashoffset: -98px;
}

.menu-toggler_active .menu-toggler__line_bottom {
  stroke-dashoffset: -138px;
}

.menu-toggler_active .menu-toggler__icon {
  transform: rotate(45deg);
}

.wrap {
  width: calc(100% - 80px);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.title {
  margin-bottom: 48px;
  font: 600 64px/1.2 'Raleway',
  sans-serif;
}

.logotype {
  display: block;
  width: 157px;
}

.title_mark {
  color: #00da9e;
}

.list-pallet {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.pallet {
  padding: 24px 18px;
  border-radius: 24px;
  border: 1px solid #dce0ee;
  background-color: #f5f7fb;
  text-align: center;
}

.pallet__title {
  margin-bottom: 10px;
  font: 700 72px/1.1 Raleway, sans-serif;
}

.pallet__desc {
  font-weight: 700;
  font-size: 24px;
  color: #00da9e;
}

.list-card {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(5, 1fr);
}

.card {
  position: relative;
  min-height: 242px;
  border-radius: 24px;
  background: no-repeat 50%/cover, linear-gradient(135deg, rgba(245, 246, 251, 1) 0%, rgba(213, 218, 235, 1) 100%);
  overflow: hidden;
  cursor: default;
}

.card_light {
  background: no-repeat 50%/cover, linear-gradient(135deg, rgba(245, 246, 251, 1) 0%, rgba(213, 218, 235, 1) 100%);
}

.card_1 {
  background-image: url('/images/cards/1.jpg');
}

.card_2 {
  background-image: url('/images/cards/2.jpg');
}

.card_3 {
  background-image: url('/images/cards/3.jpg');
}

.card_4 {
  background-image: url('/images/cards/4.jpg');
}

.card_5 {
  background-image: url('/images/cards/5.jpg');
}

.card_6 {
  background-image: url('/images/cards/6.jpg');
}

.card_7 {
  background-image: url('/images/cards/7.jpg');
}

.card_8 {
  background-image: url('/images/cards/8.jpg');
}

.card_9 {
  background-image: url('/images/cards/9.jpg');
}

.card_10 {
  background-image: url('/images/cards/10.jpg');
}

@media (hover: hover) {
  .card:hover .card__title {
    opacity: 0;
  }

  .card:hover .card__desc {
    opacity: 1;
  }
}

.card__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  font: 700 24px/1.2 'Raleway',
  sans-serif;
  color: #2f3137;
  transition: opacity .3s;
}

.card_light .card__title {
  color: #626880;
}

.card__desc {
  min-height: 100%;
  padding: 24px;
  background-color: #00da9e;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}


.list-item-dashed {
  padding-left: 24px;
  border-left: 4px solid #00da9e;
}

.list-item-dashed__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
}

.list-item-dashed__desc {
  color: #626880;
}

.list-dashed {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list-thumb {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.thumb {
  padding: 36px;
  border-radius: 24px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  transition: background-color .4s, border-color .4s;
}

@media (hover: hover) {
  .thumb:hover {
    border-color: #dce0ee;
    background-color: #f5f7fb;
  }
}

.thumb__icon {
  width: 96px;
  height: 96px;
  margin-bottom: 6px;
}

.field {
  display: block;
}

.field_error .field__error {
  display: block;
}

.field_error .field__field {
  border-color: #ff0040;
}

.field__label {
  display: block;
  margin-bottom: 4px;
}

.field__field {
  display: block;
  width: 100%;
  height: 54px;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1px solid #dce0ee;
  background-color: #f5f7fb;
  transition: border-color 0.3s;
}

.field__field:hover {
  border-color: #bec2d0;
}

.field__field:focus {
  border-color: #005eff;
}

.field__info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.field__error {
  display: none;
  font-size: 12px;
  border-color: #ff0040;
  color: #ff0040;
}

.message {
  padding: 16px;
  border-radius: 4px;
  background-color: cornflowerblue;
  font-size: 12px;
  color: #fff;
}

.message__title {
  margin-bottom: 8px;
  font-size: 14px;
}

.message_success {
  background-color: forestgreen;
}

.message_error {
  background-color: brown;
}

.button {
  display: block;
  padding: 16px;
  border-radius: 4px;
  background-color: #19d600;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  transition: background-color 0.3s;
}

@media (hover: hover) {
  .button:hover {
    background-color: #1eec03;
  }

  .button:active {
    background-color: #19d600;
    transition: none;
  }
}

.loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.loader:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 2px solid #00da9e;
  border-bottom-color: transparent;
  animation: loader 1s infinite linear;
}

.slider-item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #dce0ee;
  background-color: #f5f7fb;
  transition: background-color 0.3s, color .3s, border-color .3s;
  cursor: pointer;
}

@media (hover: hover) {
  .slider-item:not(.slider-item_active):hover {
    color: #00da9e;
  }
}

.slider-item__title {
  font-weight: 700;
  font-size: 24px;
}

.slider-item__desc {
  display: none;
  margin-top: 24px;
}

.slider-item_active {
  border-color: #00da9e;
  background-color: #00da9e;
  color: #fff;
  cursor: default;
}

.slider-item_active .slider-item__desc {
  display: block;
}

.slider {
  display: flex;
  gap: 24px;
}

.slider__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.slider__images {
  width: 100%;
  height: 726px;
  position: relative;
}

.slider__image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: no-repeat 50% / cover;
  border-radius: 25px;
  overflow: hidden;
  transition: opacity 0.3s;
}

.slider__image_1 {
  background-image: url('/images/team/1.jpg');
}

.slider__image_2 {
  background-image: url('/images/team/2.jpg');
}

.slider__image_3 {
  background-image: url('/images/team/3.jpg');
}

.slider__image_4 {
  background-image: url('/images/team/4.jpg');
}

.slider__image_5 {
  background-image: url('/images/team/5.jpg');
}

.slider__image_6 {
  background-image: url('/images/team/6.jpg');
}

.slider__image_active {
  opacity: 1;
}

.form__content .form__field:not(:last-child) {
  margin-bottom: 8px;
}

.form__inner {
  position: relative;
}

.form__message {
  margin-top: 24px;
}

.form__footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.form__footer .button {
  flex-grow: 1;
}

.hidden {
  display: none !important;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.link {
  text-decoration: underline;
  color: #00da9e;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: -15px;
}

.logos_large {
  margin: -24px;
}

.logos_large .logos__item {
  margin: 24px;
}

.logos__item {
  margin: 15px;
}

.logo {
  display: block;
}

.logo_b {
  max-width: 42px;
}

.logo_microsoft {
  max-width: 161px;
}

.logo_ebay {
  max-width: 128px;
}

.logo_metacafe {
  max-width: 164px;
}

.logo_united-healthcare {
  max-width: 136px;
}

.logo_evo-market-place {
  max-width: 132px;
}

.logo_dell {
  max-width: 88px;
}

.logo_smash-loud {
  max-width: 143px;
}

.logo_esri {
  max-width: 120px;
}

.logo_code-beam-america {
  max-width: 97px;
}

.logo_high-load {
  max-width: 219px;
}

.logo_future-of-software {
  max-width: 186px;
}

.logo_sqa {
  max-width: 104px;
}

.logo_tipalti {
  max-width: 101px;
}

.logo_virgo-global {
  max-width: 99px;
}

.logo_radix {
  max-width: 54px;
}

.person {
  display: flex;
  align-items: center;
}

.person__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  margin-right: 24px;
  border-radius: 64px;
  background: no-repeat 50%/cover #d7d7d5;
  overflow: hidden;
}

.person__avatar_1 {
  background-image: url('/images/avatars/1.jpg');
}

.person__avatar_2 {
  background-image: url('/images/avatars/2.jpg');
}

.person__avatar_3 {
  background-image: url('/images/avatars/3.jpg');
}

.person__avatar_4 {
  background-image: url('/images/avatars/4.jpg');
}

.person__avatar_5 {
  background-image: url('/images/avatars/5.jpg');
}

.person__name {
  font: 700 24px/1.2 Raleway, sans-serif;
}

.comment {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 24px;
  background-color: #f5f7fb;
}

.comment__title {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

.comment__desc {
  font: 400 24px/1.15 Raleway, sans-serif;
  color: #00da9e;
}

.comment__author {
  margin-top: auto;
  padding-top: 24px;
}

.list-comment {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.list-comment__item:nth-child(1),
.list-comment__item:nth-child(2),
.list-comment__item:nth-child(3) {
  width: calc((100% - 48px) / 3);
}

.list-comment__item:nth-child(4),
.list-comment__item:nth-child(5) {
  width: calc((100% - 24px) / 2);
}

.menu {
  display: flex;
}

.menu__item {
  position: relative;
  text-transform: uppercase;
  font: 500 16px/1.2 Raleway, sans-serif;
}

.menu__item:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00da9e;
  transition: width .3s;
}

@media (hover: hover) {
  .menu__item:hover:before {
    width: 100%;
  }
}

.menu__item:not(:last-child) {
  margin-right: 20px
}

.menu__item_active:before {
  width: 100%;
}

.anchor {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translateY(-65px);
}

/*///////////////////////////////*/

.navbar {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2f3137;
  color: #fff;
}

.navbar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 700px;
  margin-top: 66px;
  padding: 50px 0;
  background: url('/images/hero.jpg') no-repeat 50% / auto;
}

.hero__wrap {
  max-width: 568px;
}

.hero__title {
  margin-bottom: 16px;
  text-transform: uppercase;
  font: 600 72px/1.2 'Raleway',
  sans-serif;
  color: #000;
}

.hero__desc {
  color: #626880;
}

.expertise {
  position: relative;
  padding: 80px 0;
  background-color: #2f3137;
  color: #fff;
}

/*.expertise__title {*/
/*  color: #fff;*/
/*}*/

.partners {
  position: relative;
  padding: 80px 0;
  background-color: #f5f7fb;
  overflow: hidden;
}

.partners__wrap {
  overflow: hidden;
}

.team {
  position: relative;
  padding: 80px 0;
}

.count {
  position: relative;
  padding: 80px 0;
}

.industries {
  position: relative;
  padding: 80px 0;
}

.industries__title {
  margin-bottom: 16px;
}

.industries__desc {
  margin-bottom: 48px;
  letter-spacing: -0.3px;
  font-weight: 600;
  font-size: 24px;
}

.process {
  position: relative;
  background-color: #f5f7fb;
}

.process__wrap {
  display: flex;
  gap: 80px;
}

.process__wrap:before {
  content: '';
  flex-shrink: 0;
  align-self: stretch;
  width: 560px;
  background: url(/images/process.jpg) no-repeat 50% / cover;
}

.process__title {
  margin-bottom: 32px;
}

.process__info {
  padding: 80px 0;
}

.why {
  position: relative;
  padding: 80px 0;
}

.social {
  position: relative;
  padding: 80px 0;
  background-color: #2f3137;
  color: #fff;
  overflow: hidden;
}

.social__title {
  margin-bottom: 24px;
}

.social__desc {
  margin-bottom: 48px;
  font: 600 24px/1.2 Raleway, sans-serif;
}

.project {
  position: relative;
  padding: 80px 0;
}

.project__title {
  margin-bottom: 24px;
}

.contact {
  position: relative;
  padding: 80px 0;
}

.contact__info {
  width: 100%;
}

.contact__title {
  margin-bottom: 32px;
}

.contact__desc {
  color: #626880;
}

.contact__form {
  width: 100%;
}

.contact__wrap {
  display: flex;
  gap: 64px;
}

.hiring {
  position: relative;
  padding: 80px 0;
  background-color: #2f3137;
  color: #fff;
}

.hiring__title {
  margin-bottom: 12px;
}

.hiring__desc:not(:last-child) {
  margin-bottom: 12px;
}

.address {
  position: relative;
  padding: 64px 0;
}

.address__top {
  display: flex;
  gap: 64px;
  margin-bottom: 64px;
}

.address__office {
  width: 100%;
  background: url('/images/office.jpg') no-repeat 50% / cover;
  border-radius: 24px;
  overflow: hidden;
}

.address__office:before {
  content: '';
  display: block;
  padding-top: 56.34%;
}

.address__info {
  width: 100%;
}

.address__title {
  margin-bottom: 24px;
}

.address__mail {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 24px;
  color: #00da9e;
}

.address__desc {
  color: #626880;
}

.address__map {
  height: 600px;
  border-radius: 24px;
  background-color: #f5f0e6;
  overflow: hidden;
}

.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  padding: 20px;
  background-color: #2f3137;
  text-align: center;
  color: #dce0ee;
}

.footer__info {
  margin-left: 160px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}

@media only screen and (max-width: 1280px) {
  .list-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .list-comment__item:nth-child(1),
  .list-comment__item:nth-child(2),
  .list-comment__item:nth-child(3),
  .list-comment__item:nth-child(4) {
    width: calc((100% - 24px) / 2);
  }

  .list-comment__item:nth-child(5) {
    width: 100%;
  }

  .card {
    padding: 32px;
  }

  @media (hover: hover) {
    .card:hover .card__title {
      opacity: 1;
    }
  }

  .card__title {
    position: static;
    width: auto;
    height: auto;
    margin-bottom: 16px;
    padding: 0;
    opacity: 1;
  }

  .card_light .card__title {
    color: #2f3137;
  }

  .card__desc {
    min-height: 0;
    padding: 0;
    background-color: transparent;
    opacity: 1;
    color: #2f3137;
  }

  .process__wrap:before {
    width: 430px;
  }

  .contact__info {
    width: 80%;
  }
}

@media only screen and (max-width: 1024px) {
  .menu-toggler {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 66px;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    padding: 32px;
    background-color: #3e4048;
    overflow: auto;
    transform: translateX(100%);
    transition: transform .3s;
  }

  .menu_active {
    transform: translateX(0);
  }

  .menu__item {
    width: 100%;
    padding: 12px 0;
  }

  .menu__item:not(:last-child) {
    margin-right: 0;
  }

  .pallet__title {
    font-size: 56px;
  }

  .pallet__desc {
    font-size: 18px;
  }

  .slider-item {
    padding: 32px;
    border-radius: 24px;
    background: no-repeat 50% / cover, linear-gradient(135deg, rgba(245, 246, 251, 1) 0%, rgba(213, 218, 235, 1) 100%);
    border: none;
  }

  .slider-item__title {
    margin-bottom: 16px;
    font: 700 24px/1.2 Raleway, sans-serif;
    color: #2f3137;
  }

  .slider-item__desc {
    display: block;
    margin-top: 0;
    color: #2f3137;
  }

  .slider__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .slider__images {
    display: none;
  }

  .title {
    font-size: 48px;
  }

  .list-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-thumb {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-dashed {
    gap: 32px;
  }


  .hero {
    height: 560px;
    background-image: url('/images/hero-1024.jpg');
  }

  .hero__title {
    font-size: 56px;
  }

  .count {
    padding: 20px 0;
  }

  .social__desc {
    font-size: 18px;
  }

  .process__wrap:before {
    display: none;
  }

  .industries__desc {
    font-size: 21px;
  }

  .contact__wrap {
    flex-direction: column;
  }

  .contact__info {
    width: 100%;
  }

  .contact__form {
    max-width: 65%;
  }
}

@media only screen and (max-width: 768px) {
  .logos_large {
    margin: -15px 0;
  }

  .logos_large .logos__item {
    margin: 15px;
  }

  .logo_b {
    max-width: 32px;
  }

  .logo_microsoft {
    max-width: 130px;
  }

  .logo_ebay {
    max-width: 70px;
  }

  .logo_metacafe {
    max-width: 120px;
  }

  .logo_united-healthcare {
    max-width: 110px;
  }

  .logo_evo-market-place {
    max-width: 117px;
  }

  .logo_dell {
    max-width: 61px;
  }

  .logo_smash-loud {
    max-width: 100px;
  }

  .logo_esri {
    max-width: 80px;
  }

  .logo_code-beam-america {
    max-width: 70px;
  }

  .logo_high-load {
    max-width: 140px;
  }

  .logo_future-of-software {
    max-width: 120px;
  }

  .logo_sqa {
    max-width: 70px;
  }

  .title {
    font-size: 36px;
  }

  .thumb {
    padding: 24px 16px;
    font-size: 18px;
  }

  .list-comment__item:nth-child(1),
  .list-comment__item:nth-child(2),
  .list-comment__item:nth-child(3),
  .list-comment__item:nth-child(4) {
    width: 100%;
  }

  .pallet__title {
    font-size: 42px;
  }

  .pallet__desc {
    font-size: 16px;
  }

  .person__avatar {
    width: 56px;
    height: 56px;
    margin-right: 20px;
  }

  .person__name {
    font-size: 21px;
  }

  .comment {
    padding: 28px;
  }

  .comment__title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .comment__desc {
    font-size: 21px;
  }

  .comment__author {
    padding-top: 20px;
  }

  .card {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    border: none;
    background: none;
  }

  .card__title {
    position: static;
    width: auto;
    height: auto;
    margin-bottom: 16px;
    padding: 0;
    opacity: 1;
  }

  .card__title {
    min-height: 0;
    color: inherit;
  }

  .card_light .card__title {
    color: inherit;
  }

  .card__desc {
    color: inherit;
  }

  .slider__nav {
    gap: 32px;
  }

  .slider-item {
    padding: 0;
    background: none;
  }

  .list-card {
    grid-gap: 42px;
    grid-template-columns: repeat(1, 1fr);
  }

  .form__footer {
    flex-direction: column;
  }

  .form__footer .button {
    width: 100%;
  }

  .hero {
    height: 440px;
    background-image: url('/images/hero-768.jpg');
  }

  .hero__title {
    font-size: 48px;
  }

  .expertise {
    padding: 40px 0;
  }

  .partners {
    padding: 40px 0;
  }

  .team {
    padding: 40px 0;
  }

  .industries {
    padding: 40px 0;
  }

  .industries__desc {
    font-size: 16px;
  }

  .process__info {
    padding: 40px 0;
  }

  .why {
    padding: 40px 0;
  }

  .social {
    padding: 40px 0;
  }

  .social__desc {
    font: 400 16px/1.4 'Open Sans', sans-serif;
  }

  .project {
    padding: 40px 0;
  }

  .contact {
    padding: 40px 0;
  }

  .contact__wrap {
    gap: 36px;
  }

  .contact__form {
    max-width: 100%;
  }

  .hiring {
    padding: 40px 0;
  }

  .hiring__desc:not(:last-child) {
    margin-bottom: 18px;
  }

  .address {
    padding: 40px 0;
  }

  .address__map {
    height: 400px;
  }

  .footer {
    flex-direction: column;
    padding: 36px 8px;
  }

  .footer__info {
    margin: 20px 0 0;
  }
}

@media only screen and (max-width: 680px) {
  .person__avatar {
    width: 44px;
    height: 44px;
    margin-right: 15px;
  }

  .person__name {
    font-size: 18px;
  }

  .comment {
    padding: 24px;
  }

  .comment__title {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .comment__desc {
    font-size: 18px;
  }

  .comment__author {
    padding-top: 16px;
  }

  .wrap {
    width: calc(100% - 40px);
  }

  .list-pallet {
    grid-template-columns: 1fr;
  }

  .list-thumb {
    grid-template-columns: repeat(1, 1fr);
  }

  .slider__nav {
    grid-template-columns: 1fr;
  }

  .menu {
    top: 60px;
  }

  .navbar__wrap {
    height: 60px;
  }

  .navbar__wrap {
    width: 100%;
    padding-left: 20px;
  }

  .hero {
    height: auto;
    margin-top: 60px;
  }

  .hero__title {
    font-size: 38px;
  }

  .contact__wrap {
    gap: 40px;
  }

  .address .title {
    margin-bottom: 24px;
  }

  .address__top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .address__map {
    height: 400px;
    border-radius: 12px;
  }

  .footer {
    height: 130px;
    padding: 8px;
  }
}
