@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  color: #000;
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
}

body {
  position: relative;
}
body.modal-active {
  height: 100vh;
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  text-decoration: none;
}

.btn {
  cursor: pointer;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  background: #ff5a30;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.5s;
}
.btn.l-btn {
  padding: 0 40px;
  font-size: 16px;
  line-height: 52px;
}
.btn.m-btn {
  padding: 0 32px;
  font-size: 14px;
  line-height: 44px;
}
.btn.sm-btn {
  padding: 0 24px;
  font-size: 12px;
  line-height: 36px;
}
.btn:hover, .btn:active {
  background: #FC3300;
}
.btn:disabled {
  opacity: 0.5;
}
.btn.outline {
  background: #fff;
  color: #ff5a30;
  border: 1px solid #ff5a30;
}
.btn.outline:hover, .btn.outline:active {
  background: #ff5a30;
  color: #fff;
}
.btn.white-outline {
  background: transparent;
  border: 1px solid #fff;
}
.btn.white-outline:hover {
  border-color: #ff5a30;
  background: #ff5a30;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1260px;
}

.hero__slider {
  position: relative;
  width: 400%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  left: 0%;
  transition: 0.5s;
}
.hero__slider .slider__slide {
  position: relative;
  padding-top: 220px;
  padding-bottom: 355px;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero__slider .slider__slide .slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero__slider .slider__slide .slider__title {
  color: #fff;
  max-width: 600px;
  font-size: 72px;
  font-weight: bold;
  line-height: 130%;
  letter-spacing: 1px;
  text-wrap: wrap;
  padding-bottom: 24px;
}
.hero__slider .slider__slide .slider__title span {
  color: #ff5a30;
}
.hero__slider .slider__slide .slider__text {
  color: #fff;
  max-width: 650px;
  height: 90px;
  text-align: start;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0px;
  padding-bottom: 60px;
}
.hero__slider .slider__slide .hero-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.slider__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #fff;
  fill: #424551;
  transition: 0.5s;
}
.slider__btn svg path {
  transition: 0.5s;
}
.slider__btn:hover {
  background: #ff5a30;
}
.slider__btn:hover svg path {
  fill: #fff;
}
.slider__btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.title {
  color: #1e212c;
  font-size: 46px;
  font-weight: bold;
  line-height: 130%;
  text-align: center;
  margin-bottom: 24px;
}

.subtitle {
  color: #787a80;
  font-size: 18px;
  font-weight: normal;
  line-height: 150%;
  text-align: center;
  margin-bottom: 60px;
}

.input-block {
  min-width: 260px;
  height: 73px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  justify-content: space-between;
}
.input-block label {
  color: #1e212c;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
}
.input-block input,
.input-block textarea,
.input-block select {
  width: 100%;
  padding: 11px 16px;
  font-size: 14px;
  line-height: 150%;
  border: 1px solid #d7dadd;
  border-radius: 4px;
  outline: none;
}
.input-block input:focus,
.input-block textarea:focus,
.input-block select:focus {
  border: 1px solid #ff5a30;
}

.form__checkbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-items: start;
  /* стили при наведении курсора на checkbox */
}
.form__checkbox .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form__checkbox .custom-checkbox + label {
  display: inline-flex;
  align-items: start;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form__checkbox .custom-checkbox + label::before {
  content: "";
  margin-top: 5px;
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.form__checkbox .custom-checkbox:checked + label::before {
  border-color: #ff5a30;
  background-color: #ff5a30;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.form__checkbox .custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: #ff5a30;
}
.form__checkbox label {
  color: #424551;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
}

.services__item {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.services__item a {
  position: relative;
  width: 285px;
  height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.1), 0px 12px 10px -6px rgba(154, 156, 165, 0.1), 0px 30px 24px -10px rgba(154, 156, 165, 0.1), 0px 80px 80px -20px rgba(154, 156, 165, 0.1);
}
.services__item a .item-icon {
  width: 52px;
  height: 52px;
  z-index: 100;
  transition: 0.5s;
}
.services__item a .item-icon path {
  transition: 0.5s;
}
.services__item a .item-title {
  font-size: 20px;
  z-index: 100;
  transition: 0.5s;
}
.services__item a .item__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.5s;
  z-index: 10;
}
.services__item a .item__background::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1e212c;
  opacity: 0.6;
}
.services__item a .item__background img {
  -o-object-fit: cover;
     object-fit: cover;
}
.services__item a:hover {
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.1), 0px 12px 10px -6px rgba(30, 33, 44, 0.1), 0px 26px 24px -10px rgba(30, 33, 44, 0.1), 0px 60px 80px -20px rgba(30, 33, 44, 0.16);
}
.services__item a:hover .item-icon path {
  fill: #fff;
}
.services__item a:hover .item-title {
  color: #fff;
}
.services__item a:hover .item__background {
  opacity: 1;
}

.learn-more {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.learn-more .learn-more__title {
  font-size: 28px;
  margin: 0;
  padding-right: 40px;
}

.slider__slide {
  position: relative;
  min-width: 390px;
  height: 440px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.03), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 30px 24px -10px rgba(154, 156, 165, 0.05), 0px 80px 80px -20px rgba(154, 156, 165, 0.08);
  transition: 0.5s;
}
.slider__slide img {
  height: 345px;
}
.slider__slide .content {
  position: absolute;
  width: 100%;
  height: 163px;
  bottom: -68px;
  background: #fff;
  transition: 0.5s;
}
.slider__slide .content .slide-title {
  margin: 0;
  margin-top: 16px;
  font-size: 20px;
}
.slider__slide .content .slide-subtitle {
  margin: 0;
  margin-top: 4px;
  font-size: 14px;
}
.slider__slide .content .slide-btn {
  margin: auto;
  margin-top: 30px;
}
.slider__slide:hover {
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.1), 0px 12px 10px -6px rgba(154, 156, 165, 0.1), 0px 30px 24px -10px rgba(154, 156, 165, 0.1), 0px 80px 80px -20px rgba(154, 156, 165, 0.16);
}
.slider__slide:hover .content {
  bottom: 0;
}

