@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  font-size: 100%;
  line-height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100dvh;
  min-width: 320px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
  resize: none;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  font-size: inherit;
  color: inherit;
  display: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6, p, address, cite, span, ul, li {
  font-style: normal;
  font-size: inherit;
  font-weight: inherit;
}

/*-----------------------------------обнуляющие стили--------------------------------*/
/*----------------------------------Шрифты--------------------------------*/
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUI.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUI-SemiBold.woff2") format(woff2);
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUI-Bold.woff2") format(woff2);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PTSans";
  src: url("../fonts/PTSans-Caption.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Supermolot";
  src: url("../fonts/TT Supermolot Neue Trial Regular.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Supermolot";
  src: url("../fonts/TT Supermolot Neue Trial Medium.woff2") format(woff2);
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Supermolot";
  src: url("../fonts/TT Supermolot Neue Trial Bold.woff2") format(woff2);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Supermolot";
  src: url("../fonts/TT Supermolot Neue Trial DemiBold.woff2") format(woff2);
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*----------------------------------Шрифты--------------------------------*/
/*----------------------------------Переменные--------------------------------*/
:root {
  --color-black: #262626;
  --color-white: #FFFFFF;
  --color-gray-fill: #F3F5F7;
  --color-gray-dark: #4B4B4B;
  --color-red: #D52215;
  --color-red-dark: #D60004;
  --border: 1px solid var(--color-black);
  --border-radius: 30px;
  --font-family-base: "SegoeUI", Arial, sans-serif;
  --font-family-supermolot: "Supermolot", Arial, sans-serif;
  --font-family-ptsans: "PTSans", Arial, sans-serif;
  --container-width: 1310px;
}

/*----------------------------------Переменные--------------------------------*/
/*----------------------------------global--------------------------------*/
body.lock {
  overflow: hidden;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-white);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main {
  flex: 1 1 auto;
  position: relative;
}

section {
  position: relative;
  z-index: 9;
  padding: 50px 0px;
}
@media (max-width: 768px) {
  section {
    padding: 30px 0px;
  }
}

._container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px 20px;
}

.section {
  padding: 50px 0px;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.title {
  font-size: clamp(26px, 2.9166666667vw, 42px);
  font-family: var(--font-family-supermolot);
  font-weight: 500;
}
.title h1 {
  line-height: 120%;
  color: var(--color-black);
}
.title h2 {
  line-height: 110%;
}
.title h3 {
  font-weight: 500;
  font-size: clamp(16px, 1.3888888889vw, 20px);
  line-height: 130%;
  margin-bottom: 10px;
}
.title--mod {
  padding-left: 80px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .title--mod {
    padding-left: 0px;
  }
}

.text {
  font-size: clamp(14px, 1.25vw, 18px);
  color: var(--color-black);
  line-height: 100%;
}

.button {
  display: inline-block;
  padding: 30px 40px;
  border-top-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  font-size: 20px;
  background-color: var(--color-red);
  color: var(--color-white);
  transition: all 0.3s;
}
@media (hover: hover) {
  .button:hover {
    background-color: var(--color-red-dark);
    transition: all 0.3s;
  }
}
@media (max-width: 768px) {
  .button {
    padding: 20px 30px;
  }
}

.button-outline {
  display: inline-block;
  padding: 20px 40px;
  border-top-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 20px;
  background-color: var(--color-white);
  color: var(--color-red);
  transition: all 0.3s;
  border: 1px solid var(--color-red);
  width: 100%;
}
@media (hover: hover) {
  .button-outline:hover {
    background-color: var(--color-red-dark);
    transition: all 0.3s;
    color: var(--color-white);
  }
}
@media (max-width: 768px) {
  .button-outline {
    padding: 20px 30px;
  }
}

.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.arrow {
  position: absolute;
  right: 180px;
  top: -100px;
  z-index: 9;
  background-color: var(--color-white);
  padding: 10px;
  border-radius: 18px 0;
  transition: all 0.3s;
}
@media (hover: hover) {
  .arrow:hover {
    background-color: var(--color-red);
  }
  .arrow:hover svg path {
    fill: var(--color-white);
    transition: all 0.3s;
  }
}
@media (max-width: 768px) {
  .arrow {
    right: 20px;
    top: 0px;
  }
}

/*----------------------------------global--------------------------------*/
/*----------------------------------header--------------------------------*/
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #D2D7DF;
  background-color: var(--color-white);
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 99;
  gap: 16px;
  max-width: 1150px;
  margin: auto;
  background-color: var(--color-white);
  padding: 26px 20px;
}
@media (max-width: 768px) {
  .header__body {
    display: block;
    padding: 26px 0px 0px 0px;
  }
}
.header__logo {
  font-size: clamp(10px, 0.9027777778vw, 13px);
  line-height: 110%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 99;
}
@media (max-width: 768px) {
  .header__logo {
    margin-bottom: 10px;
    padding: 0px 20px;
  }
}
.header__links {
  font-size: 16px;
  line-height: 125%;
  position: relative;
  z-index: 99;
}
.header__links a {
  transition: all 0.3s;
}
@media (hover: hover) {
  .header__links a:hover {
    color: var(--color-red);
    transition: all 0.3s;
  }
}
@media (max-width: 1024px) {
  .header__links {
    display: none;
  }
}
.header__links-mob {
  display: none;
  font-size: 16px;
  line-height: 125%;
}
@media (max-width: 1024px) {
  .header__links-mob {
    display: block;
    margin-bottom: 30px;
    text-align: end;
  }
}
@media (max-width: 768px) {
  .header__links-mob {
    text-align: center;
  }
}
.header__location {
  cursor: pointer;
  position: relative;
  z-index: 9;
}
@media (max-width: 1024px) {
  .header__location.act svg path {
    fill: var(--color-red);
    transition: all 0.3s;
  }
}
@media (hover: hover) {
  .header__location:hover .header__address_wrapper {
    display: block;
  }
  .header__location:hover svg path {
    fill: var(--color-red);
    transition: all 0.3s;
  }
}
@media (max-width: 1024px) {
  .header__location {
    display: none;
  }
}
.header__address_wrapper {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 52px;
}
.header__address {
  text-align: center;
  font-size: 16px;
  line-height: 125%;
  padding: 20px;
  width: 280px;
  border: 1px solid #D2D7DF;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-top: none;
  background-color: var(--color-white);
}
.header__address a {
  color: var(--color-red);
}
@media (max-width: 1024px) {
  .header__address.act {
    top: 0;
    margin-top: 100px;
    transition: all 0.5s;
  }
}
.header__address-mob {
  text-align: end;
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 768px) {
  .header__address-mob {
    text-align: center;
  }
}
.header__button {
  position: relative;
  z-index: 999;
}
@media (max-width: 768px) {
  .header__button {
    display: none;
  }
}

/*----------------------------------header--------------------------------*/
/*----------------------------------search--------------------------------*/
.search__label {
  position: absolute;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 999;
  line-height: 100%;
  transition: all 0.5s;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  display: flex;
}
.search__label._act {
  left: 20px;
  transition: all 0.5s;
  opacity: 1;
  visibility: visible;
}
.search__label input {
  font-size: 20px;
  background-color: var(--color-gray-fill);
  width: 100%;
  padding: 30px 40px;
  border-top-left-radius: var(--border-radius);
}
.search__label button {
  background-color: var(--color-red);
  color: var(--color-white);
  border-bottom-right-radius: var(--border-radius);
  padding: 0px 40px;
  font-size: 20px;
  line-height: 100%;
  transition: all 0.3s;
}
@media (hover: hover) {
  .search__label button:hover {
    background-color: var(--color-red-dark);
    transition: all 0.3s;
  }
}
.search__icon {
  cursor: pointer;
}
@media (hover: hover) {
  .search__icon:hover svg path {
    fill: var(--color-red);
    transition: all 0.3s;
  }
}
.search__close {
  cursor: pointer;
  padding: 20px;
  margin-top: 15px;
}
@media (hover: hover) {
  .search__close:hover svg path {
    fill: var(--color-red);
    transition: all 0.3s;
  }
}
@media (max-width: 1024px) {
  .search {
    display: none;
  }
}
.search-mob {
  display: none;
}
@media (max-width: 1024px) {
  .search-mob {
    display: flex;
  }
  .search-mob .search__label {
    display: flex;
  }
}
.search-mob input {
  font-size: 20px;
  background-color: var(--color-gray-fill);
  width: 100%;
  padding: 30px 40px;
  border-top-left-radius: var(--border-radius);
}
.search-mob button {
  background-color: var(--color-red);
  color: var(--color-white);
  border-bottom-right-radius: var(--border-radius);
  padding: 0px 40px;
  font-size: 20px;
  line-height: 100%;
  transition: all 0.3s;
}
@media (hover: hover) {
  .search-mob button:hover {
    background-color: var(--color-red-dark);
    transition: all 0.3s;
  }
}

/*----------------------------------search--------------------------------*/
/*----------------------------------menu--------------------------------*/
.menu {
  position: absolute;
  z-index: 9;
  width: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.menu__wrapper {
  padding-top: 51px;
}
@media (max-width: 768px) {
  .menu__wrapper {
    padding-top: 0px;
    background-color: var(--color-white);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 30px;
  width: 100%;
}
@media (max-width: 1024px) {
  .menu ul {
    display: block;
    flex-basis: 50%;
  }
  .menu ul li {
    margin-bottom: 15px;
  }
}
.menu__inner {
  display: flex;
  gap: 10px;
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .menu__inner {
    margin-bottom: 20px;
  }
  .menu__inner::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background-color: #D2D7DF;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .menu__inner::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .menu__inner {
    display: block;
  }
}
.menu__link {
  line-height: 111%;
  position: relative;
  font-size: 16px;
  transition: All 0.5s ease 0s;
}
@media (hover: hover) {
  .menu__link:hover {
    color: var(--color-red);
  }
}
.menu__mob {
  display: none;
}
@media (max-width: 1024px) {
  .menu__mob {
    display: block;
    flex-basis: 50%;
  }
  .menu__mob .button {
    display: block;
    position: relative;
    z-index: 99;
  }
}
.menu__body {
  background-color: var(--color-white);
  padding: 20px;
  margin: 5px 20px 0px 20px;
  border: 1px solid #D2D7DF;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-top: none;
  position: relative;
}
@media (max-width: 768px) {
  .menu__body {
    margin: 20px;
  }
}
.menu .button {
  display: none;
}
@media (max-width: 768px) {
  .menu .button {
    display: block;
    margin-bottom: 20px;
  }
}

/*----------------------------------menu--------------------------------*/
/*----------------------------------burger--------------------------------*/
.burger {
  display: block;
  z-index: 99;
  cursor: pointer;
  padding-right: 20px;
  transition: all 0.3s;
}
.burger span {
  position: relative;
  padding-right: 20px;
  transition: all 0.3s;
  border-bottom: 1px solid var(--color-white);
  text-transform: uppercase;
}
.burger span::after, .burger span::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 1px;
  top: 50%;
  right: 0;
  background-color: var(--color-black);
}
@media (max-width: 768px) {
  .burger span::after, .burger span::before {
    background-color: var(--color-white);
  }
}
.burger span::after {
  transform: rotate(-30deg);
  transition: all 0.3s;
}
.burger span::before {
  transform: rotate(30deg);
  right: 6px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .burger span:hover {
    color: var(--color-red);
  }
  .burger span:hover::after {
    transform: rotate(30deg);
    transition: all 0.3s;
    background-color: var(--color-red);
  }
  .burger span:hover::before {
    transform: rotate(-30deg);
    transition: all 0.3s;
    background-color: var(--color-red);
  }
}
@media (max-width: 768px) {
  .burger span {
    border-bottom: 1px solid var(--color-red);
  }
}
@media (hover: hover) {
  .burger:hover .menu {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .burger:hover span {
    border-bottom: 1px solid var(--color-red);
    transition: all 0.3s;
    color: var(--color-red);
  }
  .burger:hover span::after {
    transform: rotate(30deg);
    transition: all 0.3s;
    background-color: var(--color-red);
  }
  .burger:hover span::before {
    transform: rotate(-30deg);
    transition: all 0.3s;
    background-color: var(--color-red);
  }
}
.burger._active span::after {
  transform: rotate(30deg);
  transition: all 0.3s;
  background-color: var(--color-red);
}
@media (max-width: 768px) {
  .burger._active span::after {
    background-color: var(--color-white);
  }
}
.burger._active span::before {
  transform: rotate(-30deg);
  transition: all 0.3s;
  background-color: var(--color-red);
}
@media (max-width: 768px) {
  .burger._active span::before {
    background-color: var(--color-white);
  }
}
.burger._active {
  transition: all 0.3s;
}
.burger._active .menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}
.burger._active span {
  color: var(--color-red);
  border-bottom: 1px solid var(--color-red);
}
@media (max-width: 768px) {
  .burger._active span {
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
  }
}
@media (max-width: 768px) {
  .burger._active::after {
    background-color: var(--color-red-dark);
  }
}
@media (max-width: 768px) {
  .burger {
    background-color: var(--color-red);
    text-align: center;
    padding: 20px;
    position: relative;
  }
  .burger span {
    color: var(--color-white);
    display: inline-block;
    z-index: 999;
    padding-bottom: 3px;
  }
  .burger::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-red);
    z-index: 99;
  }
}

