@import url("../../fonts/Roboto/*.ttf");
.text-gray {
  color: #626262;
}

.text-lightgray {
  color: #9F9F9F;
}

body {
  transition: all 0.5s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

main {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

.article-text {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  color: #1E1E1E;
}

.order-btn {
  flex: 0 0 auto;
}

.btn-text a {
  padding: 15px 20px;
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 21px;
  color: #1E1E1E;
  border: 1px solid #9F9F9F;
  border-radius: 30px;
  transition: all 0.1s ease-in;
}
.btn-text a:hover {
  background: #1E1E1E;
  color: white;
}

.non-visible {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0, 0, 0, 1.17);
}

.dark-theme-text {
  color: white !important;
}

.dark {
  background-color: #1E1E1E !important;
  transition: all 0.8s ease;
}

.dark-theme_btn h4 a {
  background-color: #FFF;
  color: #1E1E1E;
}

.dark-theme_about {
  background: radial-gradient(circle at 30px 20px, rgb(59, 59, 59) 0%, rgba(30, 30, 30, 0.1) 100%) !important;
}
.dark-theme_about span,
.dark-theme_about p {
  color: #9F9F9F;
}

/* Regular */
@font-face {
  font-family: "ArtegraSans";
  src: local("ArtegraSans"), url("../../fonts/Artegra/ArtegraSans-Regular.ttf") format("truetype"), url("../../fonts/Artegra/ArtegraSans-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Artegra/ArtegraSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/* Bold */
@font-face {
  font-family: "ArtegraSans";
  src: local("ArtegraSans"), url("../../fonts/Artegra/ArtegraSans-Bold.ttf") format("truetype"), url("../../fonts/Artegra/ArtegraSans-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/Artegra/ArtegraSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

input,
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
}

input:focus,
button:focus {
  outline: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 999999;
}

.header .container {
  padding: 0;
}

.header-content_full-width {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #E4E4E4;
}

.header-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 90px;
  align-items: center;
  padding: 10px 30px;
  overflow: hidden;
}

.header-switchers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 9;
}
.header-switchers_theme {
  display: flex;
  gap: 10px;
  position: relative;
}

.toggle {
  border-radius: 38px;
}

.toggle label {
  position: relative;
  z-index: 8;
  display: block;
  width: 50px;
  height: 22px;
  background: #fff;
  border: 1px solid #9F9F9F;
  border-radius: 100px;
  cursor: pointer;
}
.toggle label::before {
  position: absolute;
  transform: translate3d(-47%, 0, 0) scale(0.1);
  transition: background 300ms ease-in-out 200ms, opacity 350ms ease-in-out 200ms;
  pointer-events: none;
  content: "";
  opacity: 0;
  z-index: -999;
}
.toggle label::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #626262;
  content: "";
  border-radius: 100px;
  transition: background 200ms linear, transform 200ms ease-in-out 100ms;
}

.toggle input {
  display: none;
}
.toggle input:checked ~ label:after {
  background: #000;
  transform: translate3d(27px, 0, 0);
}
.toggle input:checked ~ label:before {
  transform: translate3d(-84%, 23%, 0) scale(1);
  transition: background 300ms ease-in-out, opacity 30ms ease-in-out, transform 400ms ease-in-out;
  opacity: 1;
}

.header-logo {
  flex: 0 1 300px;
}

.logo {
  display: block;
}
.logo img {
  max-width: 100%;
}

.lang {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-switch {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 21px;
  color: #9F9F9F;
  align-self: center;
  vertical-align: middle;
  height: 100%;
}

.lang span {
  width: 1px;
  height: 20px;
  background-color: #9F9F9F;
  display: inline-block;
  margin: 0 7px;
  align-self: center;
}

.lang-current {
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  color: #1E1E1E;
}

.header-callback {
  display: flex;
}

.header-socials {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 25px;
  transition: 0.3s all ease;
}

.header-socials img {
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header-socials img:hover {
  opacity: 1;
}

.header-nav {
  background-color: #fff;
  width: 100%;
}

.menu-nav {
  display: flex;
}
.menu-nav li {
  flex-grow: 1;
}
.menu-nav a {
  transition: background 0.2s ease, color 0s ease;
  display: block;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 21px;
  color: #626262;
  text-align: center;
}
.menu-nav a:hover {
  background: #1E1E1E;
  color: #E4E4E4;
}

#burger-container {
  display: none;
}

.main_article {
  transition: all 0.8s ease;
  background: #E6E6E6 url("../../img/header/curve-lines.svg") 0 50% no-repeat;
  min-height: 720px;
  position: relative;
  z-index: 9;
}
.main_article::after {
  content: "";
  width: 35%;
  height: 100%;
  background-color: #1E1E1E;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  background: #1E1E1E url("../../img/header/curve-lines.svg") 10% 100% no-repeat;
}
.main_article_picture img {
  position: absolute;
  right: 40px;
  top: 80px;
  border-radius: 18px;
  z-index: 8;
}

.hero-text {
  max-width: 65%;
  padding-top: 100px;
}

.article_text {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  color: #1E1E1E;
}
.article_description {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 30px;
  margin: 50px 0;
  position: relative;
  z-index: 9;
  width: 75%;
}
.article_tags {
  background-color: #fff;
  border-radius: 18px;
  position: relative;
  z-index: 9;
}

.tags {
  display: flex;
  gap: 45px;
  justify-content: space-evenly;
  padding: 25px 30px;
}
.tags li:not(first-child):hover {
  opacity: 0.8;
}
.tags li a {
  display: block;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
.tags li:first-child a {
  font-size: 1.25rem;
}

.services {
  position: relative;
  padding: 200px 0;
  background: url("../../img/services/services-bg.svg") 20% 50% repeat-x;
}
.services_description-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  border-radius: 0 0 18px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services_description {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
}
.services_row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 30px;
}
.services_row_image {
  display: block;
  width: 30%;
  height: 445px;
  border-radius: 18px;
  background-size: cover;
  transition: all 0.3s ease;
}
.services_row_image:nth-child(1) {
  background-image: url("../../img/services/services-1.jpg");
  position: relative;
  top: 120px;
}
.services_row_image:nth-child(2) {
  background-image: url("../../img/services/services-2.jpg");
  position: relative;
}
.services_row_image:nth-child(3) {
  background-image: url("../../img/services/services-3.jpg");
  position: relative;
  top: -120px;
}
.services_row_image:hover {
  background-position: -15px;
}
.services_row_image img {
  border-radius: 18px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.callback-block {
  position: absolute;
  right: 0;
  top: 100%;
  width: 30%;
}
.callback-block_article h4, .callback-block_numbers {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
  padding-left: 35px;
}

.numbers_number a:hover {
  opacity: 0.8;
}

.works {
  padding: 200px 0;
}
.works_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.works_see-all {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 30px;
  position: relative;
  z-index: 10;
  transition: color 0.2s ease;
}
.works_see-all.text-gray:hover {
  color: #1E1E1E;
}
.works_see-all::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #F3F3F3;
  top: -10px;
  left: -15px;
  z-index: -1;
  border-radius: 50%;
}

.gallery {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.gallery_item {
  overflow: hidden;
  flex: 1 1 auto;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
  border-radius: 18px;
  min-width: 148px;
  height: 695px;
  background-size: cover;
}
.gallery_item:nth-child(1) {
  background-image: url(../../img/works/works-1.jpg);
}
.gallery_item:nth-child(2) {
  background-image: url(../../img/works/works-2.jpg);
}
.gallery_item:nth-child(3) {
  background-image: url(../../img/works/works-3.jpg);
}
.gallery_item:nth-child(4) {
  background-image: url(../../img/works/works-4.jpg);
}
.gallery_item:nth-child(5) {
  background-image: url(../../img/works/works-5.jpg);
}
.gallery_item:nth-child(6) {
  background-image: url(../../img/works/works-6.jpg);
}

.gallery_item_description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 210px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 0px 0px 18px 18px;
  color: white;
  padding: 30px;
}
.gallery_item_description .work_title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 28px;
  color: #FFFFFF;
}
.gallery_item_description .work_description {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  color: #FFFFFF;
  padding: 14px 0;
  opacity: 0.8;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery_item_description .moreBtn {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  /* or 143% */
  color: #FFFFFF;
  display: inline-block;
  position: relative;
}
.gallery_item_description .moreBtn::after {
  content: "";
  width: 40px;
  height: 10px;
  background-image: url("../../img/works/more-arrow.svg");
  position: absolute;
  left: 115%;
  top: 50%;
  transform: translateY(-50%);
}
.gallery_item_description .moreBtn:hover {
  opacity: 0.8;
}

.about {
  background: url("../../img/about/about-bg.svg") 0 40% repeat-x;
  padding: 100px 0 200px;
  margin-bottom: 100px;
}
.about .container {
  display: flex;
  position: relative;
  gap: 70px;
  justify-content: space-between;
}
.about_title {
  max-width: 450px;
}
.about_title p {
  margin-top: 35px;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 30px;
  position: relative;
  z-index: 9;
}
.about_building-image {
  position: absolute;
  bottom: -150px;
  left: -100px;
}
.about_blocks-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  gap: 25px;
}
.about_block {
  padding: 25px 30px;
  flex: 1 1 280px;
  height: 280px;
  border-radius: 18px;
  background: radial-gradient(circle at 0px 0px, rgb(255, 255, 255) 0%, rgba(30, 30, 30, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.about_block:nth-child(odd) {
  top: 45px;
}
.about_block p {
  font-size: 1.25rem;
}
.about_block::after {
  content: "";
  height: 65px;
  width: 65px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-radius: 9px;
  position: absolute;
  left: 85px;
  top: 85px;
}
.about_num {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 28px;
  /* or 88% */
  color: #1E1E1E;
}

.prices {
  padding: 100px 0;
}
.prices .container {
  display: flex;
  justify-content: space-between;
}
.prices .container .works_title {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.prices_card {
  margin-top: 50px;
  width: 33%;
  min-height: 670px;
  background: #F3F3F3;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 25px;
}
.prices_card:nth-child(2) {
  background-color: #1E1E1E;
  color: white;
  transform: scale(1.1);
  border: 1px solid #9F9F9F;
}
.prices_card:nth-child(2) .price-big {
  color: white;
}
.prices_card:nth-child(2) .order-btn.dark-theme_btn h4 a {
  color: #1E1E1E;
}
.prices_card:nth-child(2) .order-btn.dark-theme_btn h4 a:hover {
  color: white;
  background: #1E1E1E;
}
.prices_card:nth-child(2) .order-btn h4 a {
  color: white;
}
.prices_card:nth-child(2) .order-btn h4 a:hover {
  background: white;
  color: #1E1E1E;
}
.prices_card_recomedacion {
  background-color: #E2E2E2;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  padding: 7px;
  margin-top: -20px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 19px;
  color: #1E1E1E;
}
.price {
  font-size: 26px;
}
.price_small-text {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 5px;
}

.price-big {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  text-align: center;
  color: #1E1E1E;
}

.card-list li {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 36px;
  text-align: center;
}

.comments {
  padding: 200px 0;
}
.comments .container {
  justify-content: space-between;
  display: flex;
}
.comments_text {
  width: 45%;
}
.comments_text .text-gray {
  margin: 50px 0 25px;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 30px;
}
.comments_text_list {
  margin: 25px 0 50px;
}
.comments_text_list li {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 30px;
  padding: 10px 0 10px 30px;
  position: relative;
}
.comments_text_list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #9F9F9F;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.comments_reviews {
  margin-top: -50px;
  padding: 50px;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 45px;
  background: url("../../img/comments/comments-bg.svg") center no-repeat;
  background-size: cover;
}

.btn-socials {
  display: flex;
  gap: 35px;
}
.btn-socials .order-btn.dark-theme_btn + .header-socials img {
  filter: invert(1);
}
.btn-socials .header-socials {
  gap: 25px;
}

.comment-block {
  width: 90%;
  background: #FFFFFF;
  border-radius: 20px;
  filter: drop-shadow(0px 4px 34px rgba(0, 0, 0, 0.1));
  padding: 20px 25px 15px 60px;
  position: relative;
}
.comment-block img {
  position: absolute;
  top: -40px;
  left: -40px;
}
.comment-block p {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
}
.comment-block:nth-child(even) {
  margin-left: 100px;
  padding: 20px 45px 15px 25px;
}
.comment-block:nth-child(even) img {
  position: absolute;
  right: -40px;
  left: auto;
}

.footer {
  max-width: 100vw;
  border-top: 1px solid #9F9F9F;
  background-color: #1E1E1E;
}
.footer.container {
  display: flex;
}
.footer_contact-row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  opacity: 0.7;
  border-bottom: 1px solid #9F9F9F;
  padding: 50px 0;
}
.footer_contact-row h3 {
  margin-top: -10px;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 54px;
  color: #E2E2E2;
}
.footer_contact-row a {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #E2E2E2;
}
.footer_contact-row a:hover {
  opacity: 0.8;
}
.footer_contact-row_item {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #E2E2E2;
}
.footer_contact-row_item span {
  display: block;
  margin-bottom: 25px;
  font-size: 1.5rem;
  line-height: 32px;
}
.footer_contact-list-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 50px;
}
.footer_contact-list li h5 a {
  padding: 3px 0;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 1rem;
  line-height: 32px;
  color: #9F9F9F;
  opacity: 0.7;
}
.footer_contact-list li h5 a:hover {
  opacity: 1;
}

.callback-modal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 18px;
  border: 1px solid #9F9F9F;
  text-align: center;
  padding: 30px;
  z-index: 9999;
}
.callback-modal_inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.callback-modal .article_text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.modal-close {
  position: absolute;
  height: 20px;
  width: 20px;
  right: 20px;
  top: 10px;
  font-size: 40px;
}

.contact-form__input-wrapper {
  width: 80%;
}
.contact-form__input {
  width: 100%;
  background-color: #9F9F9F;
  padding: 10px 20px;
  border-radius: 9px;
}
.contact-form__input::-moz-placeholder {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 27px;
  color: #fff;
}
.contact-form__input::placeholder {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 27px;
  color: #fff;
}
.contact-form__input[type=text] {
  font-size: 1.25rem;
  color: #fefefe;
}

#callback-modal-btn {
  margin-top: 30px;
  background: transparent;
  font-size: 1.25rem;
  border: 1px solid #1E1E1E;
  border-radius: 9px;
  padding: 10px 15px;
  text-align: center;
  cursor: pointer;
}