.testimonials-slides {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: start;
}
.testimonials-slides .slider__slide {
  min-width: 100%;
}
.testimonials-slides .slider__slide img {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}
.testimonials-slides .slider__slide .review__text {
  color: #424551;
  font-size: 16px;
  font-weight: normal;
  line-height: 160%;
  text-align: start;
  margin-bottom: 24px;
}
.testimonials-slides .slider__slide .author__name {
  color: #1e212c;
  font-size: 16px;
  font-weight: bold;
  line-height: 160%;
  margin-bottom: 4px;
}
.testimonials-slides .slider__slide .author__position {
  -moz-columns: #787a80;
       columns: #787a80;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
}

.scroll-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-items: end;
  gap: 18px;
  position: fixed;
  bottom: 80px;
  right: calc((100% - 1230px) / 2);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 100;
}
.scroll-top .scroll-top__text {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
}
.scroll-top .scroll-top__btn {
  padding: 15px 12px;
  line-height: normal;
}
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.page-title__container {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
}
.page-title__container .breadcrumb {
  color: #9a9ca5;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
}
.page-title__container .breadcrumb a {
  color: #424551;
  transition: 0.5s;
}
.page-title__container .breadcrumb a:hover {
  color: #ff5a30;
}
.page-title__container .page-title__title {
  margin-top: 40px;
  max-width: 600px;
  text-align: start;
  color: #1e212c;
  font-size: 72px;
  font-weight: bold;
  line-height: 130%;
  letter-spacing: 1px;
}
.page-title__container .page-title__subtitle {
  color: #787a80;
  font-size: 20px;
  max-width: 600px;
  text-align: start;
}
.page-title__container .page-title__background {
  position: absolute;
  right: 0;
  top: -20px;
  width: -moz-fit-content;
  width: fit-content;
  height: 600px;
  z-index: -1;
}
.page-title__container .post-page-title__title {
  text-align: start;
  font-size: 64px;
  margin-top: 40px;
  margin-bottom: 48px;
}
.page-title__container .page-title__additional {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.page-title__container .page-title__additional .page-title__meta {
  color: #787a80;
  margin-bottom: 60px;
}
.page-title__container .page-title__additional .page-title__meta span {
  color: #787a80;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.page-title__container .page-title__additional .page-title__meta span:first-child {
  color: #ff5a30;
  font-weight: 700;
}
.page-title__container .page-title__additional .page-title__social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.page-title__container .page-title__additional .page-title__social svg {
  cursor: pointer;
}
.page-title__container .page-title__additional .page-title__social svg path {
  transition: 0.5s;
}
.page-title__container .page-title__additional .page-title__social svg:hover path {
  fill: #ff5a30;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(30, 33, 44, 0.75);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.modal-bg.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  border-radius: 4px;
  border: 1px solid #e5e8ed;
  background: #fff;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.05), 0px 12px 10px -6px rgba(30, 33, 44, 0.08), 0px 26px 24px -10px rgba(30, 33, 44, 0.1), 0px 60px 80px -20px rgba(30, 33, 44, 0.16);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.modal .modal-close {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: none;
}
.modal .title {
  font-size: 28px;
  margin-bottom: 24px;
}
.modal .input-block {
  margin-bottom: 20px;
}
.modal .btn {
  width: 100%;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}

.header {
  width: 100%;
  height: 52px;
  margin: 20px 0;
}
.header .header__container {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.header .header__container .nav__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.header .header__container .nav__list .nav__item {
  display: block;
}
.header .header__container .nav__list .nav__link {
  font-weight: bold;
  font-size: 16px;
  line-height: 160%;
  transition: 0.5s;
  color: #424551;
}
.header .header__container .nav__list .nav__link:hover, .header .header__container .nav__list .nav__link.active {
  color: #ff5a30;
}
.header .header__container .header-contacts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 35px;
  height: 100%;
}
.header .header__container .header-contacts .header-contacts__link {
  position: relative;
  width: -moz-min-content;
  width: min-content;
  margin-left: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-items: start;
}
.header .header__container .header-contacts .header-contacts__link img {
  position: absolute;
  left: -45px;
  width: 40px;
  height: 100%;
  fill: #ff5a30;
}
.header .header__container .header-contacts .header-contacts__link span {
  display: block;
  white-space: nowrap;
  transition: 0.5s;
  line-height: 150%;
  color: #424551;
}
.header .header__container .header-contacts .header-contacts__link .link-call__title,
.header .header__container .header-contacts .header-contacts__link .link-mail__title {
  font-size: 14px;
  font-weight: bold;
}
.header .header__container .header-contacts .header-contacts__link .link-call__tel,
.header .header__container .header-contacts .header-contacts__link .link-mail__adr {
  font-size: 18px;
  font-weight: 400;
}
.header .header__container .header-contacts .header-contacts__link:hover .link-call__tel, .header .header__container .header-contacts .header-contacts__link:hover .link-mail__adr {
  color: #ff5a30;
}

.hero {
  position: relative;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  overflow: hidden;
}
.hero .slider__btn {
  display: none;
  position: absolute;
  top: 50%;
}
.hero #slide-hero-to-left {
  left: 32px;
}
.hero #slide-hero-to-right {
  right: 32px;
}
.hero .hero__slider-count {
  z-index: 100;
  position: relative;
  bottom: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
}
.hero .hero__slider-count .slider-count-item {
  position: relative;
  width: 180px;
  margin-right: 4px;
  font-size: 28px;
  font-weight: bold;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}