/*----------------------------------burger--------------------------------*/
/*----------------------------------breadcrumbs--------------------------------*/
.breadcrumbs {
  margin-top: 10px;
  position: relative;
  z-index: 9;
  padding-left: 100px;
  font-family: var(--font-family-supermolot);
}
@media (max-width: 1024px) {
  .breadcrumbs {
    padding-left: 20px;
  }
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  padding-right: 15px;
}
.breadcrumbs__item:not(:last-child)::after {
  position: absolute;
  content: ">";
  top: 0;
  right: 0;
  border-radius: 1px;
}
.breadcrumbs__item {
  font-size: 12px;
  font-size: 14px;
  line-height: 130%;
  color: var(--color-gray-dark);
}
.breadcrumbs__item_link {
  color: var(--color-red);
}

/*----------------------------------breadcrumbs--------------------------------*/
/*----------------------------------main-section--------------------------------*/
/*----------------------------------main-section--------------------------------*/
/*----------------------------------banner--------------------------------*/
.banner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: #F8F9FA;
  border-top-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  font-family: var(--font-family-supermolot);
  height: 100%;
}
@media (max-width: 1024px) {
  .banner {
    flex-wrap: wrap;
  }
}
.banner__block {
  width: 50%;
  position: relative;
}
.banner__block:first-child {
  padding: 50px 40px 180px 80px;
}
.banner__block:first-child .title {
  margin-bottom: 10px;
}
.banner__block:first-child .title span {
  display: block;
  color: var(--color-red);
}
.banner__block:first-child p {
  color: #999999;
  font-weight: 500;
  font-size: 20px;
  line-height: 86%;
  max-width: 150px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.banner__block:first-child p span {
  font-size: 42px;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .banner__block:first-child {
    padding: 20px 20px 114px 20px;
  }
}
.banner__block--mod h1 {
  font-size: clamp(26px, 2.5vw, 36px);
}
.banner__block--mod h1 span {
  font-size: clamp(26px, 2.9166666667vw, 42px);
}
@media (max-width: 1024px) {
  .banner__block {
    width: 100%;
  }
}
.banner__info {
  position: relative;
  z-index: 9;
  padding: 50px 80px 30px 40px;
  height: 100%;
}
@media (max-width: 1024px) {
  .banner__info {
    padding: 50px 80px 100px 40px;
  }
}
@media (max-width: 768px) {
  .banner__info {
    padding: 20px 20px 60px 20px;
  }
}
.banner__inner {
  color: var(--color-white);
  height: 100%;
}
.banner__inner span {
  font-weight: 700;
  font-size: clamp(48px, 6.6666666667vw, 96px);
  line-height: 80%;
}
.banner__inner p {
  font-size: clamp(22px, 3.0555555556vw, 44px);
  line-height: 100%;
  font-weight: 600;
}
.banner__inner address {
  line-height: 130%;
  font-weight: 500;
  font-size: 20px;
  max-width: 270px;
}
.banner__inner-box {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .banner__inner-box {
    gap: 5px;
  }
  .banner__inner-box img {
    width: 90px;
  }
}
.banner__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner__image img {
  border-bottom-right-radius: var(--border-radius);
}

/*----------------------------------banner--------------------------------*/
/*----------------------------------advantages--------------------------------*/
.advantages__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom-right-radius: var(--border-radius);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .advantages__body {
    display: block;
  }
}
.advantages__block {
  padding: 50px;
  transition: all 0.3s;
}
.advantages__block span {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 10px;
  display: block;
  font-family: var(--font-family-supermolot);
}
.advantages__block p {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 130%;
  margin-bottom: 40px;
}
.advantages__block:first-child {
  grid-column: 1/3;
  padding-left: 80px;
}
.advantages__block:first-child .title {
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  .advantages__block:first-child .title {
    margin-bottom: 0px;
  }
}
.advantages__block:first-child .advantages__block_image {
  text-align: end;
}
@media (max-width: 1024px) {
  .advantages__block:first-child {
    padding: 0px;
    margin-bottom: 10px;
  }
}
.advantages__block--gray {
  background-color: rgba(0, 0, 0, 0.4588235294);
  color: var(--color-white);
}
@media (hover: hover) {
  .advantages__block--gray:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s;
  }
}
.advantages__block--white {
  background-color: rgba(243, 245, 247, 0.4745098039);
}
.advantages__block--white span {
  color: var(--color-red);
}
@media (hover: hover) {
  .advantages__block--white:hover {
    background-color: #F3F5F7;
    transition: all 0.3s;
  }
}
.advantages__block--red {
  background-color: var(--color-red);
  color: var(--color-white);
}
@media (hover: hover) {
  .advantages__block--red:hover {
    background-color: var(--color-red-dark);
    transition: all 0.3s;
  }
}
@media (max-width: 1024px) {
  .advantages__block {
    padding: 20px;
  }
}
.advantages--mod .contacts__block--img {
  grid-column: 1/3;
}
.advantages--mod .contacts__block--img img {
  height: 100%;
}
@media (max-width: 1024px) {
  .advantages--mod .contacts__block--img {
    display: block;
  }
}
.advantages--mod .advantages__block {
  min-height: 410px;
}
.advantages--mod .advantages__block:last-child {
  grid-column: 3/5;
}
@media (max-width: 1024px) {
  .advantages--mod .advantages__block {
    min-height: auto;
  }
}