.works-gallery {
  padding: 70px 0;
}

.works-gallery-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  align-items: flex-end;
}

.works-gallery-item {
  cursor: pointer;
  border-radius: 18px;
  position: relative;
}
.works-gallery-item-text {
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 0px 0px 18px 18px;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.works-gallery-item:hover .works-gallery-item-text {
  height: 150px;
}
.works-gallery-item:nth-child(1) {
  background-image: url(../../img/works/works-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.works-gallery-item:nth-child(2) {
  background-image: url(../../img/works/works-2.jpg);
}
.works-gallery-item:nth-child(3) {
  background-image: url(../../img/works/works-3.jpg);
}
.works-gallery-item:nth-child(4) {
  background-image: url(../../img/works/works-4.jpg);
}
.works-gallery-item:nth-child(5) {
  background-image: url(../../img/works/works-5.jpg);
}
.works-gallery-item:nth-child(6) {
  background-image: url(../../img/works/works-6.jpg);
}
.works-gallery-item:nth-child(odd) {
  width: 60%;
  height: 420px;
}
.works-gallery-item:nth-child(even) {
  width: 35%;
  height: 460px;
  position: relative;
  top: -70px;
}
.works-gallery-item_title {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 40px;
  color: #FFFFFF;
  display: inline-block;
}
.works-gallery-item .works_see-all {
  display: inline-block;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 30px;
  color: #FFFFFF;
}
.works-gallery-item .works_see-all:hover {
  opacity: 0.8;
}
.works-gallery-item .works_see-all::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #1E1E1E;
  top: -10px;
  left: -15px;
  z-index: -1;
  border-radius: 50%;
}

.hero {
  margin-bottom: 200px;
}
.hero .container {
  padding: 100px 0 20px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 18.64%, #FFFFFF 89.41%), url("/img/repair/repair-bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
}

.article_description {
  width: 50%;
}

.text-sub-main {
  font-family: "Artegra Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  /* or 125% */
  color: #1E1E1E;
}

.modal-test {
  position: absolute;
  top: 180px;
  right: 10px;
  width: 560px;
  background: #FFFFFF;
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.modal-test_buttons {
  display: flex;
  gap: 20px;
}
.modal-test .order-btn:first-child {
  background-color: #1E1E1E;
}
.modal-test .order-btn:first-child .btn-text a {
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 23px;
  text-align: center;
}
.modal-test .order-btn:hover a {
  color: #FFFFFF;
}
.modal-test .btn-text a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #1E1E1E;
}

.repair-hero-img {
  position: absolute;
  top: 110%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.repair-hero-img::after {
  content: "";
  height: 65px;
  width: 65px;
  background: rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 9px;
  position: absolute;
  left: 55px;
  top: 55px;
}

.start .container .article_title {
  margin-bottom: 30px;
}
.start .container .article_title .article_text {
  margin: 20px 0;
}

.start-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.start-container img {
  width: 45%;
}
.start-container .text-gray {
  font-size: 1.25rem;
}

.cost-small {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.cost-small-par p {
  font-family: "Artegra Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  /* or 150% */
  color: #626262;
  margin-bottom: 40px;
}
.cost-small-par .modal-test_buttons {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.cost-small-par .order-btn {
  width: 45%;
  text-align: center;
}
.cost-small-par .order-btn:first-child a {
  background-color: #1E1E1E;
  color: #FFFFFF;
}

.repair-cards {
  margin: 20px auto 100px;
}
.repair-cards .container {
  display: flex;
  flex-direction: row;
}

.repair-cards_card {
  margin-top: 50px;
  width: 33%;
  min-height: 670px;
  background: #F3F3F3;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 25px;
  gap: 10px;
}
.repair-cards_card .btn-text {
  color: white;
  padding: 0 30px;
}
.repair-cards_card:nth-child(2) {
  background-color: #1E1E1E;
  color: white;
  transform: scale(1.1);
  border: 1px solid #9F9F9F;
}
.repair-cards_card:nth-child(2) .price-big {
  color: white;
}
.repair-cards_card:nth-child(2) .btn-text a {
  color: white;
}
.repair-cards_card_recomedacion {
  background-color: #E2E2E2;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  padding: 7px;
  margin-top: -20px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 19px;
  color: #1E1E1E;
}

.contacts .container .contacts_contacts .contacts-text .footer_contact-row {
  padding: 0 0 50px;
  border: none;
  display: flex;
  flex-direction: column;
}
.contacts .container .contacts_contacts .contacts-text .footer_contact-row h3 {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  /* or 109% */
  color: #1E1E1E;
  margin: 0;
}
.contacts .container .contacts_contacts .contacts-text .footer_contact-row p, .contacts .container .contacts_contacts .contacts-text .footer_contact-row a {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #626262;
}
.contacts_contacts {
  display: flex;
}

.article_text {
  margin: 50px 0;
  display: inline-block;
}

.contacts-text {
  width: 40%;
}

.full-width {
  background: #E2E2E2;
}
.full-width .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 70px 0;
}
.full-width .container .order-btn {
  padding: 20px 35px;
  background-color: #1E1E1E;
}
.full-width .container .order-btn .btn-text a {
  color: #E2E2E2;
}

.full-width-text {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  /* or 125% */
  color: #1E1E1E;
}

.design .hero {
  margin-bottom: 350px;
}
.design .hero .container {
  padding: 100px 0 20px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 18.64%, #FFFFFF 89.41%), url("/img/repair/design-bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
}
.design .article_title {
  margin: 0;
}
.design .article_text {
  margin: 20px 0;
}
.design .article_description {
  width: 50%;
}
.design .text-sub-main {
  font-family: "Artegra Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  /* or 125% */
  color: #1E1E1E;
}
.design .modal-test {
  position: absolute;
  top: 180px;
  right: 10px;
  width: 560px;
  background: #FFFFFF;
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.design .modal-test_buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.design .modal-test .order-btn:first-child .btn-text a {
  background-color: #1E1E1E;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 23px;
  text-align: center;
}
.design .modal-test .order-btn:first-child .btn-text a:hover {
  color: #1E1E1E;
  background: transparent;
}
.design .modal-test .btn-text a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #1E1E1E;
}
.design .modal-test-status {
  position: absolute;
  left: 40px;
  top: 40px;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #626262;
}
.design .modal-test-question {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  /* or 125% */
  color: #1E1E1E;
  width: 70%;
  text-align: center;
}
.design .quiz {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-self: flex-start;
}
.design .quiz span {
  display: flex;
  gap: 25px;
  align-items: center;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  /* or 150% */
  color: #626262;
}
.design .repair-hero-img {
  position: absolute;
  top: 110%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.design .repair-hero-img::after {
  content: "";
  height: 65px;
  width: 65px;
  background: rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 9px;
  position: absolute;
  left: 55px;
  top: 55px;
}
.design .start .container .article_title {
  margin-bottom: 30px;
}
.design .start-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.design .start-container img {
  width: 45%;
}
.design .article_title {
  margin-bottom: 50px;
}
.design .cost-small {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  width: 100%;
}
.design .cost-small-par {
  width: 50%;
  align-items: center;
}
.design .cost-small-par p {
  font-family: "Artegra Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  /* or 150% */
  color: #626262;
  margin-bottom: 40px;
}
.design .cost-small-par .modal-test_buttons {
  display: flex;
  justify-content: space-around;
}
.design .cost-small-par .order-btn {
  width: 100%;
  text-align: center;
}
.design .cost-small-par .order-btn:first-child {
  background-color: #1E1E1E;
}
.design .cost-small-par .btn-text a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #1E1E1E;
}
.design .repair-cards {
  margin: 100px auto 200px;
}
.design .repair-cards .container {
  display: flex;
  flex-direction: row;
}
.design .repair-cards_card {
  margin-top: 50px;
  width: 33%;
  min-height: 670px;
  background: #F3F3F3;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 25px;
  gap: 10px;
}
.design .repair-cards_card:nth-child(2) {
  background-color: #1E1E1E;
  color: white;
  transform: scale(1.1);
  border: 1px solid #9F9F9F;
}
.design .repair-cards_card:nth-child(2) .price-big {
  color: white;
}
.design .repair-cards_card_recomedacion {
  background-color: #E2E2E2;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  padding: 7px;
  margin-top: -20px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 19px;
  color: #1E1E1E;
}
.design .repair-cards_card .order-btn {
  background-color: #fff;
  padding: 15px 60px;
}
.design .repair-cards_card .order-btn:hover {
  background-color: #1E1E1E;
}
.design .repair-cards_card .order-btn:hover .btn-text a {
  color: white;
}
.design .repair-cards_card .order-btn .btn-text a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #1E1E1E;
}

.quiz-input {
  background: #F7F7F7;
  border-radius: 18px;
  padding: 18px 25px;
  width: 100%;
}
.quiz-input:focus {
  outline: 1px solid #1E1E1E;
}

.table-hat {
  display: flex;
  background-color: #1E1E1E;
  padding: 20px;
  border-radius: 18px;
  width: 102%;
  margin-left: -1%;
}
.table-hat p {
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
}
.table-hat p:first-child {
  font-size: 24px;
}
.table-hat p:nth-child(2) {
  margin-left: 170px;
}
.table-hat p:nth-child(3) {
  margin-left: 20px;
}
.table-hat p:nth-child(4) {
  margin-left: 55px;
}

.table {
  width: 100%;
  margin-bottom: 70px;
  border: 1px solid #dddddd;
  border-collapse: collapse;
}

.table td {
  border: 1px solid #dddddd;
  padding: 5px;
  font-size: 40px;
  text-align: center;
  color: #626262;
}
.table td:first-child {
  width: 400px;
  font-family: "Artegra Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #1E1E1E;
  text-align: left;
}

.design-link {
  color: #1E1E1E;
}
.design-link:hover {
  text-decoration: underline;
}

.active-work {
  min-width: 430px;
}

@media (max-width: 1200px) {
  .article_text {
    font-size: 3.5rem;
  }
  .gallery {
    width: 1200px;
  }
  .gallery_item:nth-child(3) {
    min-width: 400px;
  }
  .comments_text {
    width: 40%;
  }
  .comments_reviews {
    padding: 20px;
    margin-right: 60px;
    width: 55%;
  }
  .comments.container {
    gap: 0;
  }
  .comment-block {
    width: auto;
  }
  .about {
    padding: 100px 0;
    margin: 0;
  }
  .about_block {
    padding: 15px 20px;
    flex: 0 1 280px;
    height: 280px;
    position: relative;
  }
  .about_block:nth-child(odd) {
    top: 0;
  }
  .about_blocks-wrapper {
    width: 60%;
  }
}
@media (max-width: 1000px) {
  .header .container {
    padding: 0;
  }
  .footer_contact-row h3 {
    margin: 0;
  }
  .tags {
    display: none;
  }
  .hero-text {
    max-width: 80%;
  }
  #burger-container {
    display: inline-block;
  }
  .hamburger {
    width: 40px;
    height: 28px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    z-index: 100;
  }
  .hamburger span {
    background: #1E1E1E;
    display: block;
    position: absolute;
    height: 2px;
    transform: rotate(0deg);
    transition: all 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 1;
    width: 100%;
    left: 0;
  }
  .hamburger span:nth-child(1) {
    top: 0px;
  }
  .hamburger span:nth-child(2) {
    top: 12px;
  }
  .hamburger span:nth-child(3) {
    top: 24px;
  }
  .hamburger.open span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    left: 60px;
  }
  .hamburger.open span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
  }
  .header-nav {
    position: fixed;
    left: 0;
    top: 90px;
    width: 100%;
    height: 100%;
    background: #1E1E1E;
    opacity: 0;
    visibility: visible;
    z-index: 99;
    text-align: center;
    display: none;
    transition: visibility 0.5s ease, opacity 1s ease;
  }
  .header-nav.open {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .menu-nav {
    display: flex;
    flex-direction: column;
  }
  .menu-nav li {
    transform: translateY(-40px);
    opacity: 0;
    transition: all 0.4s ease;
    border: 1px solid #242424;
    text-align: left;
  }
  .menu-nav li:hover {
    background: #242424;
  }
  .open .menu-nav li {
    transform: translateY(0);
    opacity: 1;
  }
  .menu-nav li a {
    display: block;
    color: #fff;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }
}
@media (max-width: 576px) {
  .header-switchers_theme,
  .header-callback {
    display: none;
  }
  .header-main {
    flex-direction: row-reverse;
    gap: 5px;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
    padding-top: 30px;
  }
  .article_description {
    width: 80%;
    margin: 25px auto;
  }
  .main_article {
    min-height: 600px;
  }
  .main_article_picture img {
    height: 340px;
    top: 350px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .main_article::after {
    width: 100%;
    height: 140px;
    bottom: 0;
    left: 0;
    top: auto;
  }
  .services {
    text-align: center;
    flex-direction: column;
    position: relative;
    padding: 150px 0 50px;
    background: url("../../img/services/services-bg.svg") 20% 50% repeat-x;
  }
  .services_description-block {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(11px);
            backdrop-filter: blur(11px);
    border-radius: 0 0 18px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .services_description {
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
  }
  .services_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
  }
  .services_row_image {
    width: 90%;
    height: 200px;
  }
  .services_row_image:nth-child(1) {
    background-image: url("/img/services/services-1.jpg");
    background-size: cover;
    background-position: 0 85%;
  }
  .services_row_image:nth-child(2) {
    background-size: cover;
    background-position: 0 85%;
  }
  .services_row_image:nth-child(3) {
    background-image: url("../../img/services/services-small-3.jpg");
    background-size: cover;
    background-position: center;
  }
  .services_row_image:nth-child(1), .services_row_image:nth-child(3) {
    position: relative;
    top: 0;
  }
  .callback-block {
    position: static;
    width: 85%;
    margin: 30px auto 0;
  }
  .callback-block_article h4, .callback-block_numbers {
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
    padding-left: 0;
  }
  .works {
    padding: 50px 0;
    text-align: center;
  }
  .works_title {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .works_title .article_text {
    margin-bottom: 30px;
  }
  .gallery {
    max-width: 95%;
    margin: 50px auto 0;
    flex-direction: column;
  }
  .gallery_item {
    min-width: 100%;
    height: 80px;
    background-position: 0 80%;
  }
  .gallery_item:last-child {
    background-position: 0 50%;
  }
  .gallery_item.active-work {
    min-width: auto;
    height: 400px;
    background-position: 0 0;
  }
  .gallery_item_description {
    height: 160px;
    padding: 10px;
    text-align: left;
  }
  .gallery_item_description .work_title {
    font-size: 1.125rem;
  }
  .gallery_item_description .work_description {
    font-size: 0.875rem;
    padding: 5px 0;
    max-height: auto;
  }
  .gallery_item_description .moreBtn {
    position: relative;
  }
  .gallery_item_description .moreBtn::after {
    width: 42px;
  }
  .about {
    text-align: center;
    padding: 100px 0 0;
    margin-bottom: 0;
  }
  .about .container {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 70px;
    align-items: center;
  }
  .about_title {
    max-width: 90%;
  }
  .about_building-image {
    display: none;
  }
  .about_blocks-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    gap: 15px;
    height: auto;
  }
  .about_block {
    padding: 15px 20px;
    flex: 1 1 30%;
    height: auto;
  }
  .about_block:nth-child(odd) {
    top: 0;
  }
  .about_block p {
    font-size: 1.5rem;
  }
  .about_num {
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 28px;
    /* or 88% */
    color: #1E1E1E;
  }
  .prices {
    text-align: center;
    padding: 100px 0 20px;
  }
  .prices .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .prices .container .works_title {
    width: 100%;
  }
  .prices_card {
    margin: 0;
    width: 70%;
    min-height: auto;
    gap: 10px;
    padding: 15px;
  }
  .prices_card:nth-child(2) {
    transform: scale(1);
  }
  .prices_card_recomedacion {
    margin-top: 0;
  }
  .comments {
    padding: 100px 0;
    text-align: center;
  }
  .comments .container {
    flex-direction: column;
  }
  .comments_text {
    width: 100%;
  }
  .comments_text_list {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
  }
  .comments_text_list li {
    display: inline-block;
    text-align: left;
    position: relative;
  }
  .comments_reviews {
    margin: 0;
    margin-top: 70px;
    padding: 10px;
    width: auto;
    flex-direction: row;
    gap: 50px 10px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .comments .btn-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  .comments .btn-socials .header-socials {
    gap: 35px;
    margin: 0;
  }
  .comment-block {
    width: 48%;
    padding: 20px 25px 15px 60px;
  }
  .comment-block img {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .comment-block p {
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
  }
  .comment-block:nth-child(odd) {
    margin-left: 0;
    padding: 50px 15px 20px;
  }
  .comment-block:nth-child(odd) img {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .comment-block:nth-child(even) {
    margin-left: 0;
    padding: 50px 15px 20px;
  }
  .comment-block:nth-child(even) img {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer {
    max-width: 100%;
  }
  .footer_contact-row {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    opacity: 0.7;
    border-bottom: 1px solid #9F9F9F;
    padding: 30px 0;
  }
  .footer_contact-row h3 {
    margin-right: 0;
    margin-top: 0;
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 54px;
    color: #E2E2E2;
  }
  .footer_contact-row a {
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #E2E2E2;
  }
  .footer_contact-row a:hover {
    opacity: 0.8;
  }
  .footer_contact-row_item {
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #E2E2E2;
  }
  .footer_contact-row_item span {
    display: block;
    margin-bottom: 25px;
    font-size: 1.5rem;
    line-height: 32px;
  }
  .footer_contact-list-wrapper {
    display: none;
    justify-content: space-between;
    padding: 40px 0 50px;
  }
  .footer_contact-list li h5 a {
    padding: 3px 0;
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: 1rem;
    line-height: 32px;
    color: #9F9F9F;
    opacity: 0.7;
  }
  .footer_contact-list li h5 a:hover {
    opacity: 1;
  }
}
@media (max-width: 420px) {
  .article_text {
    font-size: 3rem;
  }
  .main_article_picture img {
    height: 280px;
    top: 400px;
  }
  .about {
    padding-top: 50px;
  }
  .about_block::after {
    top: 10%;
  }
  .order-btn,
  .prices_card .order-btn {
    padding: 15px 25px;
  }
  .comment-block {
    width: 90%;
  }
  .active-work .gallery_item_description {
    height: auto;
    padding: 15px;
  }
  .gallery_item:nth-child(3) {
    min-width: none;
  }
  .work_description {
    display: none;
  }
}
@media (max-width: 576px) {
  .works-gallery {
    padding: 20px 0;
  }
  .works-gallery-container {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .works-gallery-item:nth-child(odd) {
    width: 90%;
    height: 420px;
  }
  .works-gallery-item:nth-child(even) {
    width: 90%;
    height: 420px;
    position: relative;
    top: 0;
  }
  .works-gallery-item-text {
    flex-direction: column;
    text-align: center;
  }
  .works-gallery-item_title {
    font-family: "Artegra Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 40px;
    color: #FFFFFF;
    display: inline-block;
  }
  .works-gallery-item .works_see-all {
    font-size: 1.125rem;
    line-height: 30px;
    color: #FFFFFF;
  }
}/*# sourceMappingURL=main.css.map */