.hero .hero__slider-count .slider-count-item::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: -2px;
  transition: 0.5s;
}
.hero .hero__slider-count .slider-count-item.active {
  color: white;
}
.hero .hero__slider-count .slider-count-item.active::after {
  width: 100%;
}

@media (min-width: 1400px) {
  .hero .slider__btn {
    z-index: 10000;
    display: flex;
  }
}
.video__container {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video__container .video-block {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
.video__container .video-block .video-block__play {
  position: absolute;
  width: 80px;
  height: 80px;
  padding: 24px;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  border-radius: 100%;
  z-index: 100;
  opacity: 1;
  transition: 0.5s;
}
.video__container .video-block video {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.video__container .video-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 10;
  opacity: 0.5;
}
.video__container .video-block.is-playing .video-block__play {
  opacity: 0;
  visibility: hidden;
}
.video__container .video-block.is-playing::before {
  opacity: 0;
  visibility: hidden;
}

.values-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 180px;
}
.values-container .values-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.values-container .values-list .values-list__item {
  max-width: 285px;
  height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.values-container .values-list .values-list__item img {
  width: 48px;
  height: 48px;
}
.values-container .values-list .values-list__item .item__title {
  font-size: 20px;
  margin: 0;
}
.values-container .values-list .values-list__item .item__text {
  font-size: 16px;
  margin: 0;
}

.request-form__container {
  margin-top: 120px;
  padding: 48px 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.1), 0px 12px 10px -6px rgba(154, 156, 165, 0.1), 0px 30px 24px -10px rgba(154, 156, 165, 0.1), 0px 80px 80px -20px rgba(154, 156, 165, 0.1);
}
.request-form__container .request-form__title {
  font-size: 28px;
  margin-bottom: 32px;
}
.request-form__container form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  align-items: end;
}
.request-form__container form .form__inputs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.request-form__container form .form__inputs .input-block:nth-child(3) {
  width: 414px;
}

.services {
  background: url(../../assets/background/services-section-bg.png);
  background-position: top -212px;
}
.services .services-container {
  margin-top: 120px;
}
.services .services-container .services__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

.portfolio-container {
  position: relative;
  margin-top: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  overflow: hidden;
}
.portfolio-container .portfolio__title {
  max-width: 750px;
  text-align: start;
}
.portfolio-container .slider-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.portfolio-container .portfolio__slider {
  overflow: hidden;
}
.portfolio-container .portfolio__slider .portfolio__slides {
  position: relative;
  left: 0%;
  margin-top: 48px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
  gap: 30px;
  width: 100%;
  transition: 0.5s;
}
.portfolio-container .portfolio__learn-more {
  margin: 0;
}

.clients-container {
  margin-top: 200px;
}
.clients-container .clients-title {
  margin-bottom: 60px;
}
.clients-container .clients-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.clients-container .clients-list .client-item {
  display: block;
}

.testimonials-container {
  margin-top: 170px;
  display: grid;
  grid-template-columns: 600px 495px;
  grid-template-rows: 120px 250px 180px;
  grid-template-areas: "a b" "c b" ". b";
  justify-content: space-between;
}
.testimonials-container .testimonials-title {
  grid-area: a;
  min-width: 600px;
}
.testimonials-container .testimonials-img {
  grid-area: b;
  width: 495px;
}
.testimonials-container .testimonials-slider {
  grid-area: c;
  position: relative;
  overflow: hidden;
}
.testimonials-container .testimonials-slider .slider-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

.figures {
  position: relative;
}
.figures .figures-bg {
  position: absolute;
  top: 0;
  left: -500px;
  width: 1065.947px;
  height: 858.82px;
  transform: rotate(126.97deg);
  flex-shrink: 0;
}

.figures-container {
  margin-top: 120px;
}
.figures-container .figures__list {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.figures-container .figures__list .figures__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.figures-container .figures__list .figures__item .circle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 148px;
  height: 148px;
}
.figures-container .figures__list .figures__item .circle svg {
  position: absolute;
}
.figures-container .figures__list .figures__item .circle .circle__number {
  font-size: 32px;
  font-weight: bold;
  line-height: 150%;
}
.figures-container .figures__list .figures__item .item__text {
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
}

.news-container {
  margin-top: 180px;
}
.news-container .news__title {
  margin-bottom: 60px;
}
.news-container .news__list {
  display: grid;
  grid-template-columns: 705px 495px;
  grid-template-rows: 255px 255px;
  grid-template-areas: "a b" "a c";
  gap: 30px;
}
.news-container .news__list .news__item {
  display: block;
}
.news-container .news__list .post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  padding: 0 24px;
  padding-bottom: 24px;
}
.news-container .news__list .post .post__preview {
  width: calc(100% + 48px);
  margin: 0 -24px;
}
.news-container .news__list .post .post__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 150%;
  margin: 0;
  margin-top: 24px;
  transition: 0.5s;
}
.news-container .news__list .post .post__meta {
  margin-top: 12px;
}
.news-container .news__list .post .post__meta, .news-container .news__list .post .post__meta span {
  color: #787a80;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
}
.news-container .news__list .post .post__meta svg {
  position: relative;
  bottom: -3px;
}
.news-container .news__list .post .post__text {
  color: #424551;
  font-size: 16px;
  font-weight: normal;
  line-height: 160%;
  margin-top: 16px;
}
.news-container .news__list .post:hover .post__title {
  color: #ff5a30;
}
.news-container .news__list .news__item:nth-child(1) {
  grid-area: a;
}
.news-container .news__list .news__item:nth-child(2) {
  grid-area: b;
}
.news-container .news__list .news__item:nth-child(3) {
  grid-area: c;
}