/*----------------------------------advantages--------------------------------*/
/*----------------------------------services--------------------------------*/
.services__content .title {
  margin-bottom: 40px;
  text-align: center;
}
.services .slider__wrap {
  margin-bottom: 50px;
}
.services__button {
  max-width: 1130px;
  margin: auto;
}
@media (max-width: 768px) {
  .services__button .button span:first-child {
    display: none;
  }
}
.services__button .button span:last-child {
  display: none;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .services__button .button span:last-child {
    display: inline-block;
  }
}

/*----------------------------------services--------------------------------*/
/*----------------------------------card--------------------------------*/
.card {
  height: 100%;
  background-color: var(--color-gray-fill);
  padding: 50px;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-content: center;
}
.card h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 10px;
  font-family: var(--font-family-supermolot);
}
.card .stars {
  margin-bottom: 10px;
}
.card .stars img {
  max-width: 20px;
}
.card .dates {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 130%;
  display: flex;
  align-items: center;
}
.card .dates span {
  font-family: var(--font-family-base);
  font-size: 20px;
  line-height: 130%;
  color: var(--color-black);
}
.card time {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 60px;
}
.card span {
  font-size: 36px;
  line-height: 130%;
  text-transform: uppercase;
  display: block;
  font-family: var(--font-family-supermolot);
  color: var(--color-gray-dark);
}
.card p, .card a {
  font-size: 20px;
  line-height: 130%;
}
.card a {
  color: var(--color-gray-dark);
  transition: all 0.3s;
}
@media (hover: hover) {
  .card a:hover {
    color: var(--color-red);
    transition: all 0.3s;
  }
}