.application {
  position: relative;
  margin-top: 120px;
  z-index: -2;
}
.application .application__bg {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.application .application-container {
  display: flex;
  justify-content: end;
}
.application .application-container .aplication__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 495px;
  height: 666px;
  border-radius: 4px;
  padding: 48px 40px;
  margin: 80px 0;
  background: #fff;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.05), 0px 12px 10px -6px rgba(30, 33, 44, 0.08), 0px 26px 24px -10px rgba(30, 33, 44, 0.1), 0px 60px 80px -20px rgba(30, 33, 44, 0.16);
}
.application .application-container .aplication__form .form__title {
  font-size: 28px;
}
.application .application-container .aplication__form .form__inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.application .application-container .aplication__form .form__inputs .form__input {
  width: 100%;
}
.application .application-container .aplication__form .form__inputs textarea {
  height: 66px;
}

footer {
  background: #1e212c;
}

.footer-container {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

.footer__top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.footer__top .footer__info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  max-width: 493px;
}
.footer__top .footer__info .info__logo {
  width: 142px;
  height: 24px;
  margin-right: 60px;
}
.footer__top .footer__info .info__social {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer__top .footer__info .info__social .social__item {
  display: block;
}
.footer__top .footer__info .info__social .social__item g {
  transition: 0.5s;
}
.footer__top .footer__info .info__social .social__item:hover g {
  opacity: 1;
}
.footer__top .footer__info .info__text {
  opacity: 0.6;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
  margin-top: 24px;
}
.footer__top .footer__subscribe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  max-width: 495px;
}
.footer__top .footer__subscribe .subscribe__title {
  color: #fff;
  font-size: 24px;
}
.footer__top .footer__subscribe .subscribe__input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer__top .footer__subscribe .subscribe__input input {
  width: 364px;
  color: #9a9ca5;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  transition: 0.5s;
}
.footer__top .footer__subscribe .subscribe__input input:focus {
  border: 1px solid #ff5a30;
}
.footer__top .footer__subscribe .subscribe__input .subscribe__btn {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.footer__top .footer__subscribe .subscribr__text {
  margin-top: 16px;
  opacity: 0.6;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  line-height: 150%;
}

.footer__bottom {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
  gap: 125px;
}
.footer__bottom h3 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: start;
  margin-bottom: 13px;
}
.footer__bottom p,
.footer__bottom a {
  color: #9a9ca5;
  font-size: 16px;
  font-weight: normal;
  line-height: 160%;
  transition: 0.5s;
  margin-bottom: 4px;
}
.footer__bottom a:hover {
  color: #fff;
}
.footer__bottom .footer__contacts span {
  color: #fff;
}
.footer__bottom .footer__about,
.footer__bottom .footer__expirience {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
}

.footer__copyright {
  margin-top: 60px;
  color: #fff;
  align-self: flex-start;
  font-size: 12px;
}

.services-page-container {
  margin-top: 300px;
  margin-bottom: 60px;
}
.services-page-container .services-page__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 120px;
}
.services-page-container .services-page__list .services-page__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 80px;
}
.services-page-container .services-page__list .services-page__item .item__preview {
  width: 575px;
  height: 420px;
}
.services-page-container .services-page__list .services-page__item .item__content .item__title {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: bold;
  text-align: start;
}
.services-page-container .services-page__list .services-page__item .item__content .item__text {
  margin-bottom: 48px;
  color: #787a80;
  font-size: 16px;
  font-weight: normal;
  line-height: 160%;
}
.services-page-container .services-page__list .services-page__item:nth-child(2n) {
  flex-direction: row-reverse;
}

.steps-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  margin-top: 180px;
}
.steps-container .steps__title {
  margin-bottom: 60px;
}
.steps-container .steps__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  align-items: start;
}
.steps-container .steps__list .steps__item {
  cursor: default;
  max-width: 285px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: start;
  align-items: start;
}
.steps-container .steps__list .steps__item .item__count {
  position: relative;
  color: #d7dadd;
  font-size: 46px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 16px;
  transition: 0.5s;
}
.steps-container .steps__list .steps__item .item__count::before, .steps-container .steps__list .steps__item .item__count:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: #ff5a30;
  border-radius: 100%;
  opacity: 0.12;
  transition: 0.5s;
}
.steps-container .steps__list .steps__item .item__count:after {
  opacity: 0.06;
}
.steps-container .steps__list .steps__item .item__title {
  font-size: 20px;
  margin-bottom: 8px;
}
.steps-container .steps__list .steps__item .item__subtitle {
  font-size: 16px;
  text-align: start;
}
.steps-container .steps__list .steps__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 209px;
  border-bottom: 1px dashed #d7dadd;
}
.steps-container .steps__list .steps__item:hover .item__count {
  color: #ff5a30;
}
.steps-container .steps__list .steps__item:hover .item__count::before {
  top: calc(50% - 42px);
  left: calc(50% - 42px);
  width: 84px;
  height: 84px;
}
.steps-container .steps__list .steps__item:hover .item__count::after {
  top: calc(50% - 58px);
  left: calc(50% - 58px);
  width: 116px;
  height: 116px;
}

.benefits {
  position: relative;
  margin-top: 120px;
  padding-top: 80px;
  padding-bottom: 126px;
  background: #1e212c;
}

.benefits-container .benefits__title {
  color: #fff;
}
.benefits-container .benefits__subtitle {
  color: #fff;
  opacity: 0.6;
}
.benefits-container .benefits__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.benefits-container .benefits__list .benefits__item {
  max-width: 285px;
  height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.benefits-container .benefits__list .benefits__item .item__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
.benefits-container .benefits__list .benefits__item .item__title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}
.benefits-container .benefits__list .benefits__item .item__subtitle {
  color: #fff;
  opacity: 0.6;
  font-size: 16px;
  margin-bottom: 0;
}
.benefits-container .benefits__btn {
  position: absolute;
  bottom: -26px;
  left: calc(50% - 195px);
  font-size: 18px;
  padding: 0 112px;
  letter-spacing: 0.5px;
}