/*----------------------------------card--------------------------------*/
/*----------------------------------about--------------------------------*/
.about__content {
  background-color: var(--color-gray-fill);
  border-top-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.about__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 80px;
}
@media (max-width: 1024px) {
  .about__body {
    flex-wrap: wrap;
    padding: 40px 0px 50px 0px;
  }
}
.about__info {
  flex-basis: 670px;
}
.about__info p {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .about__info {
    flex-basis: 100%;
  }
}
.about__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  margin-bottom: 40px;
}
.about__top .title {
  max-width: 350px;
}
.about__blocks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .about__blocks {
    justify-content: end;
    gap: 10px 45px;
  }
}
.about__block {
  font-family: var(--font-family-supermolot);
  text-align: end;
}
.about__block span {
  font-size: clamp(48px, 4.4444444444vw, 64px);
  font-weight: 500;
  color: var(--color-red);
  line-height: 130%;
}
.about__block p {
  font-size: 24px;
  line-height: 130%;
  color: var(--color-gray-dark);
  margin-bottom: 0px;
}
.about__slider {
  min-width: 0;
  flex-basis: 350px;
}
@media (max-width: 1024px) {
  .about__slider {
    flex-basis: 100%;
  }
}

.about-company__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .about-company__blocks {
    display: block;
  }
}
.about-company__block {
  min-height: 280px;
}
.about-company__block:first-child {
  padding: 0px 45px 30px 80px;
  grid-column: 1/3;
}
.about-company__block:first-child .title {
  margin-bottom: 40px;
}
.about-company__block:first-child p {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 40px;
}
.about-company__block:first-child .about-company__arrow {
  text-align: end;
}
@media (max-width: 1024px) {
  .about-company__block:first-child .about-company__arrow {
    display: none;
  }
}
@media (max-width: 1024px) {
  .about-company__block:first-child {
    padding: 0px 0px 10px 0px;
  }
}
.about-company__block:nth-child(2) {
  grid-column: 3/5;
}
.about-company__block:nth-child(2) img {
  height: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .about-company__block {
    min-height: 160px;
  }
}
.about-company__inner {
  line-height: 130%;
  font-family: var(--font-family-supermolot);
  display: flex;
  flex-direction: column;
  align-items: end;
  height: 100%;
  justify-content: end;
  padding: 20px;
  text-align: end;
}
.about-company__inner span {
  font-weight: 500;
  font-size: clamp(40px, 4.4444444444vw, 64px);
  display: block;
  margin-bottom: 20px;
  line-height: 130%;
  white-space: nowrap;
}
.about-company__inner p {
  font-size: 24px;
  line-height: 110%;
}
@media (max-width: 1024px) {
  .about-company__inner {
    justify-content: start;
  }
}

.about-photo {
  position: relative;
  z-index: 2;
}
.about-photo img {
  width: 100%;
}
@media (max-width: 768px) {
  .about-photo {
    display: none;
  }
}

.about-brigade__content {
  background-color: var(--color-gray-fill);
  border-radius: var(--border-radius) 0;
  padding: 80px;
}
.about-brigade__content .four-slide .swiper-button-prev {
  left: 20px;
}
.about-brigade__content .four-slide .swiper-button-next {
  right: 20px;
}
@media (max-width: 1024px) {
  .about-brigade__content {
    padding: 20px 20px 50px 20px;
  }
}
.about-brigade .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.about-brigade .title img {
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .about-brigade .title img {
    display: none;
  }
}
.about-brigade p {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 40px;
}
.about-brigade .card {
  padding: 0px;
}
.about-brigade .card img {
  margin-bottom: 10px;
  width: 100%;
}
.about-brigade .card h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  font-family: var(--font-family-supermolot);
  margin-bottom: 5px;
}
.about-brigade .card p {
  line-height: 130%;
  margin-bottom: 0px;
}

.about-awarding {
  padding-bottom: 50px;
}
.about-awarding__body {
  padding: 0px 80px;
}
.about-awarding__body .title {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .about-awarding__body {
    padding: 0px;
  }
}
.about-awarding__block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.about-awarding__text {
  padding: 0px 50px 50px 0px;
  font-size: 18px;
  line-height: 130%;
  flex-basis: 51.5%;
}
@media (max-width: 1024px) {
  .about-awarding__text {
    flex-basis: 100%;
    padding: 0px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .about-awarding__image {
    display: none;
  }
}
.about-awarding .swiper-slide a {
  position: relative;
}
@media (hover: hover) {
  .about-awarding .swiper-slide a:hover .about-awarding__icon {
    scale: 1.2;
    transition: all 0.3s;
  }
}
.about-awarding__icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-gray-fill);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  padding: 10px;
}

.awarding-slider {
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
  position: relative;
}
.awarding-slider .swiper-slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.awarding-slider .swiper-slide img {
  margin-bottom: 10px;
  border-radius: var(--border-radius) 0;
  width: 100%;
}
.awarding-slider .swiper-slide p {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
}
.awarding-slider .swiper-slide a {
  display: block;
  width: 100%;
}
.awarding-slider .swiper-button-prev,
.awarding-slider .swiper-button-next {
  top: 96%;
  padding-bottom: 30px;
}
.awarding-slider .swiper-button-prev img,
.awarding-slider .swiper-button-next img {
  max-width: 48px;
}
@media (max-width: 768px) {
  .awarding-slider .swiper-button-prev,
  .awarding-slider .swiper-button-next {
    padding-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .awarding-slider {
    padding: 0px 0px 80px;
  }
}

.custom-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .custom-pagination {
    display: none;
  }
}

.custom-bullet {
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
  width: 278px;
}