.benefits-white {
  background: #fff;
}
.benefits-white .title {
  color: #1e212c !important;
}
.benefits-white .subtitle {
  color: #787a80 !important;
}

.pricing-container {
  margin-top: 180px;
}
.pricing-container .pricing__table {
  width: 100%;
}
.pricing-container .pricing__table .table__row {
  width: 100%;
  height: 58px;
}
.pricing-container .pricing__table .table__row .table__sell {
  text-align: center;
}
.pricing-container .pricing__table .table__row .table__sell:nth-child(1) {
  text-align: start;
}
.pricing-container .pricing__table .table__row:nth-child(2n) {
  background: #f4f5f6;
}
.pricing-container .pricing__table .row__title {
  height: 120px;
}
.pricing-container .pricing__table .row__title .table__sell {
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
}
.pricing-container .pricing__table .row__title .table__sell .sell__title {
  font-size: 24px;
  margin-bottom: 0;
}
.pricing-container .pricing__table .row__title .table__sell .sell__subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
.pricing-container .pricing__table .row__btns {
  height: 100px;
}
.pricing-container .pricing__table .row__btns .btn {
  margin: auto;
}

.tabs {
  margin-top: 60px;
}

.tabs-container .tabs__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.tabs-container .tabs__list .tabs__item {
  width: 230px;
  height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.03), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 30px 24px -10px rgba(154, 156, 165, 0.05), 0px 80px 80px -20px rgba(154, 156, 165, 0.08);
  transition: 0.5s;
}
.tabs-container .tabs__list .tabs__item svg path {
  fill: #ff5a30;
  transition: 0.5s;
}
.tabs-container .tabs__list .tabs__item .item__title {
  color: #9a9ca5;
  font-size: 16px;
  margin-bottom: 0;
  transition: 0.5s;
}
.tabs-container .tabs__list .tabs__item.active, .tabs-container .tabs__list .tabs__item:hover {
  background: #ff5a30;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.05), 0px 12px 10px -6px rgba(255, 90, 48, 0.08), 0px 26px 24px -10px rgba(255, 90, 48, 0.1), 0px 60px 80px -20px rgba(255, 90, 48, 0.16);
}
.tabs-container .tabs__list .tabs__item.active svg path, .tabs-container .tabs__list .tabs__item:hover svg path {
  fill: #fff;
}
.tabs-container .tabs__list .tabs__item.active .item__title, .tabs-container .tabs__list .tabs__item:hover .item__title {
  color: #fff;
}

.offer-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin-top: 300px;
}
.offer-container img {
  max-width: 705px;
}
.offer-container .offer__content {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
}
.offer-container .offer__content .offer__list .offer__item {
  cursor: ™;
  padding-left: 45px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: start;
  max-height: 85px;
  overflow: hidden;
  transition: 0.5s;
}
.offer-container .offer__content .offer__list .offer__item .item__title {
  text-align: start;
  font-size: 28px;
  margin-bottom: 12px;
}
.offer-container .offer__content .offer__list .offer__item .item__subtitle {
  text-align: start;
  font-size: 16px;
  margin-bottom: 24px;
}
.offer-container .offer__content .offer__list .offer__item::after, .offer-container .offer__content .offer__list .offer__item::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 20px;
  width: 24px;
  height: 2px;
  transition: 0.5s;
  background: #ff5a30;
}
.offer-container .offer__content .offer__list .offer__item.active {
  max-height: 200px;
}
.offer-container .offer__content .offer__list .offer__item.active::after {
  rotate: 90deg;
}

.portfolio-page-container {
  margin-top: 120px;
}
.portfolio-page-container .portfolio-page__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 30px;
}
.portfolio-page-container .portfolio-page__list li {
  margin-bottom: 30px;
}
.portfolio-page-container .portfolio-page__load-more {
  cursor: pointer;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.portfolio-page-container .portfolio-page__load-more img {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  transition: 0.5s;
}
.portfolio-page-container .portfolio-page__load-more p {
  display: inline;
  color: #424551;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  transition: 0.5s;
}
.portfolio-page-container .portfolio-page__load-more:hover p {
  color: #ff5a30;
}
.portfolio-page-container .portfolio-page__load-more:hover img {
  transform: rotate(-210deg);
}

.gallery-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 20px;
  padding: 0;
  max-width: 1230px;
  overflow: hidden;
}
.gallery-container .slider__btn {
  position: absolute;
  top: calc(50% - 75px);
}
.gallery-container #slide-gallery-to-left {
  left: 32px;
}
.gallery-container #slide-gallery-to-right {
  right: 32px;
}
.gallery-container .gallery__slider {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
  left: 0%;
  transition: 0.5s;
}
.gallery-container .gallery__thumbnails {
  position: relative;
  width: 700px;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.gallery-container .gallery__thumbnails:after, .gallery-container .gallery__thumbnails:before {
  content: "";
  position: absolute;
  height: 100%;
  opacity: 0.6;
  background: #fff;
  transition: 0.5s;
}
.gallery-container .gallery__thumbnails:after {
  left: 0;
}
.gallery-container .gallery__thumbnails:before {
  right: 0;
}
.gallery-container .gallery__thumbnails[show="1"]::after {
  width: 0px;
}
.gallery-container .gallery__thumbnails[show="1"]::before {
  width: 585px;
}
.gallery-container .gallery__thumbnails[show="2"]::after {
  width: 117px;
}
.gallery-container .gallery__thumbnails[show="2"]::before {
  width: 468px;
}
.gallery-container .gallery__thumbnails[show="3"]::after {
  width: 234px;
}
.gallery-container .gallery__thumbnails[show="3"]::before {
  width: 351px;
}
.gallery-container .gallery__thumbnails[show="4"]::after {
  width: 351px;
}
.gallery-container .gallery__thumbnails[show="4"]::before {
  width: 234px;
}
.gallery-container .gallery__thumbnails[show="5"]::after {
  width: 468px;
}
.gallery-container .gallery__thumbnails[show="5"]::before {
  width: 117px;
}
.gallery-container .gallery__thumbnails[show="6"]::after {
  width: 585px;
}
.gallery-container .gallery__thumbnails[show="6"]::before {
  width: 0px;
}

.project-about-container {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.project-about-container .project-about__goal {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
}
.project-about-container .project-about__goal .goal__title {
  margin-bottom: 40px;
}
.project-about-container .project-about__goal .goal__description {
  color: #424551;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.project-about-container .project-about__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 16px;
}
.project-about-container .project-about__info .info__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.project-about-container .project-about__info .info__item .item__title {
  text-align: start;
  width: 100px;
  margin-bottom: 0;
  font-size: 16px;
}
.project-about-container .project-about__info .info__item .item__subtitle {
  text-align: start;
  font-size: 16px;
  margin-bottom: 0;
}

.decisions-container {
  margin-top: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  align-items: start;
}
.decisions-container img {
  width: 495px;
}
.decisions-container .decisions__content {
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
}
.decisions-container .decisions__content .decisions__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-items: start;
}
.decisions-container .decisions__content .decisions__list .decisions__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.statistics-container {
  margin-top: 300px;
}
.statistics-container .statistics__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.statistics-container .statistics__list .statistics__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: start;
  height: 178px;
}
.statistics-container .statistics__list .statistics__item svg {
  margin-bottom: 20px;
}
.statistics-container .statistics__list .statistics__item .item__title {
  position: relative;
  color: #ff5a30;
  margin-bottom: 8px;
}
.statistics-container .statistics__list .statistics__item .item__title span {
  display: inline-block;
  position: absolute;
  color: #ff5a30;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 10px;
  top: 0;
}
.statistics-container .statistics__list .statistics__item .item__subtitle {
  width: 240px;
  color: #1e212c;
  font-size: 14px;
  margin-bottom: 0;
}

.quotation-container {
  margin-top: 120px;
  position: relative;
  width: 100%;
  height: 700px;
}
.quotation-container .quotation__img {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 525px;
  height: 580px;
}
.quotation-container .quotation__content {
  position: absolute;
  top: 0;
  right: 15px;
  width: 735px;
  height: 570px;
  background: #fff;
  padding: 80px 105px 80px 135px;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.03), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 30px 24px -10px rgba(154, 156, 165, 0.05), 0px 80px 80px -20px rgba(154, 156, 165, 0.08);
}
.quotation-container .quotation__content .quotation__braces {
  position: absolute;
  left: 77px;
  top: 80px;
}
.quotation-container .quotation__content .quotation__text {
  position: relative;
  color: #1e212c;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 60px;
}
.quotation-container .quotation__content .quotation__name-position {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
}
.quotation-container .quotation__content .quotation__name-position .name-position__name {
  font-size: 16px;
  margin-bottom: 4px;
}
.quotation-container .quotation__content .quotation__name-position .name-position__position {
  font-size: 14px;
  margin-bottom: 0;
}
.quotation-container .quotation__content .quotation__signature {
  position: absolute;
  width: 100px;
  height: 68px;
  right: 105px;
  bottom: 70px;
}