.custom-bullet img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------about--------------------------------*/
/*---------------------------------------clientele----------------------------*/
.clientele__content .title {
  margin-bottom: 40px;
  text-align: center;
}
.clientele__content--mod .title {
  text-align: start;
}
.clientele__body {
  display: flex;
  flex-wrap: wrap;
}
.clientele__block {
  border: 1px solid #D2D7DF;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 10px 50px;
  width: 50%;
  font-family: var(--font-family-supermolot);
}
@media (max-width: 1024px) {
  .clientele__block {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .clientele__block {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 20px 20px 40px 20px;
  }
}
.clientele__image {
  flex-basis: 200px;
}
.clientele__image img {
  width: 100%;
}
.clientele__info {
  flex-basis: 295px;
}
.clientele__info h3 {
  color: #999999;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
}
.clientele__info a {
  transition: all 0.3s;
  font-weight: 500;
}
@media (hover: hover) {
  .clientele__info a:hover {
    transition: all 0.3s;
    color: var(--color-red);
  }
}
.clientele__info a:not(:last-child) {
  margin-bottom: 10px;
}

/*---------------------------------------clientele----------------------------*/
/*---------------------------------------reviews----------------------------*/
.reviews__content {
  background-color: var(--color-gray-fill);
  border-top-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.reviews__content .title {
  margin-bottom: 40px;
  max-width: 740px;
}
.reviews__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}
.reviews__top img {
  transform: rotate(90deg);
}
.reviews__body {
  padding: 80px;
}
@media (max-width: 1024px) {
  .reviews__body {
    padding: 30px 0px 50px 0px;
  }
}
.reviews__search {
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.reviews .slider__wrap .swiper-slide a svg path {
  transition: all 0.3s;
}
@media (hover: hover) {
  .reviews .slider__wrap .swiper-slide a:hover .reviews__search svg path {
    fill: var(--color-red);
    transition: all 0.3s;
  }
}

/*---------------------------------------reviews----------------------------*/
/*----------------------------------card--------------------------------*/
.feedback {
  background-color: var(--color-gray-fill);
}
.feedback__content .title {
  margin-bottom: 40px;
}
.feedback__body {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  padding: 0px 80px;
}
@media (max-width: 1024px) {
  .feedback__body {
    padding: 0px;
  }
}
.feedback__info {
  flex-basis: 650px;
}
@media (max-width: 768px) {
  .feedback__info {
    flex-basis: 100%;
  }
}
.feedback__info .title {
  margin-bottom: 10px;
}
.feedback__image {
  min-height: 570px;
}
.feedback__image img {
  border-bottom-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}
@media (max-width: 768px) {
  .feedback__image {
    display: none;
  }
}

/*----------------------------------card--------------------------------*/
/*----------------------------------address--------------------------------*/
.address {
  position: relative;
  margin-bottom: 80px;
}
.address__content {
  position: relative;
  z-index: 9;
  padding-top: 50px;
  padding-left: 100px;
}
@media (max-width: 768px) {
  .address__content {
    padding-left: 20px;
  }
}
.address__block {
  border: 1px solid var(--stroyk);
  border-radius: 30px 0 39px 0;
  padding: 50px;
  background-color: var(--color-white);
  display: inline-block;
  font-size: clamp(16px, 1.3888888889vw, 20px);
  line-height: 130%;
  max-width: 410px;
}
.address__block address {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .address__block address {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .address__block {
    padding: 20px;
  }
}
.address__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.address__time {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .address__time {
    flex-wrap: wrap;
  }
}
.address__inner {
  width: 100%;
}
.address__hours {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
}
.address__map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*----------------------------------address--------------------------------*/
/*----------------------------------contacts--------------------------------*/
.contacts__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
}
@media (max-width: 1024px) {
  .contacts__body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .contacts__body {
    grid-template-columns: 1fr;
  }
}
.contacts__block {
  padding: 50px;
  border: 1px solid #D2D7DF;
  position: relative;
  font-size: 18px;
  line-height: 110%;
}
.contacts__block:first-child {
  grid-column: 1/3;
  border: none;
  padding: 0px 30px 30px 80px;
}
.contacts__block:first-child .title {
  margin-bottom: 40px;
}
.contacts__block:first-child p {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.contacts__block:first-child span {
  display: block;
  position: relative;
  z-index: 2;
}
.contacts__block:first-child .contacts__block_arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media (max-width: 768px) {
  .contacts__block:first-child .contacts__block_arrow {
    display: none;
  }
}
@media (max-width: 1024px) {
  .contacts__block:first-child {
    padding: 0px 30px 30px 0px;
  }
}
@media (max-width: 768px) {
  .contacts__block:first-child {
    grid-column: 1/2;
    padding: 0px;
    margin-bottom: 40px;
  }
}
.contacts__block:nth-child(2) {
  border-radius: 30px 0 0 0;
}
.contacts__block:last-child {
  border-radius: 0 0 30px 0;
}
.contacts__block--img {
  border: none;
  padding: 0px;
}
.contacts__block--img img {
  width: 100%;
}
@media (max-width: 1024px) {
  .contacts__block--img {
    display: none;
  }
}
.contacts__block h3 {
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--font-family-supermolot);
}
.contacts__block address {
  line-height: 130%;
}
@media (max-width: 768px) {
  .contacts__block {
    padding: 20px;
  }
}
.contacts .address__hours {
  gap: 10px;
  margin-bottom: 5px;
}

/*----------------------------------contacts--------------------------------*/
/*----------------------------------articles--------------------------------*/
.articles__body {
  display: flex;
  flex-wrap: wrap;
}
.articles__block {
  border: 1px solid #D2D7DF;
  padding: 56px 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px 50px;
  width: 50%;
  transition: all 0.3s;
}
@media (hover: hover) {
  .articles__block:hover span {
    color: var(--color-red);
    transition: all 0.3s;
  }
}
.articles__block:first-child {
  border-radius: var(--border-radius) 0 0 0;
}
.articles__block:last-child {
  border-radius: 0 0 var(--border-radius) 0;
}
@media (max-width: 1024px) {
  .articles__block {
    width: 100%;
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .articles__block {
    padding: 20px;
    flex-wrap: wrap;
  }
}
.articles__image {
  min-height: 170px;
}
.articles__image img {
  width: 100%;
}
@media (max-width: 768px) {
  .articles__image {
    width: 100%;
  }
}
.articles__info {
  flex-basis: 267px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.articles__info p {
  font-family: var(--font-family-supermolot);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 58px;
}
@media (max-width: 1024px) {
  .articles__info {
    flex-basis: 360px;
  }
}
@media (max-width: 768px) {
  .articles__info {
    flex-basis: 100%;
  }
}

/*----------------------------------articles--------------------------------*/
/*----------------------------------vacancy--------------------------------*/
.vacancy__body {
  border: 1px solid #D2D7DF;
  border-radius: 30px 0 30px 0;
}
.vacancy__block {
  padding: 50px;
}
.vacancy__block:not(:last-child) {
  border-bottom: 1px solid #D2D7DF;
}
@media (max-width: 768px) {
  .vacancy__block {
    padding: 20px;
  }
}
.vacancy__items {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 768px) {
  .vacancy__items {
    flex-wrap: wrap;
  }
}
.vacancy__item {
  line-height: 130%;
  width: 50%;
}
.vacancy__item h3 {
  font-weight: 600;
}
@media (max-width: 768px) {
  .vacancy__item {
    width: 100%;
  }
}
.vacancy__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.vacancy__bottom .button {
  width: auto;
}
.vacancy__bottom p {
  font-size: 20px;
  line-height: 130%;
  font-family: var(--font-family-supermolot);
}
.vacancy__bottom p span {
  font-weight: 500;
}
@media (max-width: 768px) {
  .vacancy__bottom {
    flex-wrap: wrap;
  }
}

/*----------------------------------vacancy--------------------------------*/
/*----------------------------------accordion--------------------------------*/
.accordion__block {
  margin-bottom: 20px;
}
.accordion__summary {
  list-style: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  z-index: 3;
  color: var(--color-red);
  font-size: clamp(24px, 1.8055555556vw, 26px);
  font-family: var(--font-family-supermolot);
  padding-right: 30px;
  line-height: 130%;
}
.accordion__summary::after, .accordion__summary::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 2px;
  top: 50%;
  right: 0;
  background-color: var(--color-red);
  transition: transform 0.2s ease-out;
}
.accordion__summary::after {
  transform: rotate(-30deg);
  right: 5px;
}
.accordion__summary::before {
  transform: rotate(30deg);
  right: 10px;
}
.accordion__details[open] .accordion__summary::after {
  transform: rotate(30deg);
}
.accordion__details[open] .accordion__summary::before {
  transform: rotate(-30deg);
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.5s;
  margin-bottom: 10px;
  opacity: 0;
  padding-top: 30px;
  margin-top: -30px;
  border-bottom: 1px solid #D2D7DF;
}
.accordion__content_body {
  overflow: hidden;
}
.accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0px;
  padding-bottom: 20px;
}

/*----------------------------------accordion--------------------------------*/
/*----------------------------------works--------------------------------*/
@media (max-width: 768px) {
  .works__content .title {
    max-width: 200px;
  }
}
.works__table {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 400px;
  position: relative;
  margin-bottom: 40px;
}
.works__vector {
  position: absolute;
  top: -420px;
  left: 60%;
}
@media (max-width: 1024px) {
  .works__vector {
    left: 40%;
  }
}
@media (max-width: 768px) {
  .works__vector {
    top: -418px;
    left: -184px;
  }
}
.works__item {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  font-family: var(--font-family-supermolot);
  width: 76px;
  position: relative;
}
.works__item::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 36px;
  left: 0;
  background-color: #D2D7DF;
}
.works__item:nth-child(1)::after {
  height: 48px;
}
@media (max-width: 1024px) {
  .works__item:nth-child(1) {
    display: none;
  }
}
.works__item:nth-child(2)::after {
  height: 76px;
}
@media (max-width: 1024px) {
  .works__item:nth-child(2) {
    display: none;
  }
}
.works__item:nth-child(3)::after {
  height: 141px;
}
@media (max-width: 1024px) {
  .works__item:nth-child(3) {
    display: none;
  }
}
.works__item:nth-child(4)::after {
  height: 148px;
}
@media (max-width: 1024px) {
  .works__item:nth-child(4) {
    display: none;
  }
}
.works__item:nth-child(5)::after {
  height: 166px;
}
@media (max-width: 1024px) {
  .works__item:nth-child(5) {
    display: none;
  }
}
.works__item:nth-child(6)::after {
  height: 151px;
}
@media (max-width: 768px) {
  .works__item:nth-child(6) {
    display: none;
  }
}
.works__item:nth-child(7)::after {
  height: 130px;
}
@media (max-width: 768px) {
  .works__item:nth-child(7) {
    display: none;
  }
}
.works__item:nth-child(8)::after {
  height: 65px;
}
@media (max-width: 768px) {
  .works__item:nth-child(8) {
    display: none;
  }
}
.works__item:nth-child(9)::after {
  height: 125px;
}
@media (max-width: 768px) {
  .works__item:nth-child(9) {
    display: none;
  }
}
.works__item:nth-child(10)::after {
  height: 151px;
}
.works__item:nth-child(11)::after {
  height: 82px;
}
.works__item:nth-child(11)::after {
  height: 82px;
}
.works__item:nth-child(12)::after {
  height: 285px;
}
.works__item:nth-child(13)::after {
  height: 425px;
}
.works__item:nth-child(14)::after {
  height: 432px;
  background-color: #999999;
}
.works__inner {
  border: 1px solid #D2D7DF;
  border-radius: var(--border-radius) 0 0 0;
  background-color: var(--color-white);
  margin-bottom: 40px;
}
.works__block {
  padding: 50px;
  display: flex;
  gap: 10px 100px;
  font-family: var(--font-family-supermolot);
}
.works__block--gray {
  background-color: var(--color-gray-fill);
}
@media (max-width: 1280px) {
  .works__block {
    gap: 20px 50px;
  }
}
@media (max-width: 768px) {
  .works__block {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.works__lists {
  display: flex;
  justify-content: space-between;
  gap: 10px 100px;
}
.works__lists .button-more {
  display: none;
  background-color: inherit;
  font-size: 18px;
  line-height: 130%;
  font-family: var(--font-family-supermolot);
}
@media (max-width: 1024px) {
  .works__lists .button-more {
    display: block;
  }
}
.works__lists .content-more {
  display: block;
}
@media (max-width: 1024px) {
  .works__lists .content-more {
    display: none;
  }
}
@media (max-width: 1280px) {
  .works__lists {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .works__lists {
    display: block;
  }
}
.works__info {
  flex-basis: 200px;
}
.works__info p {
  font-weight: 500;
  font-size: clamp(24px, 2.0833333333vw, 30px);
  line-height: 110%;
  -moz-columns: var(--color-gray-dark);
       columns: var(--color-gray-dark);
}
@media (max-width: 768px) {
  .works__info {
    flex-basis: 100%;
  }
}
.works__year {
  font-weight: 500;
  font-size: 96px;
  line-height: 110%;
  -moz-columns: var(--color-gray-dark);
       columns: var(--color-gray-dark);
}
.works__year span {
  color: var(--color-red);
}
.works__list {
  font-size: 18px;
  line-height: 130%;
}
.works__list li a {
  position: relative;
  transition: all 0.3s;
  display: inline;
}
.works__list li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: border-bottom 0.3s ease;
}
@media (hover: hover) {
  .works__list li a:hover {
    color: var(--color-red);
    transition: all 0.3s;
  }
  .works__list li a:hover::after {
    border-bottom: 1px dotted var(--color-red);
  }
}
@media (max-width: 1024px) {
  .works__list {
    margin-bottom: 20px;
  }
}
.works__button {
  max-width: 240px;
  margin: auto;
}

.content-more {
  display: none;
}

.content-more.view {
  display: block;
}

.work__wrap {
  padding: 0px 80px;
}
@media (max-width: 1024px) {
  .work__wrap {
    padding: 0px;
  }
}
.work__body {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .work__body {
    flex-wrap: wrap;
  }
}
.work__info {
  border: 1px solid #D2D7DF;
  border-radius: 30px 0;
  background-color: var(--color-gray-fill);
  padding: 50px;
  flex-basis: 350px;
  font-family: var(--font-family-supermolot);
}
.work__info span {
  font-size: clamp(64px, 6.6666666667vw, 96px);
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 10px;
}
.work__info p {
  font-weight: 500;
  font-size: clamp(20px, 2.0833333333vw, 30px);
  line-height: 110%;
}
@media (max-width: 1024px) {
  .work__info {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .work__info p {
    max-width: 175px;
  }
}
@media (max-width: 768px) {
  .work__info {
    padding: 20px;
    flex-wrap: wrap;
  }
  .work__info p {
    max-width: 100%;
  }
}
.work__text {
  flex-basis: 678px;
  font-size: 18px;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .work__text {
    flex-basis: 100%;
  }
}
.work__button {
  max-width: 350px;
}
@media (max-width: 1024px) {
  .work__button {
    max-width: 100%;
  }
}

/*----------------------------------works--------------------------------*/
/*---------------------------------------sliders----------------------------*/
.one-slide,
.four-slide,
.about-slider,
.clientele-slider,
.reviews-slider,
.company-slider {
  overflow: hidden;
}

.one-slide .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.one-slide .swiper-slide {
  height: auto;
}

.slider__wrap {
  position: relative;
}
.slider__buttons {
  width: 500px;
  position: absolute;
  top: 80%;
  left: 80px;
}
.slider__buttons svg {
  transform: scale(1.9);
}
@media (max-width: 1280px) {
  .slider__buttons {
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .slider__buttons {
    top: 36%;
    left: 20px;
    width: 100%;
  }
  .slider__buttons .swiper-button-next {
    right: 50px;
  }
}
@media (max-width: 768px) {
  .slider__buttons {
    top: 50%;
  }
}

.four-slide,
.about-slider,
.company-slider {
  padding-bottom: 50px;
}

@media (max-width: 1024px) {
  .clientele-slider,
  .reviews-slider {
    padding-bottom: 50px;
  }
}

.four-slide .swiper-button-prev,
.company-slider .swiper-button-prev {
  left: 80px;
}
@media (max-width: 768px) {
  .four-slide .swiper-button-prev,
  .company-slider .swiper-button-prev {
    left: 20px;
  }
}

.four-slide .swiper-button-next,
.company-slider .swiper-button-next {
  right: 80px;
}
@media (max-width: 768px) {
  .four-slide .swiper-button-next,
  .company-slider .swiper-button-next {
    right: 20px;
  }
}

.four-slide .swiper-button-prev,
.four-slide .swiper-button-next,
.about-slider .swiper-button-prev,
.about-slider .swiper-button-next,
.clientele-slider .swiper-button-prev,
.clientele-slider .swiper-button-next,
.reviews-slider .swiper-button-prev,
.reviews-slider .swiper-button-next,
.company-slider .swiper-button-prev,
.company-slider .swiper-button-next {
  top: 100%;
}
.four-slide .swiper-button-prev svg,
.four-slide .swiper-button-next svg,
.about-slider .swiper-button-prev svg,
.about-slider .swiper-button-next svg,
.clientele-slider .swiper-button-prev svg,
.clientele-slider .swiper-button-next svg,
.reviews-slider .swiper-button-prev svg,
.reviews-slider .swiper-button-next svg,
.company-slider .swiper-button-prev svg,
.company-slider .swiper-button-next svg {
  transform: scale(1.9);
  transition: all 0.3s;
}
.four-slide .swiper-button-prev svg path,
.four-slide .swiper-button-next svg path,
.about-slider .swiper-button-prev svg path,
.about-slider .swiper-button-next svg path,
.clientele-slider .swiper-button-prev svg path,
.clientele-slider .swiper-button-next svg path,
.reviews-slider .swiper-button-prev svg path,
.reviews-slider .swiper-button-next svg path,
.company-slider .swiper-button-prev svg path,
.company-slider .swiper-button-next svg path {
  transition: all 0.3s;
}
@media (hover: hover) {
  .four-slide .swiper-button-prev:hover svg [stroke="#999999"],
  .four-slide .swiper-button-next:hover svg [stroke="#999999"],
  .about-slider .swiper-button-prev:hover svg [stroke="#999999"],
  .about-slider .swiper-button-next:hover svg [stroke="#999999"],
  .clientele-slider .swiper-button-prev:hover svg [stroke="#999999"],
  .clientele-slider .swiper-button-next:hover svg [stroke="#999999"],
  .reviews-slider .swiper-button-prev:hover svg [stroke="#999999"],
  .reviews-slider .swiper-button-next:hover svg [stroke="#999999"],
  .company-slider .swiper-button-prev:hover svg [stroke="#999999"],
  .company-slider .swiper-button-next:hover svg [stroke="#999999"] {
    stroke: var(--color-red);
    transition: all 0.3s;
  }
  .four-slide .swiper-button-prev:hover svg path,
  .four-slide .swiper-button-next:hover svg path,
  .about-slider .swiper-button-prev:hover svg path,
  .about-slider .swiper-button-next:hover svg path,
  .clientele-slider .swiper-button-prev:hover svg path,
  .clientele-slider .swiper-button-next:hover svg path,
  .reviews-slider .swiper-button-prev:hover svg path,
  .reviews-slider .swiper-button-next:hover svg path,
  .company-slider .swiper-button-prev:hover svg path,
  .company-slider .swiper-button-next:hover svg path {
    fill: var(--color-red);
    transition: all 0.3s;
  }
}

.awarding-slider .swiper-button-prev svg,
.awarding-slider .swiper-button-next svg {
  transform: scale(3);
}

.clientele-slider .swiper-button-prev,
.clientele-slider .swiper-button-next,
.reviews-slider .swiper-button-prev,
.reviews-slider .swiper-button-next {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1024px) {
  .clientele-slider .swiper-button-prev,
  .clientele-slider .swiper-button-next,
  .reviews-slider .swiper-button-prev,
  .reviews-slider .swiper-button-next {
    opacity: 1;
    visibility: visible;
  }
}

/*---------------------------------------параметры чтобы слайды имели одинаковую высоту----------------------------*/
.four-slide .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.four-slide .swiper-slide {
  height: auto;
  transition: all 0.5s ease;
}

.about-slider .swiper-slide img,
.four-slide .swiper-slide img,
.company-slider .swiper-slide img {
  width: 100%;
}

/*---------------------------------------параметры чтобы слайды имели одинаковую высоту----------------------------*/
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/*---------------------------------------sliders----------------------------*/
/*----------------------------------popup--------------------------------*/
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
  z-index: 999;
}
.popup__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__content {
  max-width: 590px;
  background-color: var(--color-gray-fill);
  padding: 80px;
  position: relative;
  opacity: 0;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  transition: all 0.8s ease 0s;
  border-radius: 20px 0 30px 0;
}
.popup__content .form__item {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .popup__content {
    padding: 40px 20px;
  }
}
.popup__content--mod .popup__title {
  margin-bottom: 10px;
}
.popup.open .popup__content {
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.popup__subtitle h3 {
  font-size: clamp(14px, 1.3888888889vw, 20px);
  line-height: 130%;
  font-family: var(--font-family-ptsans);
  color: var(--color-gray-dark);
}
.popup__title {
  margin-bottom: 40px;
}
.popup__title h2 {
  font-size: clamp(26px, 3.125vw, 45px);
  font-family: var(--font-family-supermolot);
  line-height: 110%;
  font-weight: 500;
}
.popup p {
  font-size: clamp(14px, 1.3888888889vw, 20px);
  line-height: 130%;
  font-family: var(--font-family-ptsans);
  color: var(--color-gray-dark);
  margin-bottom: 40px;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 40px;
  color: var(--color-black);
  transform: rotate(45deg);
}
.popup .checkbox {
  max-width: 300px;
}
.popup .checkbox__label::before {
  margin-top: 10px;
}
.popup .checkbox__label::after {
  top: 10px;
}

/*----------------------------------popup--------------------------------*/
/*----------------------------------form--------------------------------*/
.form {
  color: var(--color-black);
  border-radius: 5px;
  margin-bottom: 16px;
  position: relative;
}
.form._sending::after {
  opacity: 1;
  visibility: visible;
}
.form__title {
  font-size: clamp(26px, 2.9166666667vw, 42px);
  font-family: var(--font-family-supermolot);
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 40px;
}
.form__label {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
.form__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form__items {
    flex-wrap: wrap;
  }
}
.form__item {
  width: 100%;
  position: relative;
}
.form__item span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #999;
  transition: all 0.5s ease;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.form__item input {
  width: 100%;
}
.form__item input:not(:-moz-placeholder-shown) + span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-30px);
  font-size: 12px;
}
.form__item input:focus + span, .form__item input:not(:placeholder-shown) + span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-30px);
  font-size: 12px;
}
.form__item textarea {
  width: 100%;
  padding: 20px;
  min-height: 170px;
}
.form__item textarea + span {
  top: 20px;
}
.form__item textarea:not(:-moz-placeholder-shown) + span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-20px);
  font-size: 12px;
}
.form__item textarea:focus + span, .form__item textarea:not(:placeholder-shown) + span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-20px);
  font-size: 12px;
}
.form__input, .form__textarea {
  width: 100%;
  background-color: var(--color-white);
  padding: 20px;
  transition: all 0.3s ease 0s;
  font-size: 20px;
  line-height: 130%;
  border: 1px solid var(--color-white);
}
.form__input._error, .form__textarea._error {
  border: 1px solid var(--color-red);
}
.form__checkbox {
  width: 100%;
}
.form__textarea {
  margin-bottom: 20px;
  min-height: 170px;
}
.form .button {
  margin-bottom: 20px;
}

.success-message {
  max-width: 520px;
}
.success-message h2 {
  font-size: clamp(26px, 2.9166666667vw, 42px);
  font-family: var(--font-family-supermolot);
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 30px;
}
.success-message p {
  font-size: clamp(20px, 2.2222222222vw, 32px);
  line-height: 110%;
}

.file-upload-wrapper {
  position: relative;
  padding-bottom: 40px;
  max-width: 380px;
  cursor: pointer;
}
@media (hover: hover) {
  .file-upload-wrapper:hover .file-upload-label svg path {
    fill: var(--color-red);
    transition: all 0.3s;
  }
  .file-upload-wrapper:hover .file-upload-text {
    color: var(--color-red);
    transition: all 0.3s;
  }
}

.file-upload {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding-top: 60px;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.file-upload-label svg {
  flex: none;
}

.file-upload-text {
  font-size: 20px;
  line-height: 130%;
  color: #999999;
}

/*----------------------------------form--------------------------------*/
/*----------------------------------checkbox--------------------------------*/
.checkbox {
  display: inline-block;
}
.checkbox._error .checkbox__label::before {
  border: 1px solid red;
}
.checkbox__input {
  display: none;
}
.checkbox__input:checked + .checkbox__label::after {
  transform: rotate(45deg) scale(1);
}
.checkbox__label {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.checkbox__label__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.checkbox__label::before {
  content: "";
  align-self: flex-start;
  flex: 0 0 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid #D2D7DF;
  background: var(--color-white);
  position: relative;
}
.checkbox__label::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border: solid var(--color-black);
  border-width: 0 2px 2px 0;
  top: 0;
  left: 5px;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease-in-out;
}
.checkbox__label a {
  color: var(--color-red);
  text-decoration: underline;
  display: inline-block;
}

/*----------------------------------checkbox--------------------------------*/
/*----------------------------------footer--------------------------------*/
.footer {
  padding: 60px 80px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 18px;
  position: relative;
}
@media (max-width: 768px) {
  .footer {
    padding: 140px 0px 50px;
  }
}
.footer__body {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-bottom: 40px;
  }
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  gap: 10px 40px;
  margin-bottom: 40px;
}
.footer__nav ul {
  max-width: 150px;
}
.footer__nav ul li {
  transition: all 0.3s;
  line-height: 111%;
}
.footer__nav ul li:not(:last-child) {
  margin-bottom: 10px;
}
@media (hover: hover) {
  .footer__nav ul li:hover {
    color: var(--color-red);
    transition: all 0.3s;
  }
}
.footer__contacts {
  display: flex;
  justify-content: space-between;
  gap: 10px 50px;
  flex-wrap: wrap;
}
.footer__tel a {
  margin-bottom: 10px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__tel a:hover {
    color: var(--color-red);
    transition: all 0.3s;
  }
}
@media (max-width: 768px) {
  .footer__tel {
    display: none;
  }
}
.footer__media h4 {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer__media {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
}
.footer__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
}
.footer__links a svg {
  background-color: #999999;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  padding: 5px;
}
.footer__links a svg path {
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__links a:hover svg path {
    fill: var(--color-red);
    transition: all 0.3s;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__bottom a {
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__bottom a:hover {
    color: var(--color-red);
    transition: all 0.3s;
  }
}
@media (max-width: 768px) {
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

/*----------------------------------footer--------------------------------*//*# sourceMappingURL=styles.css.map */

.otherpage__content h1 {
  margin-bottom: 20px;
}
.otherpage__content h2 {
  font-weight: 500;
  font-size: clamp(20px, 1.3888888889vw, 24px);
  line-height: 130%;
  margin-bottom: 10px;
}
.otherpage__content h3 {
  font-weight: 500;
  font-size: clamp(16px, 1.3888888889vw, 20px);
  line-height: 120%;
  margin-bottom: 10px;
}
.otherpage__content p, ul, ol {
  margin-bottom: 10px;
}
.otherpage__content li {
  margin-left: 20px;
  list-style: circle;
}
.otherpage__content img{
	max-width: 100%;
	height: auto;
}

.otherpage__list li {
  margin-bottom: 10px;
  line-height: 130%;
  transition: all 0.3s;
}
.otherpage__list li a {
  text-decoration: underline;
}
.otherpage__list li a:hover {
  text-decoration: underline;
  color: var(--color-red);
}

.otherpage__body {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .otherpage__body {
    flex-wrap: wrap;
  }
}
.otherpage__info {
  flex-basis: 980px;
}
.otherpage__info li {
  margin-left: 20px;
}