.history-container {
  margin-top: 180px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.history-container .history__title {
  width: 50%;
  text-align: start;
}
.history-container .history__btns {
  margin-top: 20px;
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: end;
}
.history-container .history__timeline {
  width: 250px;
  padding-left: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  border-left: 1px solid #9a9ca5;
}
.history-container .history__timeline .timeline__item {
  cursor: pointer;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.history-container .history__timeline .timeline__item .item__title {
  position: relative;
  color: #9a9ca5;
  font-size: 28px;
  margin-bottom: 20px;
  transition: 0.5s;
}
.history-container .history__timeline .timeline__item .item__title::before {
  content: "";
  position: absolute;
  left: -43px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  border: 4px solid #f4f5f6;
  background: #9a9ca5;
  transition: 0.5s;
}
.history-container .history__timeline .timeline__item:last-child .item__title {
  margin-bottom: 0;
}
.history-container .history__timeline .timeline__item.active .item__title {
  color: #ff5a30;
}
.history-container .history__timeline .timeline__item.active .item__title::before {
  background: #ff5a30;
}
.history-container .history__slider {
  position: relative;
  width: 822px;
  height: 550px;
  overflow: hidden;
}
.history-container .history__slider .slider__list {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
  width: 900%;
  left: 0%;
  top: 0;
  transition: 0.5s;
}
.history-container .history__slider .slider__list .slider__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.history-container .history__slider .slider__list .slider__item .item__text {
  color: #424551;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-top: 36px;
}

.team-container {
  margin-top: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.team-container .team__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.team-container .team__list li {
  display: block;
}
.team-container .team__list .team__item {
  position: relative;
  width: 285px;
  height: 416px;
}
.team-container .team__list .team__item img {
  height: 340px;
}
.team-container .team__list .team__item .item__social {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  gap: 12px;
  top: 340px;
  left: 0;
  background: rgba(255, 90, 48, 0.7);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: 0.5s;
  z-index: 10;
}
.team-container .team__list .team__item .item__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: #fff;
  z-index: 100;
}
.team-container .team__list .team__item .item__content .item__name {
  color: #424551;
  font-size: 20px;
  line-height: 150%;
}
.team-container .team__list .team__item .item__content .item__positioin {
  color: #787a80;
  font-size: 16px;
  line-height: 160%;
}
.team-container .team__list .team__item:hover .item__social {
  top: 280px;
}
.team-container .team__available-position {
  margin-top: 80px;
  color: #1e212c;
  font-size: 18px;
  line-height: 150%;
}
.team-container .team__available-position .available-position__link {
  color: #ff5a30;
  text-decoration-line: underline;
}

.map-container {
  margin-top: 200px;
}

.vacancies-container {
  margin-top: 200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  align-items: start;
}
.vacancies-container .vacancies__list {
  min-width: 705px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.vacancies-container .vacancies__list .vacancies__item {
  width: 100%;
  height: 125px;
  padding: 33px 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  border: 1px solid #e5e8ed;
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0), 0px 12px 10px -6px rgba(154, 156, 165, 0), 0px 30px 24px -10px rgba(154, 156, 165, 0), 0px 80px 80px -20px rgba(154, 156, 165, 0);
  transition: 0.5s;
}
.vacancies-container .vacancies__list .vacancies__item .item__vacancy {
  max-width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  align-items: start;
}
.vacancies-container .vacancies__list .vacancies__item .item__vacancy .vacancy__meta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.vacancies-container .vacancies__list .vacancies__item .item__vacancy .vacancy__meta p {
  color: #787a80;
  font-size: 14px;
  line-height: 150%;
}
.vacancies-container .vacancies__list .vacancies__item .item__vacancy .vacancy__title {
  text-align: start;
  font-size: 20px;
  margin-bottom: 0;
}
.vacancies-container .vacancies__list .vacancies__item:hover {
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.03), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 30px 24px -10px rgba(154, 156, 165, 0.05), 0px 80px 80px -20px rgba(154, 156, 165, 0.08);
}
.vacancies-container .vacancies__cta {
  max-width: 390px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}
.vacancies-container .vacancies__cta .cta__title {
  text-align: start;
  font-size: 28px;
  margin-bottom: 24px;
}
.vacancies-container .vacancies__cta .cta__subtitle {
  text-align: start;
  font-size: 18px;
  margin-bottom: 48px;
}
.vacancies-container .vacancies__cta .btn {
  width: 180px;
}

.modal-subscribe {
  width: 486px;
  height: 412px;
  top: calc(50% - 206px);
  left: calc(50% - 243px);
  padding: 48px;
}
.modal-subscribe .modal-subscribe__input-email {
  margin-bottom: 40px;
}

.modal-cv {
  width: 486px;
  height: 781px;
  top: calc(50% - 390.5px);
  left: calc(50% - 243px);
  padding: 48px;
}
.modal-cv .modal-cv__input-location select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.modal-cv .modal-cv__input-location select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 14px;
  background-image: url(../../assets/icons/chevrons/Down-chevron.svg);
}
.modal-cv .modal-cv__input-covering-letter {
  height: -moz-fit-content;
  height: fit-content;
}
.modal-cv .modal-cv__input-covering-letter textarea {
  height: 86px;
}
.modal-cv .modal-cv__input-file {
  position: relative;
  margin-bottom: 40px;
  max-width: 140px;
  max-height: 24px;
}
.modal-cv .modal-cv__input-file label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.modal-cv .modal-cv__input-file input {
  cursor: pointer;
  position: absolute;
  left: 0;
  right: 0;
  max-width: 140px;
  max-height: 24px;
  padding: 0;
  opacity: 0;
}

.news-page .news-container {
  margin-top: 360px;
}
.news-page .news-container .news__title {
  margin-bottom: 40px;
}
.news-page .news-container .news__filters {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.news-page .news-container .news__filters .filters__item {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 16.6666666667%;
  height: 46px;
  margin-bottom: 60px;
  color: #9a9ca5;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  border-radius: 4px;
  border: none;
  transition: 0.5s;
}
.news-page .news-container .news__filters .filters__item:hover {
  color: #ff5a30;
}
.news-page .news-container .news__filters .filters__item.active {
  color: #ff5a30;
  border: 1px solid #ff5a30;
}
.news-page .news-container .news__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}
.news-page .news-container .news__list .news__item {
  box-shadow: 0px 4px 4px -4px rgba(30, 33, 44, 0.03), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 30px 24px -10px rgba(154, 156, 165, 0.05), 0px 80px 80px -20px rgba(154, 156, 165, 0.08);
  max-width: 600px;
}
.news-page .news-container .news__pagination {
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.news-page .news-container .news__pagination span,
.news-page .news-container .news__pagination svg {
  cursor: pointer;
}
.news-page .news-container .news__pagination span {
  color: #424551;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.news-page .news-container .news__pagination span.active {
  color: #ff5a30;
}

.article-container {
  width: 840px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
}
.article-container span {
  color: #424551;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 24px;
}
.article-container span b {
  color: #1e212c;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.article-container .article__quotation {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  margin: 24px 0;
}
.article-container .article__quotation svg {
  min-width: 28px;
  min-height: 20px;
}
.article-container .article__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 4px;
  margin-bottom: 24px;
}
.article-container .article__list .article__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.article-container .article__list .article__item span {
  margin: 0;
}
.article-container .article__share {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  gap: 12px;
}
.article-container .article__share span {
  margin: 0;
}
.article-container .article__share svg {
  cursor: pointer;
}
.article-container .article__share svg path {
  transition: 0.5s;
}
.article-container .article__share svg:hover path {
  fill: #ff5a30;
}

.comments-container {
  margin-top: 80px;
  max-width: 840px;
}
.comments-container .comments__title {
  margin-bottom: 80px;
}
.comments-container .comments__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 60px;
}
.comments-container .comments__list .comments__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 30px;
}
.comments-container .comments__list .comments__item .item__user {
  min-width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 8px;
}
.comments-container .comments__list .comments__item .item__user .user__name {
  color: #1e212c;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}
.comments-container .comments__list .comments__item .item__user .user__date {
  color: #787a80;
  font-size: 14px;
  line-height: 150%;
}
.comments-container .comments__list .comments__item .item__comment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 16px;
}
.comments-container .comments__list .comments__item .item__comment .comment__text {
  color: #424551;
  font-size: 16px;
  line-height: 160%;
}
.comments-container .comments__list .comments__item .item__comment .comment__text .text__reply-to {
  color: #ff5a30;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.comments-container .comments__list .comments__item .item__comment .comment__reply {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.comments-container .comments__list .comments__item .item__comment .comment__reply path {
  transition: 0.5s;
}
.comments-container .comments__list .comments__item .item__comment .comment__reply span {
  color: #787a80;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: 0.5s;
}
.comments-container .comments__list .comments__item .item__comment .comment__reply:hover path {
  fill: #ff5a30;
}
.comments-container .comments__list .comments__item .item__comment .comment__reply:hover span {
  color: #ff5a30;
}

.leave-comment-container {
  margin-top: 120px;
  max-width: 840px;
}
.leave-comment-container .leave-comment__title {
  margin-bottom: 48px;
}
.leave-comment-container .leave-comment__form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.leave-comment-container .leave-comment__form .leave-comment__input-name,
.leave-comment-container .leave-comment__form .leave-comment__input-email {
  width: 390px;
  margin-bottom: 22px;
}
.leave-comment-container .leave-comment__form .leave-comment__input-comment {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 48px;
}
.leave-comment-container .leave-comment__form .leave-comment__input-comment textarea {
  min-height: 100px;
}
.leave-comment-container .leave-comment__form input,
.leave-comment-container .leave-comment__form textarea {
  background: #f4f5f6;
}
.leave-comment-container .leave-comment__form .form__btn {
  margin: auto;
}

.contact-us-container {
  margin-top: 330px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-us-container .contact-us__title,
.contact-us-container .contact-us__subtitle {
  width: 100%;
}
.contact-us-container .contact-us__img {
  width: 495px;
  height: 586px;
}
.contact-us-container .contact-us__form {
  width: 600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-us-container .contact-us__form .input-block {
  width: 285px;
  margin-bottom: 24px;
}
.contact-us-container .contact-us__form label {
  color: #424551;
}
.contact-us-container .contact-us__form .form__input-message {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.contact-us-container .contact-us__form .form__input-message textarea {
  height: 128px;
}
.contact-us-container .contact-us__form .form__checkbox {
  width: 315px;
}
.contact-us-container .contact-us__form .form__input-contact-method {
  width: 285px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  /* для элемента input c type="radio" */
  /* для элемента label связанного с .custom-radio */
  /* создание в label псевдоэлемента  before со следующими стилями */
  /* стили при наведении курсора на радио */
  /* стили для активной радиокнопки (при нажатии на неё) */
  /* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
  /* стили для радиокнопки, находящейся в состоянии checked */
  /* стили для радиокнопки, находящейся в состоянии disabled */
}
.contact-us-container .contact-us__form .form__input-contact-method .input-contact-method__title {
  width: 100%;
  text-align: start;
  color: #424551;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 20px;
}
.contact-us-container .contact-us__form .form__input-contact-method label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-right: 24px;
}
.contact-us-container .contact-us__form .form__input-contact-method .custom-radio > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.contact-us-container .contact-us__form .form__input-contact-method .custom-radio > span {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contact-us-container .contact-us__form .form__input-contact-method .custom-radio > span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.contact-us-container .contact-us__form .form__input-contact-method .custom-radio > input:not(:disabled):not(:checked) + span:hover::before {
  border-color: #ff5a30;
}
.contact-us-container .contact-us__form .form__input-contact-method .custom-radio > input:not(:disabled):active + span::before {
  background-color: rgba(255, 90, 48, 0.5);
  border-color: rgba(255, 90, 48, 0.5);
}
.contact-us-container .contact-us__form .form__input-contact-method .custom-radio > input:focus:not(:checked) + span::before {
  border-color: #80bdff;
}
.contact-us-container .contact-us__form .form__input-contact-method .custom-radio > input:checked + span::before {
  border-color: #ff5a30;
  background-color: #ff5a30;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.contact-us-container .contact-us__form .form__input-contact-method .custom-radio > input:disabled + span::before {
  background-color: #e9ecef;
}

.contacts-container {
  margin-top: 200px;
}
.contacts-container .contacts__offices {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.contacts-container .contacts__offices .office {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
}
.contacts-container .contacts__offices .office .office__title {
  font-size: 28px;
}
.contacts-container .contacts__offices .office .office__address, .contacts-container .contacts__offices .office .item__value, .contacts-container .contacts__offices .office .office__map {
  color: #1e212c;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 4px;
}
.contacts-container .contacts__offices .office .office__map {
  color: #ff5a30;
  border-bottom: 1px solid #ff5a30;
  margin-bottom: 20px;
}
.contacts-container .contacts__offices .office .contacts__item {
  display: block;
}
.contacts-container .contacts__offices .office .contacts__item .item__title {
  color: #787a80;
}

.follow-container {
  margin-top: 200px;
  margin-bottom: 120px;
}
.follow-container .follow__social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.follow-container .follow__social .social__item {
  display: block;
}
.follow-container .follow__social .social__item path {
  transition: 0.5s;
}
.follow-container .follow__social .social__item:hover path {
  fill: #ff5a30;
}/*# sourceMappingURL=main.css.map */