:root {
  --color-black: #000;
  --color-light: #fff;
  --color-gray: #424551;
  --color-storm: #787a80;
  --color-ebony: #1e212c;
  --color-primary: #ff5a30;
  --color-athens: #f4f5f7;
  --color-active: #fc3300;
  --grid-gap: 30px;
  --hero-slider-speed: 500;
  --main-shadow: 0 80px 80px -20px rgba(154, 156, 165, 0.08), 0 30px 24px -10px rgba(154, 156, 165, 0.05), 0 12px 10px -6px rgba(154, 156, 165, 0.04), 0 4px 4px -4px rgba(30, 33, 44, 0.03)
}

.custom-checkbox__field:checked+.custom-checkbox__content::after {
  opacity: 1
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
  outline: red solid 2px;
  outline-offset: 2px
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
  opacity: .4;
  pointer-events: none
}

@font-face {
  font-family: Ubuntu;
  src: url(../fonts/UbuntuRegular.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal
}

@font-face {
  font-family: Ubuntu;
  src: url(../fonts/UbuntuBold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal
}

@font-face {
  font-family: Lato;
  src: url(../fonts/LatoBold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal
}

@font-face {
  font-family: Lato;
  src: url(../fonts/LatoBlack.woff2) format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal
}

html {
  box-sizing: border-box
}

*,
::after,
::before {
  box-sizing: inherit
}

body {
  margin: 0;
  font-family: Ubuntu, sans-serif;
  font-weight: 400
}

img {
  max-width: 100%
}

a {
  text-decoration: none
}

.site-container {
  overflow: hidden
}

.is-hidden {
  display: none !important
}

.btn-reset {
  border: none;
  padding: 0;
  background: 0 0;
  cursor: pointer
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0
}

.centered {
  width: 100%;
  text-align: center
}

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

.js-focus-visible :focus:not(.focus-visible) {
  outline: 0
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.main-title {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: 72px;
  line-height: 130%;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-ebony)
}

.main-title span {
  color: var(--color-primary)
}

.main-title--home {
  color: var(--color-light)
}

@media (max-width:768px) {
  .main-title {
    font-size: 60px;
    line-height: 75px
  }
}

@media (max-width:576px) {
  .main-title {
    font-size: 35px;
    line-height: 45px
  }
}

.dis-scroll {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%
}

.main-descr {
  margin: 0;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-storm)
}

.main-descr--home {
  margin-bottom: 60px;
  color: var(--color-light)
}

@media (max-width:576px) {
  .main-descr {
    font-size: 16px;
    line-height: 24px
  }
}

.btn {
  display: inline-block;
  border-radius: 4px;
  padding: 15px 39px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--color-light);
  transition: background-color .3s ease-in-out, border-color .3s ease-in-out;
  border: 1px solid transparent
}

.btn--fill {
  background-color: var(--color-primary)
}

.btn--fill:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.btn--fill:active,
.btn--fill:hover {
  background-color: var(--color-active)
}

.btn--stroke-light {
  border-color: var(--color-light);
  color: var(--color-light)
}

.btn--stroke-primary {
  border-color: var(--color-primary);
  color: var(--color-primary)
}

.btn--stroke:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.btn--stroke:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary)
}

.btn--stroke:active {
  border-color: var(--color-primary);
  background-color: var(--color-active)
}

.title {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: 46px;
  line-height: 130%;
  color: var(--color-ebony)
}

.title--center {
  text-align: center
}

@media (max-width:576px) {
  .title {
    font-size: 28px;
    line-height: 40px
  }
}

.descr {
  margin: 0 0 60px;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-storm)
}

.descr--center {
  text-align: center
}

.section-offset {
  padding-top: 120px
}

@media (max-width:768px) {
  .section-offset {
    padding-top: 60px
  }
}

@media (max-width:576px) {
  .descr {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 24px
  }

  .section-offset {
    padding-top: 40px
  }
}

.custom-checkbox__input {
  position: absolute;
  opacity: 0
}

.custom-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 27px;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-gray)
}

.custom-checkbox__text::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 1px;
  display: inline-block;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  width: 16px;
  height: 16px;
  transition: background-color .3s ease-in-out
}

.custom-checkbox__text::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 1px;
  width: 16px;
  height: 16px;
  background-image: url(../img/check.svg);
  background-position: center;
  background-size: 10px 8px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .3s ease-in-out
}

.custom-checkbox__input:checked+.custom-checkbox__text::before {
  background-color: var(--color-primary)
}

.custom-checkbox__input:checked+.custom-checkbox__text::after {
  opacity: 1
}

.custom-checkbox__input:focus+.custom-checkbox__text {
  outline: 3px solid var(--color-primary)
}

.custom-file {
  cursor: pointer
}

.custom-file__input {
  position: absolute;
  opacity: 0
}

.custom-file__text {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-size: 14px;
  line-height: 170%;
  color: var(--color-gray);
  background-image: url(../img/file-icon.svg);
  background-position: left center;
  background-size: 24px 24px;
  background-repeat: no-repeat
}

.custom-file__input:focus+.custom-file__text {
  outline: 3px solid var(--color-primary)
}

.custom-radio__input {
  position: absolute;
  opacity: 0
}

.custom-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 27px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.custom-radio__text::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 4px;
  display: inline-block;
  border: 1px solid #b3b7bc;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  transition: border-color .3s ease-in-out
}

.custom-radio__text::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url(../img/check-circle.svg);
  background-position: center;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .3s ease-in-out
}

.custom-radio__input:checked+.custom-radio__text::before {
  border-color: var(--color-primary)
}

.custom-radio__input:checked+.custom-radio__text::after {
  opacity: 1
}

.custom-radio__input:focus+.custom-radio__text {
  outline: 3px solid var(--color-primary)
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap)
}

.to-top {
  position: fixed;
  right: calc((100% - 1230px)/ 2);
  bottom: 80px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out
}

.to-top__text {
  margin-right: 16px;
  font-size: 14px;
  line-height: 150%;
  text-shadow: 3px 3px 11px #969696;
  text-transform: uppercase;
  color: var(--color-light)
}

.to-top__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  transition: background-color .3s ease-in-out
}

.to-top__icon svg {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
  object-fit: cover
}

.to-top__icon:hover {
  background-color: var(--color-active)
}

.to-top--active {
  opacity: 1;
  visibility: visible
}

@media (max-width:1440px) {
  .to-top {
    right: 20px;
    bottom: 20px
  }
}

.site-modal {
  border-radius: 4px;
  padding: 48px;
  width: 486px
}

.site-modal .modal__close {
  right: 24px;
  top: 24px;
  width: 24px;
  height: 24px;
  background-image: url(../img/close-modal.svg)
}

.site-modal__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  color: var(--color-ebony)
}

.site-modal__field {
  margin-bottom: 20px
}

.site-modal__btn {
  margin-top: 20px;
  width: 100%
}

.site-modal .choices {
  width: 100%
}

.site-modal .is-focused {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.site-modal .choices__inner {
  margin: 0;
  border: 1px solid #d7dadd;
  border-radius: 4px;
  padding: 0;
  height: 52px;
  background-color: var(--color-athens)
}

.site-modal .choices__list--single .choices__placeholder {
  font-size: 16px;
  line-height: 160%;
  color: #9a9ca5;
  opacity: 1
}

.site-modal .choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0
}

.site-modal .choices__list--single {
  display: flex;
  align-items: center;
  padding-left: 15px;
  height: 100%
}

.site-modal .choices[data-type*=select-one]:after {
  right: 19px;
  margin-top: 0;
  border: none;
  width: 14px;
  height: 7px;
  background-image: url(../img/angle-down.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: transform .3s ease-in-out
}

.site-modal .choices[data-type*=select-one].is-open:after {
  margin-top: -7px;
  transform: rotate(180deg) translateY(-50%)
}

.site-modal .choices__list--dropdown .choices__item--selectable:after {
  display: none
}

.site-modal .choices__list--dropdown {
  background-color: var(--color-athens)
}

.burger {
  --burger-width: 40px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: absolute;
  right: 15px;
  top: 23px;
  z-index: 1000;
  display: none;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer
}

@media (max-width:1024px) {
  .burger {
    display: block
  }
}

.burger::after,
.burger::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  transition: transform .3s ease-in-out, top .3s ease-in-out
}

.burger::before {
  top: 0
}

.burger::after {
  top: calc(100% - var(--burger-line-height))
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  transform: translateY(-50%);
  transition: transform .3s ease-in-out
}

.burger--active::before {
  top: 50%;
  transform: rotate(45deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out
}

.burger--active::after {
  top: 50%;
  transform: rotate(-45deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out
}

.burger--active .burger__line {
  transform: scale(0);
  transition: transform .3s ease-in-out
}

.burger:focus::after {
  opacity: 1
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 500;
  background-color: rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out
}

.overlay--active {
  opacity: 1;
  visibility: visible
}

@media (max-width:576px) {
  .grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .modal::before {
    display: none
  }

  .site-modal {
    padding: 40px 20px 20px;
    width: 90%
  }
}

.slider-nav {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 15;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.slider-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  color: var(--color-gray);
  transition: background-color .3s ease-in-out, color .3s ease-in-out
}

.slider-nav__btn svg {
  display: block;
  width: 24px;
  height: 24px;
  color: inherit;
  fill: currentColor;
  -o-object-fit: cover;
  object-fit: cover
}

.slider-nav__btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.slider-nav__btn:hover {
  color: var(--color-light);
  background-color: var(--color-primary)
}

.slider-nav__btn:active {
  color: var(--color-light);
  background-color: var(--color-active)
}

.slider-nav__btn.swiper-button-disabled {
  opacity: .4;
  pointer-events: none
}

.form-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.form-field__caption {
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-gray)
}

.form-field__input {
  border: 1px solid #d7dadd;
  border-radius: 4px;
  padding-left: 15px;
  width: 260px;
  height: 44px;
  font-size: 14px;
  line-height: 150%
}

.form-field__input::-moz-placeholder {
  color: #9a9ca5
}

.form-field__input:-ms-input-placeholder {
  color: #9a9ca5
}

.form-field__input::placeholder {
  color: #9a9ca5
}

.form-field__input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.form-field__input--big {
  padding-top: 10px;
  height: 66px;
  resize: none
}

.form-field--big {
  flex-grow: 1
}

.form-field--big .form-field__input,
.form-field--gray {
  width: 100%
}

.form-field--gray .form-field__input {
  width: 100%;
  background-color: var(--color-athens)
}

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

.social__item:not(:last-child) {
  margin-right: 16px
}

.social__link {
  display: block;
  width: 24px;
  height: 24px
}

.social__link svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--color-light);
  -o-object-fit: cover;
  object-fit: cover;
  opacity: .6;
  transition: opacity .3s ease-in-out
}

.social__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.social__link:active svg,
.social__link:hover svg {
  opacity: 1
}

.header {
  padding-top: 23px;
  padding-bottom: 21px
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header__nav {
  margin-left: -112px
}

@media (max-width:1024px) {
  .header__nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    display: block;
    overflow-y: auto;
    padding: 50px;
    width: 80%;
    height: 100vh;
    background-color: var(--color-light);
    transform: translateX(-150%);
    transition: transform .3s ease-in-out
  }

  .header__nav--active {
    transform: none
  }
}

.header--main {
  background-color: var(--color-light)
}

.header--secondary {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%
}

@media (max-width:1200px) {
  .header__nav {
    margin-left: 0
  }

  .logo {
    max-width: 100px
  }
}

@media (max-width:1024px) {
  .logo {
    max-width: none
  }

  .mission__list {
    --mission-gap: 30px
  }
}

.logo:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.hero__content {
  max-width: 590px
}

.hero__next {
  position: absolute;
  right: 32px;
  top: 50%;
  z-index: 30;
  background-color: var(--color-light);
  transform: translateY(-50%)
}

.hero__prev {
  position: absolute;
  left: 32px;
  top: 50%;
  z-index: 30;
  background-color: var(--color-light);
  transform: translateY(-50%)
}

@media (max-width:1440px) {

  .hero__next,
  .hero__prev {
    display: none
  }
}

.hero__pag {
  counter-reset: pag;
  left: calc((100% - 1260px)/ 2) !important;
  bottom: 120px !important;
  display: flex
}

.hero__pag .swiper-pagination-bullet {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  width: 178px;
  height: auto;
  text-align: left;
  background-color: transparent;
  opacity: 1
}

.hero__pag .swiper-pagination-bullet::before {
  counter-increment: pag;
  content: "0" counter(pag);
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: rgba(255, 255, 255, .3);
  transition: color .3s ease-in-out
}

.hero__pag .swiper-pagination-bullet::after {
  display: none
}

@media (max-width:1440px) {
  .hero__pag {
    left: 3% !important
  }
}

@media (max-width:768px) {
  .hero__pag .swiper-pagination-bullet {
    width: 25%
  }

  .hero__pag {
    bottom: 50px !important;
    width: calc(100% - 30px) !important
  }
}

.hero__bar {
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, .3)
}

.hero__bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-light);
  transform: scaleX(0);
  transform-origin: left
}

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

@media (max-width:576px) {
  .header__nav {
    padding: 20px
  }

  .hero__pag {
    display: none
  }

  .hero__btns .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px
  }
}

.swiper-pagination-bullet-active::before {
  color: var(--color-light) !important
}

.swiper-pagination-bullet-active .hero__bar::after {
  transform: scaleX(1);
  transition: transform var(--hero-slider-speed) ease-in-out
}

.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%
}

.hero-slide {
  padding-top: 220px;
  padding-bottom: 354px;
  background-image: url(../img/hero-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-gray)
}

@media (max-width:768px) {
  .hero-slide {
    padding-top: 200px;
    padding-bottom: 200px
  }

  .mission__list {
    --mission-gap: 10px
  }
}

@media (max-width:576px) {
  .hero-slide {
    padding: 100px 0
  }
}

.about-section {
  padding-bottom: 60px;
  background-color: var(--color-light)
}

.mission {
  background-color: var(--color-light)
}

.mission__list {
  --mission-gap: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 27px;
  gap: calc(var(--mission-gap) * 2)
}

.mission__item {
  position: relative;
  padding-top: 71px;
  text-align: center;
  background-position: top center;
  background-size: 48px 48px;
  background-repeat: no-repeat
}

.mission__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--mission-gap));
  top: 0;
  width: 1px;
  height: 100%;
  background-image: url(../img/divider.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.mission__item--quality {
  background-image: url(../img/quality.svg)
}

.mission__item--safety {
  background-image: url(../img/safety.svg)
}

.mission__item--comfort {
  background-image: url(../img/comfort.svg)
}

.mission__subtitle {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.mission__descr {
  margin: 0;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

.services-section {
  padding-top: 212px;
  padding-bottom: 80px;
  background-image: url(../img/services-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.services-section__list {
  margin-bottom: 80px
}

.services-list__item {
  grid-column: 3 span
}

@media (max-width:1024px) {
  .services-list__item {
    grid-column: 6 span
  }
}

@media (max-width:576px) {
  .mission__list {
    display: block
  }

  .mission__item:not(:last-child) {
    margin-bottom: 30px
  }

  .services-section {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .services-list__item {
    grid-column: 4 span
  }

  .services-list {
    grid-template-columns: repeat(4, 1fr)
  }
}

.services-item {
  position: relative;
  display: block;
  border: 1px solid #e5e8ed;
  border-radius: 4px;
  padding: 87px 10px 90px;
  box-shadow: var(--main-shadow);
  background: var(--color-light)
}

.services-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  border-radius: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-ebony);
  opacity: 0;
  transition: opacity .3s ease-in-out
}

.services-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  border-radius: inherit;
  background-color: rgba(30, 33, 44, .6);
  opacity: 0;
  transition: opacity .3s ease-in-out
}

.services-item:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.services-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10
}

.services-item__icon {
  margin-bottom: 23px;
  width: 52px;
  height: 52px;
  fill: var(--color-primary);
  -o-object-fit: cover;
  object-fit: cover;
  transition: fill .3s ease-in-out
}

.services-item__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: var(--color-ebony);
  transition: color .3s ease-in-out
}

@media (max-width:1200px) {
  .hero__pag {
    left: 15px !important
  }

  .services-item__title {
    font-size: 18px
  }
}

.services-item--construct::before {
  background-image: url(../img/services-1.jpg)
}

.services-item:hover::after,
.services-item:hover::before {
  opacity: 1
}

.services-item:hover .services-item__icon {
  fill: var(--color-light)
}

.services-item:hover .services-item__title {
  color: var(--color-light)
}

.portfolio-section {
  padding: 120px 0;
  background-color: var(--color-light)
}

.portfolio-section__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px
}

.portfolio-section__slider-nav {
  transform: translateX(12px)
}

.portfolio-section__title {
  margin: 0;
  padding-bottom: 12px;
  max-width: 710px
}

@media (max-width:1024px) {
  .portfolio-section__title {
    margin-bottom: 15px;
    padding-bottom: 0;
    font-size: 40px;
    line-height: 55px
  }
}

.portfolio-section__learn {
  margin-top: 80px
}

.portfolio-section__items {
  margin: -100px;
  padding: 100px
}

.portfolio-section__items .swiper-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out
}

.portfolio-section__items .slider-visible {
  opacity: 1;
  visibility: visible
}

@media (max-width:576px) {
  .portfolio-section__top {
    display: block
  }

  .portfolio-section__slider-nav {
    transform: none
  }

  .portfolio-section__title {
    max-width: none;
    font-size: 28px;
    line-height: 40px
  }

  .portfolio-section {
    padding: 40px 0
  }
}

.partners {
  padding: 80px 0;
  background-color: var(--color-athens)
}

.partners__title {
  margin-bottom: 60px
}

.partners__list {
  display: grid;
  -moz-column-gap: 102px;
  column-gap: 102px;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 40px
}

.partners__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.partners--about {
  padding: 120px 0;
  background-color: var(--color-light)
}

.partners--about .partners__title {
  margin-bottom: 25px
}

.testimonials {
  padding-top: 97px;
  background-color: var(--color-athens)
}

.testimonials__content {
  max-width: 612px
}

@media (max-width:1024px) {
  .testimonials__content {
    max-width: 450px
  }
}

@media (max-width:576px) {
  .testimonials__content {
    width: 100%;
    max-width: none
  }
}

.testimonials__image {
  position: relative;
  z-index: 5;
  margin-bottom: -60px
}

@media (max-width:1200px) {
  .partners__list {
    -moz-column-gap: 30px;
    column-gap: 30px
  }

  .partners__item {
    display: flex;
    justify-content: center;
    grid-column: 3 span
  }

  .testimonials__image {
    width: 380px;
    -o-object-fit: cover;
    object-fit: cover
  }
}

@media (max-width:1024px) {
  .testimonials__image {
    width: 300px
  }
}

@media (max-width:768px) {
  .testimonials__image {
    display: none
  }
}

.testimonials__title {
  margin-bottom: 60px
}

.testimonials__items {
  position: relative;
  padding-bottom: 12px
}

.testimonials__slider-nav {
  position: absolute;
  right: 0;
  bottom: 0
}

.testimonials__container {
  display: flex;
  justify-content: space-between
}

@media (max-width:768px) {
  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px
  }
}

.testimonials-item__image {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 100%;
  width: 72px;
  height: 72px
}

.testimonials-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.testimonials-item__descr {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.testimonials-item__author {
  display: block;
  margin-bottom: 4px;
  padding-right: 110px;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-ebony)
}

.testimonials-item__author-position {
  display: block;
  padding-right: 110px;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-storm)
}

.facts {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
  background-color: var(--color-light)
}

.facts::before {
  content: "";
  position: absolute;
  left: -9px;
  top: -195px;
  width: 570px;
  height: 1065px;
  background-image: url(../img/facts-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.facts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 736px;
  gap: 48px
}

.facts__title {
  margin-bottom: 62px
}

@media (max-width:576px) {
  .facts__list {
    display: block
  }

  .facts__item:not(:last-child) {
    margin-bottom: 30px
  }

  .facts__title {
    margin-bottom: 25px
  }

  .facts {
    padding: 40px 0
  }
}

.facts-element__circle {
  --progress-stroke: #000;
  --progress-bg-opacity: 0.3;
  position: relative;
  margin-bottom: 20px;
  width: 148px;
  height: 148px
}

.facts-element__circle svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0
}

.facts-element__circle .progress {
  stroke: var(--progress-stroke);
  transform: rotate(-90deg) translateX(20px);
  transform-origin: center
}

.facts-element__circle .progress-bg {
  stroke: var(--progress-stroke);
  opacity: var(--progress-bg-opacity)
}

.facts-element__circle--one-color {
  --progress-stroke: #f89828
}

.facts-element__circle--two-color {
  --progress-stroke: #f52f6e
}

.facts-element__circle--three-color {
  --progress-stroke: #5a87fc
}

.facts-element__circle--four-color {
  --progress-stroke: #03cea4
}

.facts-element__value {
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: var(--color-ebony);
  transform: translate(-50%, -50%)
}

.facts-element__text {
  display: block;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--color-ebony)
}

@media (max-width:768px) {
  .facts__list {
    grid-template-columns: repeat(2, 1fr)
  }

  .facts-element {
    display: flex;
    flex-direction: column;
    align-items: center
  }
}

.recent-news {
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: var(--color-light)
}

.recent-news__title {
  margin-bottom: 60px
}

.recent-news__list {
  grid-template-rows: repeat(2, 255px);
  margin-bottom: 80px
}

.recent-news__item {
  grid-column: 5 span
}

.recent-news__item:first-child {
  grid-column: 7 span;
  grid-row: 2 span
}

@media (max-width:1024px) {
  .recent-news__list {
    grid-template-rows: initial
  }

  .recent-news__item:first-child {
    grid-column: 12 span;
    grid-row: auto
  }

  .recent-news__item {
    grid-column: 12 span
  }
}

.contacts-section {
  padding-top: 80px;
  padding-bottom: 77px;
  background-image: url(../img/contacts-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-ebony)
}

.contacts-section__form {
  background-color: var(--color-light)
}

.contacts-section__container {
  display: flex;
  justify-content: flex-end
}

.contacts-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #e5e8ed;
  border-radius: 4px;
  padding: 48px 40px;
  max-width: 495px;
  box-shadow: 0 60px 80px -20px rgba(30, 33, 44, .16), 0 26px 24px -10px rgba(30, 33, 44, .1), 0 12px 10px -6px rgba(30, 33, 44, .08), 0 4px 4px -4px rgba(30, 33, 44, .05)
}

.contacts-form__title {
  margin: 0 0 24px;
  width: 100%;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  color: var(--color-ebony)
}

.contacts-form__field {
  margin-bottom: 21px
}

.contacts-form__checkbox {
  margin-bottom: 22px
}

.contacts-form__btn {
  padding: 12px 31px;
  font-size: 14px;
  letter-spacing: .5px
}

@media (max-width:576px) {

  .recent-news__item,
  .recent-news__item:first-child {
    grid-column: 4 span
  }

  .contacts-form {
    padding: 15px
  }
}

.footer {
  padding: 80px 0;
  color: rgba(255, 255, 255, .6);
  background-color: var(--color-ebony)
}

.footer__left {
  grid-column: 7 span
}

.footer__logo {
  margin-right: 60px
}

@media (max-width:576px) {
  .footer__left {
    grid-column: 4 span
  }

  .footer__logo {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 30px
  }
}

.footer__top {
  display: flex;
  align-items: center;
  margin-bottom: 22px
}

.footer__descr {
  margin: 0;
  width: 100%;
  max-width: 495px;
  font-size: 14px;
  line-height: 150%
}

.footer__form {
  grid-column: 5 span
}

@media (max-width:768px) {
  .footer__form {
    grid-column: 12 span
  }
}

@media (max-width:576px) {
  .footer__top {
    display: block
  }

  .footer__form {
    grid-column: 4 span
  }
}

.footer__address {
  grid-column: 4 span
}

.footer__nav {
  grid-column: 8 span
}

@media (max-width:576px) {
  .footer__nav {
    grid-column: 4 span
  }
}

.footer__copyright {
  grid-column: 12 span;
  padding-top: 30px;
  font-size: 12px;
  line-height: 150%;
  color: var(--color-light)
}

.footer__copyright span {
  padding-left: 22px;
  background-image: url(../img/heart.svg);
  background-position: 2px center;
  background-size: 16px 16px;
  background-repeat: no-repeat
}

.footer-form__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: var(--color-light)
}

.footer-form__items {
  display: flex;
  align-items: center;
  margin-bottom: 15px
}

.footer-form .form-field {
  margin: 0;
  width: 364px
}

.footer-form .form-field__input {
  border: 1px solid rgba(255, 255, 255, .2);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: rgba(255, 255, 255, .12)
}

.footer-form__btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 11px 19px;
  letter-spacing: normal
}

.footer-form__descr {
  margin: 0;
  font-size: 12px;
  line-height: 150%
}

.footer-title {
  margin: 0 0 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-light)
}

.footer-address {
  padding-top: 20px;
  font-style: normal
}

.footer-address__item {
  display: block;
  font-size: 16px;
  line-height: 160%
}

.footer-address__item:not(:last-child) {
  margin-bottom: 4px
}

.footer-address__item a {
  color: inherit;
  transition: color .3s ease-in-out
}

.footer-address__item a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.footer-address__item a:active,
.footer-address__item a:hover,
.footer-address__name {
  color: var(--color-light)
}

.footer-nav {
  display: flex;
  padding-top: 20px;
  padding-left: 54px
}

.footer-nav__col:not(:last-child) {
  margin-right: 125px
}

@media (max-width:768px) {
  .footer-nav__col:not(:last-child) {
    margin-right: 65px
  }

  .footer-nav {
    padding-left: 24px
  }
}

.footer-nav__item:not(:last-child) {
  margin-bottom: 4px
}

.footer-nav__link {
  font-size: 16px;
  line-height: 160%;
  color: inherit;
  transition: color .3s ease-in-out
}

.footer-nav__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.footer-nav__link:active,
.footer-nav__link:hover {
  color: var(--color-light)
}

.page-hero {
  padding-top: 153px;
  padding-bottom: 80px;
  min-height: 600px;
  background-position: right -8px top;
  background-repeat: no-repeat;
  background-color: var(--color-athens)
}

.page-hero__breadcrumbs {
  margin-bottom: 40px
}

.page-hero__title {
  margin: 0 0 24px;
  max-width: 600px;
  font-weight: 700;
  font-size: 72px;
  line-height: 130%;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-ebony)
}

.page-hero__title--small {
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 1px;
  text-transform: initial
}

.page-hero__title--mb {
  margin-bottom: 60px
}

@media (max-width:576px) {
  .footer__copyright {
    grid-column: 4 span
  }

  .footer-nav__col:not(:last-child) {
    margin-right: 35px
  }

  .footer-nav {
    padding-left: 0
  }

  .page-hero__title {
    font-size: 40px;
    line-height: 54px
  }
}

.page-hero__descr {
  margin: 0;
  max-width: 600px;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-storm)
}

.page-hero__bottom {
  display: flex;
  justify-content: space-between
}

.page-hero__meta .article-meta__item {
  font-size: 16px;
  line-height: 160%
}

.page-hero__meta a.article-meta__item {
  font-weight: 700;
  color: var(--color-primary)
}

.page-hero__meta time.article-meta__item {
  padding-left: 28px;
  background-image: url(../img/time.svg);
  background-position: left center;
  background-size: 20px 20px;
  background-repeat: no-repeat
}

.page-hero__meta .article-meta__item--comments {
  background-size: 20px 20px
}

.page-hero__meta .article-meta__item:not(:last-child)::after {
  right: -17px;
  height: 16px
}

.page-hero__meta .article-meta__item:not(:last-child) {
  margin-right: 25px
}

.page-hero__social svg {
  fill: var(--color-storm);
  opacity: 1
}

.page-hero--services {
  background-image: url(../img/services-hero-bg.png)
}

.page-hero--services-inner {
  background-image: url(../img/services-inner-hero-bg.png)
}

.page-hero--work {
  background-image: url(../img/work-hero-bg.png)
}

.page-hero--work-inner {
  background-image: url(../img/work-inner-hero-bg.png);
  background-position: right -8px top 48px;
  background-color: var(--color-light)
}

.page-hero--about {
  background-image: url(../img/about-hero-bg.png)
}

.page-hero--positions {
  background-image: url(../img/positions-hero-bg.png);
  background-position: right -9px bottom
}

.page-hero--news {
  background-image: url(../img/news-hero-bg.png);
  background-position: right -9px bottom
}

.page-hero--post .page-hero__title {
  margin-bottom: 48px;
  max-width: none;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 1px;
  text-transform: initial
}

@media (max-width:768px) {
  .page-hero--post .page-hero__title {
    font-size: 45px;
    line-height: 58px
  }

  .services-benefits__list {
    --mission-gap: 10px
  }
}

@media (max-width:576px) {
  .page-hero__descr {
    font-size: 16px;
    line-height: 24px
  }

  .page-hero__bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .page-hero__meta {
    margin-bottom: 20px
  }

  .page-hero--post .page-hero__title {
    font-size: 35px;
    line-height: 48px
  }
}

@media (max-width:1200px) {
  .page-hero--post {
    margin-bottom: 30px
  }
}

.page-hero--contacts {
  background-image: url(../img/contacts-hero-bg.png);
  background-position: right -9px bottom
}

.services {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 180px;
  background-color: var(--color-light)
}

.services-decorate-1 {
  position: absolute;
  left: -6px;
  bottom: -248px
}

.services-decorate-2 {
  position: absolute;
  right: -8px;
  top: 50%;
  margin-top: -134px;
  transform: translateY(-50%)
}

.services__list {
  position: relative;
  z-index: 5
}

.services__item {
  align-items: center
}

.services__item:not(:last-child) {
  margin-bottom: 118px
}

.services__item--reverse .services__info {
  order: -1;
  padding-left: 0
}

.services__item--reverse .services__image {
  display: flex;
  justify-content: flex-end
}

.services__image {
  grid-column: 6 span
}

.services__info {
  grid-column: 6 span;
  padding: 20px 25px
}

.services__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: var(--color-ebony)
}

.services__descr {
  margin: 0 0 50px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

.services__link {
  padding: 11px 27px;
  letter-spacing: normal
}

.we-offer {
  padding: 120px 0;
  background-color: var(--color-light)
}

.we-offer__image {
  grid-column: 7 span
}

.we-offer__content {
  grid-column: 5 span;
  padding-top: 5px;
  padding-left: 75px
}

@media (max-width:1024px) {
  .page-hero {
    min-height: auto;
    background-image: none
  }

  .we-offer__container {
    display: block
  }

  .we-offer__content {
    padding: 30px 0 0
  }
}

.we-offer__title {
  margin-bottom: 55px;
  font-family: Lato, sans-serif;
  font-weight: 900;
  font-size: 46px;
  line-height: 130%
}

.we-offer__accordion:not(:last-of-type) {
  margin-bottom: 13px
}

.we-offer__accordion .accordion__control {
  position: relative;
  padding-right: 20px;
  padding-left: 44px;
  text-align: left
}

.we-offer__accordion .accordion__control:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.we-offer__accordion .accordion__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: var(--color-ebony)
}

.we-offer__accordion .accordion__content {
  padding: 13px 20px 13px 44px
}

.we-offer__accordion .accordion__content p {
  margin: 0;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

.we-offer__accordion .accordion__icon {
  position: absolute;
  left: 1px;
  top: 10px;
  display: block;
  width: 22px;
  height: 22px
}

.we-offer__accordion .accordion__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 100px;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: translateY(-50%)
}

.we-offer__accordion .accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 100px;
  width: 2px;
  height: 100%;
  background-color: var(--color-primary);
  transform: translateX(-50%);
  transition: opacity .3s ease-in-out
}

.we-offer .is-open .accordion__icon {
  transform: none
}

.we-offer .is-open .accordion__icon::after {
  opacity: 0
}

.how-we-do {
  padding-top: 45px;
  padding-bottom: 120px
}

.how-we-do__title {
  margin-bottom: 60px
}

.how-we-do__list {
  counter-reset: section
}

.how-we-do__item {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: 3 span
}

.how-we-do__item::before {
  counter-increment: section;
  content: "0" counter(section);
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 46px;
  line-height: 130%;
  color: #d7dadd
}

.how-we-do__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  width: 75%;
  height: 1px;
  background-image: url(../img/how-we-do-line.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.how-we-do__subtitle {
  margin: 0 0 9px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.how-we-do__descr {
  margin: 0;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

.services-benefits {
  padding-top: 80px;
  background-color: var(--color-ebony)
}

.services-benefits__title {
  color: var(--color-light)
}

.services-benefits__btn {
  width: 390px;
  transform: translateY(13px)
}

.services-benefits__centered {
  margin-bottom: -13px
}

.services-benefits__description {
  font-size: 18px;
  line-height: 150%
}

.services-benefits__list {
  --mission-gap: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 27px;
  gap: calc(var(--mission-gap) * 2)
}

.services-benefits__item {
  position: relative;
  padding-top: 71px;
  text-align: center;
  background-position: top center;
  background-size: 48px 48px;
  background-repeat: no-repeat
}

.services-benefits__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--mission-gap));
  top: 0;
  width: 1px;
  height: 100%;
  background-image: url(../img/divider.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.services-benefits__item--terms {
  background-image: url(../img/terms.svg)
}

.services-benefits__item--workers {
  background-image: url(../img/workers.svg)
}

.services-benefits__item--control {
  background-image: url(../img/control.svg)
}

@media (max-width:576px) {
  .services__item--reverse .services__info {
    order: initial
  }

  .services-benefits__list {
    display: block
  }

  .services-benefits__item:not(:last-child) {
    margin-bottom: 30px
  }
}

.services-benefits__subtitle {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-light)
}

.services-benefits__descr {
  margin: 0 0 60px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

.related-projects {
  padding-top: 180px;
  padding-bottom: 100px;
  background-color: var(--color-light)
}

.related-projects__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px
}

.related-projects__slider-nav {
  transform: translateX(12px)
}

@media (max-width:576px) {
  .related-projects__top {
    display: block;
    margin-bottom: 25px
  }

  .related-projects__slider-nav {
    transform: none
  }
}

.related-projects__title {
  margin: 0;
  padding-bottom: 12px;
  max-width: 710px
}

.related-projects__learn {
  margin-top: 80px
}

.related-projects__items {
  margin: -100px;
  padding: 100px
}

.related-projects__items .swiper-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out
}

.related-projects__items .slider-visible {
  opacity: 1;
  visibility: visible
}

.related-projects-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 80px 80px -20px rgba(154, 156, 165, .08), 0 30px 24px -10px rgba(154, 156, 165, .05), 0 12px 10px -6px rgba(154, 156, 165, .04), 0 4px 4px -4px rgba(30, 33, 44, .03);
  background: var(--color-light)
}

.related-projects-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px 23px
}

.related-projects-item__title {
  margin: 0 0 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.related-projects-item__descr {
  display: inline-block;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-storm)
}

.related-projects-item__btn {
  display: none;
  margin-top: 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 13px 31px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--color-primary)
}

.pricing {
  position: relative;
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #f4f5f7
}

.pricing__decorate {
  position: absolute;
  left: -8px;
  top: 0
}

.pricing__descr {
  margin-bottom: 60px
}

.table-wrapper {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 1px solid #e5e8ed;
  border-collapse: collapse;
  border-radius: 4px;
  width: 100%;
  box-shadow: var(--main-shadow);
  background-color: var(--color-light)
}

@media (max-width:768px) {
  .services-benefits__item:not(:last-child)::after {
    display: none
  }

  .related-projects__items .portfolio-item__title {
    min-height: 52px
  }

  .table-wrapper {
    overflow-x: auto
  }
}

.table {
  border-collapse: collapse;
  width: 100%
}

.table__heading {
  margin-bottom: 2px;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-ebony)
}

.table__per {
  font-weight: 800;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--color-storm)
}

.table__th {
  padding-top: 31px;
  padding-right: 20px;
  padding-bottom: 24px
}

.table__th:first-child {
  vertical-align: bottom;
  padding-left: 24px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-align: left;
  color: var(--color-ebony)
}

.table__body .table__row:nth-child(odd) {
  background-color: #f4f5f7
}

.table__body .table__row:last-child .table__col {
  padding-top: 30px;
  padding-bottom: 30px
}

.table__col {
  vertical-align: middle;
  padding: 16px 10px 16px 0;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: var(--color-gray)
}

.table__col .btn {
  padding: 0 20px;
  font-weight: 700;
  font-size: 12px;
  line-height: 36px;
  letter-spacing: .5px;
  text-transform: uppercase
}

.table__col .btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

@media (max-width:1024px) {
  .how-we-do__item:not(:last-child)::after {
    display: none
  }

  .how-we-do__item {
    grid-column: 6 span
  }

  .services-benefits__list {
    --mission-gap: 30px
  }

  .table__col .btn {
    padding: 0 10px
  }

  .desicions .grid {
    display: block
  }
}

.table__col:first-child {
  padding-left: 24px;
  text-align: left
}

.table__check {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  font-size: 0;
  background-image: url(../img/table-check.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.table__text {
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: var(--color-gray)
}

@media (max-width:768px) {
  .table {
    width: 1200px
  }
}

.portfolio {
  position: relative;
  padding-bottom: 98px
}

.portfolio-tabs-nav {
  --gap: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 61px;
  transform: translateY(-60px)
}

.portfolio-tabs-nav__item {
  width: calc((100% - var(--gap) * 4)/ 5)
}

.portfolio-tabs-nav__item:not(:last-child) {
  margin-right: var(--gap)
}

@media (max-width:768px) {
  .portfolio-tabs-nav__item {
    margin-bottom: 20px;
    width: calc((100% - var(--gap) * 2)/ 3)
  }
}

@media (max-width:576px) {
  .portfolio-tabs-nav__item {
    margin-right: 0 !important;
    width: 100%
  }
}

.portfolio-tabs-nav__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 15px;
  width: 100%;
  min-height: 154px;
  box-shadow: var(--main-shadow);
  color: var(--color-primary);
  background-color: var(--color-light);
  transition: color .3s ease-in-out, background-color .3s ease-in-out
}

.portfolio-tabs-nav__btn--active {
  color: var(--color-light);
  background-color: var(--color-primary);
  pointer-events: none
}

.portfolio-tabs-nav__btn--active .portfolio-tabs-nav__text {
  color: var(--color-light)
}

.portfolio-tabs-nav__icon {
  display: block;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  color: inherit;
  fill: currentColor;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none
}

.portfolio-tabs-nav__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: #9a9ca5;
  transition: color .3s ease-in-out;
  pointer-events: none
}

@media (max-width:768px) {
  .portfolio-tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    transform: none
  }

  .project-goal .grid {
    display: block
  }
}

.portfolio-tabs__item {
  display: none;
  grid-column: 4 span
}

.portfolio-tabs__item--visible {
  display: block
}

.portfolio-tabs__item--visible-more {
  display: block !important
}

.portfolio-more {
  display: inline-flex;
  align-items: center;
  margin-top: 60px;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray);
  transition: color .3s ease-in-out
}

.portfolio-more svg {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  color: inherit;
  fill: currentColor;
  -o-object-fit: cover;
  object-fit: cover
}

.portfolio-more:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.portfolio-more:hover {
  color: var(--color-primary);
  color: var(--color-active)
}

.portfolio-tabs-nav__btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.portfolio-tabs-nav__btn:hover .portfolio-tabs-nav__text {
  color: var(--color-ebony)
}

.clients {
  padding-top: 160px;
  padding-bottom: 120px;
  background-color: var(--color-light)
}

.clients__title {
  margin-bottom: 60px
}

.clients__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 102px
}

.project-goal {
  padding-top: 30px;
  padding-bottom: 120px
}

.project-goal__left {
  grid-column: 6 span;
  padding-top: 24px
}

.project-goal__right {
  display: flex;
  justify-content: flex-end;
  grid-column: 6 span
}

@media (max-width:768px) {
  .project-goal__right {
    justify-content: flex-start
  }
}

.project-goal__title {
  margin-bottom: 41px
}

.project-goal__descr {
  margin: 0 0 27px;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-gray)
}

.project-info {
  border-radius: 4px;
  padding: 25px 40px 25px 60px;
  width: 495px;
  min-height: 300px;
  box-shadow: var(--main-shadow);
  background-color: var(--color-light)
}

.project-info__item {
  display: flex
}

.project-info__item:not(:last-child) {
  margin-bottom: 17px
}

.project-info__category {
  flex-shrink: 0;
  width: 130px;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: var(--color-ebony)
}

.project-info__value {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

@media (max-width:768px) {
  .project-info {
    width: 100%
  }

  .about-mission__list {
    --about-mission-gap: 10px
  }
}

@media (max-width:576px) {
  .project-info {
    padding: 10px 0
  }
}

.desicions {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f4f5f7
}

.desicions__left {
  grid-column: 5 span
}

.desicions__left img {
  margin-bottom: -142px
}

.desicions__right {
  grid-column: 7 span;
  padding-left: 104px
}

@media (max-width:1024px) {
  .desicions__left img {
    margin-bottom: 0
  }

  .desicions__right {
    padding-top: 30px;
    padding-left: 0
  }
}

.desicions__title {
  margin-bottom: 62px
}

.desicions__item {
  position: relative;
  padding-left: 37px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.desicions__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url(../img/desicions-check.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.desicions__item:not(:last-child) {
  margin-bottom: 20px
}

.achieve {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url(../img/achieve-bg.png);
  background-position: right bottom -350px;
  background-repeat: no-repeat;
  background-color: var(--color-light)
}

.achieve__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: 3 span;
  padding-top: 70px;
  background-position: top center;
  background-size: 48px 48px;
  background-repeat: no-repeat
}

.achieve__item--reccom {
  background-image: url(../img/like.svg)
}

.achieve__item--renov {
  background-image: url(../img/paint.svg)
}

.achieve__item--spec {
  background-image: url(../img/helmet.svg)
}

.achieve__item--finish {
  background-image: url(../img/pant.svg)
}

.achieve__value {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 46px;
  line-height: 130%;
  color: var(--color-primary)
}

@media (max-width:1200px) {
  .achieve__image {
    max-width: 45%
  }

  .achieve__value {
    font-size: 36px;
    line-height: 54px
  }
}

.achieve__text {
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--color-ebony)
}

.achieve__list {
  margin-bottom: 260px
}

.achieve__content {
  display: flex;
  align-items: flex-start
}

.achieve__info {
  position: relative;
  left: -30px;
  top: -130px;
  z-index: 10;
  flex-shrink: 0;
  border-radius: 4px;
  padding: 80px 40px 60px 82px;
  width: 735px;
  box-shadow: var(--main-shadow);
  background: var(--color-light)
}

@media (max-width:1200px) {
  .achieve__info {
    left: 0;
    top: 0;
    width: 55%
  }
}

@media (max-width:1024px) {
  .achieve__item {
    grid-column: 6 span
  }

  .achieve__image {
    max-width: 100%
  }

  .achieve__content {
    display: block
  }

  .achieve__info {
    width: 100%
  }

  .about-mission__list {
    --about-mission-gap: 30px
  }
}

@media (max-width:576px) {
  .achieve__info {
    padding: 15px
  }
}

.quote {
  margin: 0
}

.quote__content {
  position: relative;
  margin-bottom: 32px;
  padding: 9px 53px
}

.quote__content::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 28px;
  height: 20px;
  background-image: url(../img/braces.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.quote__content p {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.quote__content p:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:576px) {
  .quote__content::before {
    left: 0
  }

  .quote__content {
    padding: 40px 0 20px
  }
}

.quote__footer {
  padding: 20px 53px;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-storm);
  background-image: url(../img/signature.svg);
  background-position: right 65px center;
  background-size: 100px 68px;
  background-repeat: no-repeat
}

@media (max-width:576px) {
  .quote__footer {
    padding-bottom: 120px;
    background-position: bottom 30px center
  }
}

.quote__author {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-ebony)
}

.about-mission {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f4f5f7
}

.about-mission__list {
  --about-mission-gap: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--about-mission-gap) * 2)
}

.about-mission__item {
  position: relative;
  padding-top: 71px;
  text-align: center;
  background-position: top center;
  background-size: 48px 48px;
  background-repeat: no-repeat
}

.about-mission__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--about-mission-gap));
  top: 0;
  width: 1px;
  height: 100%;
  background-image: url(../img/divider.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.about-mission__item--quality {
  background-image: url(../img/quality.svg)
}

.about-mission__item--safety {
  background-image: url(../img/safety.svg)
}

.about-mission__item--comfort {
  background-image: url(../img/comfort.svg)
}

@media (max-width:576px) {
  .about-mission__list {
    display: block
  }

  .about-mission__item:not(:last-child) {
    margin-bottom: 30px
  }
}

.about-mission__subtitle {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.about-mission__descr {
  margin: 0;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

.history {
  padding: 100px 0;
  background-color: #f4f5f7
}

.history__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px
}

.history__slider-nav {
  transform: translate(12px, 4px)
}

.history__item {
  grid-column: 8 span;
  overflow: hidden
}

.history__image {
  margin-bottom: 34px
}

.history__descr {
  margin: 0;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.history-nav {
  position: relative;
  grid-column: 4 span
}

.history-nav::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(154, 156, 165, .5)
}

.history-nav__item:not(:last-child) {
  margin-bottom: 20px
}

.history-nav__btn {
  position: relative;
  padding-left: 40px;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: #9a9ca5;
  transition: color .3s ease-in-out
}

.history-nav__btn::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  width: 1px;
  height: 16px;
  background-color: #f4f5f7
}

.history-nav__btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background-color: currentColor
}

.history-nav__btn:focus {
  outline: 0;
  color: var(--color-primary)
}

.history-nav__btn:hover {
  color: var(--color-primary)
}

.history-nav__btn:active {
  color: var(--color-active)
}

.history-nav__btn--active {
  color: var(--color-primary)
}

@media (max-width:1024px) {
  .history-nav__btn {
    font-size: 22px
  }

  .team__top {
    text-align: center
  }
}

@media (max-width:768px) {
  .history__content {
    display: block
  }

  .history-nav {
    margin-bottom: 30px
  }

  .employee-benefits__list {
    --mission-gap: 10px
  }
}

.team {
  padding-top: 54px;
  padding-bottom: 120px
}

.team__list {
  -moz-column-gap: var(--grid-gap);
  column-gap: var(--grid-gap);
  margin-bottom: 80px;
  row-gap: 64px
}

.team__top {
  position: relative;
  margin-bottom: 12px;
  font-size: 0
}

.team__socials {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 4px 4px;
  padding: 20px 10px;
  width: 100%;
  background-color: rgba(255, 90, 48, .7);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out
}

.team__item {
  grid-column: 3 span
}

.team__item:hover .team__socials {
  opacity: 1;
  visibility: visible
}

@media (max-width:1024px) {
  .team__item {
    grid-column: 6 span
  }
}

.team__text {
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--color-ebony)
}

.team__text a {
  border-bottom: 1px solid currentColor;
  color: var(--color-primary);
  transition: color .3s ease-in-out
}

.team__text a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.team__text a:active,
.team__text a:hover {
  color: var(--color-active)
}

.team__link {
  display: block;
  width: 20px;
  height: 20px
}

.team__link svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--color-light);
  -o-object-fit: cover;
  object-fit: cover
}

.team__link:not(:last-child) {
  margin-right: 12px
}

.team__name {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: var(--color-gray)
}

.team__post {
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: var(--color-storm)
}

.worldwide {
  padding-top: 80px;
  padding-bottom: 117px;
  background-color: var(--color-athens)
}

.worldwide__title {
  margin-bottom: 60px
}

@media (max-width:1200px) {
  .worldwide {
    display: none
  }

  .contacts-info__list {
    --contacts-gap: 40px
  }
}

.positions-content {
  padding-top: 120px;
  padding-bottom: 56px
}

.positions-content__left {
  grid-column: 7 span
}

.positions-content__right {
  display: flex;
  justify-content: flex-end;
  grid-column: 5 span
}

.positions-list__item:not(:last-child) {
  margin-bottom: 24px
}

.positions-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e8ed;
  border-radius: 4px;
  padding: 32px 40px;
  background-color: var(--color-light)
}

.positions-item__meta {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-storm)
}

.positions-item__city {
  position: relative;
  margin-right: 21px;
  padding-left: 23px;
  background-image: url(../img/city.svg);
  background-position: left center;
  background-size: 16px 16px;
  background-repeat: no-repeat
}

.positions-item__city::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 1px;
  height: 11px;
  background-color: currentColor;
  transform: translateY(-50%)
}

.positions-item__time {
  padding-left: 23px;
  background-image: url(../img/time.svg);
  background-position: left center;
  background-size: 16px 16px;
  background-repeat: no-repeat
}

@media (max-width:1024px) {
  .positions-item__left {
    margin-bottom: 20px
  }

  .positions-item {
    flex-direction: column;
    align-items: flex-start
  }
}

.positions-item__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.positions-item__link {
  display: inline-block;
  padding: 11px 30px;
  font-size: 14px;
  letter-spacing: .5px;
  transition: color .3s ease-in-out
}

.positions-item__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.positions-item__link:active,
.positions-item__link:hover {
  color: var(--color-active)
}

.positions-looking {
  width: 390px
}

.positions-looking__title {
  margin: 0 0 26px;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: var(--color-ebony)
}

.positions-looking__descr {
  margin: 0 0 47px;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-gray)
}

@media (max-width:1024px) {
  .positions-looking__btns {
    display: flex;
    flex-direction: column
  }

  .positions-looking__btns .positions-looking__btn--subs {
    margin-right: 0;
    margin-bottom: 20px
  }

  .employee-benefits__list {
    --mission-gap: 30px
  }
}

.positions-looking__btn--subs {
  margin-right: 22px;
  padding-right: 44px;
  padding-left: 44px;
  transition: color .3s ease-in-out
}

.positions-looking__btn--subs:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.positions-looking__btn--subs:active,
.positions-looking__btn--subs:hover {
  color: var(--color-active)
}

.positions-looking__btn--send {
  padding-right: 54px;
  padding-left: 54px
}

.employee-benefits {
  padding-bottom: 153px;
  background-color: var(--color-light)
}

.employee-benefits__list {
  --mission-gap: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 27px;
  gap: calc(var(--mission-gap) * 2)
}

.employee-benefits__item {
  position: relative;
  padding-top: 71px;
  text-align: center;
  background-position: top center;
  background-size: 48px 48px;
  background-repeat: no-repeat
}

.employee-benefits__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--mission-gap));
  top: 0;
  width: 1px;
  height: 100%;
  background-image: url(../img/divider.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.employee-benefits__item--training {
  background-image: url(../img/training.svg)
}

.employee-benefits__item--growth {
  background-image: url(../img/growth.svg)
}

.employee-benefits__item--salary {
  background-image: url(../img/salary.svg)
}

.employee-benefits__subtitle {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.employee-benefits__descr {
  margin: 0;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

@media (max-width:576px) {
  .employee-benefits__list {
    display: block
  }

  .employee-benefits__item:not(:last-child) {
    margin-bottom: 30px
  }

  .employee-benefits {
    padding-bottom: 40px
  }
}

.know-form {
  position: relative;
  top: 92px;
  border-radius: 4px;
  padding: 48px 60px;
  box-shadow: var(--main-shadow);
  background-color: var(--color-light)
}

.know-form__title {
  margin: 0 0 33px;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  color: var(--color-ebony)
}

.know-form__content {
  display: flex;
  align-items: flex-end
}

@media (max-width:1024px) {
  .know-form__content {
    justify-content: space-between;
    flex-wrap: wrap
  }

  .know-form__content>* {
    margin-right: 0 !important;
    margin-bottom: 20px;
    width: 49%;
    flex-grow: initial
  }

  .know-form__content>* .form-field__input {
    width: 100%
  }
}

@media (max-width:1024px) and (max-width:576px) {
  .know-form__content>* {
    width: 100%
  }
}

.know-form__field {
  margin-right: 24px
}

.know-form__btn {
  padding: 11px 29px
}

@media (max-width:576px) {
  .know-form__content {
    display: block
  }

  .know-form {
    top: initial;
    padding: 10px 15px
  }
}

.categories {
  padding-top: 120px;
  padding-bottom: 180px
}

.categories__title {
  margin-bottom: 39px
}

.categories-nav {
  display: flex;
  align-items: center;
  margin-bottom: 60px
}

.categories-nav__item {
  width: 16.6666666667%
}

@media (max-width:1024px) {
  .categories-nav__item {
    width: 33.3333333333%
  }
}

@media (max-width:576px) {
  .categories {
    padding: 40px 0
  }

  .categories-nav__item {
    width: 100%
  }
}

.categories-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: #9a9ca5;
  transition: color .3s ease-in-out
}

.categories-nav__btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.categories-nav__btn:hover {
  color: var(--color-primary)
}

.categories-nav__btn:active {
  color: var(--color-active)
}

.categories-nav__btn--active {
  border-color: currentColor;
  color: var(--color-primary)
}

@media (max-width:1024px) {
  .categories-nav {
    flex-wrap: wrap
  }
}

.categories-list {
  -moz-column-gap: var(--grid-gap);
  column-gap: var(--grid-gap);
  margin-bottom: 60px;
  row-gap: 60px
}

.categories-list__item {
  grid-column: 6 span
}

.categories-list .news-article__descr {
  overflow: hidden;
  height: 52px
}

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

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

.categories-pag__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray);
  transition: color .3s ease-in-out
}

.categories-pag__link svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
  -o-object-fit: cover;
  object-fit: cover
}

.categories-pag__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.categories-pag__link:hover {
  color: var(--color-primary)
}

.categories-pag__link:active {
  color: var(--color-active)
}

.categories-pag__link--active {
  color: var(--color-primary)
}

.post__cover {
  display: block;
  margin-top: -79px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.post__wrapper {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 840px
}

.post__share {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-ebony)
}

.post__share span {
  margin-right: 10px
}

.post__share svg {
  fill: var(--color-storm);
  opacity: 1
}

.post__content {
  padding-top: 80px;
  padding-bottom: 60px
}

.post__content * {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.post__content :last-child {
  margin-bottom: 0
}

.post__content h2 {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.post__content h3 {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-ebony)
}

.post__content p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.post__content blockquote {
  position: relative;
  margin: 0 0 28px;
  padding: 21px 5px 21px 58px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

.post__content blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 28px;
  height: 20px;
  background-image: url(../img/braces.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

@media (max-width:576px) {
  .post__content blockquote {
    padding: 50px 0 0
  }
}

.post__content ul {
  list-style-type: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.post__content ul li {
  position: relative;
  padding-left: 32px
}

.post__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url(../img/check-list.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.post__content ul li:not(:last-child) {
  margin-bottom: 3px
}

.comments {
  padding-top: 80px;
  padding-bottom: 80px
}

.comments__title {
  margin-bottom: 60px
}

.comments__item:not(:last-child) {
  margin-bottom: 59px
}

.post-form {
  padding-top: 37px;
  padding-bottom: 180px
}

.post-form__title {
  margin-bottom: 50px
}

.post-form__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

.post-form .form-field__caption {
  margin-bottom: 10px;
  font-size: 16px
}

.post-form .form-field__input {
  height: 52px;
  font-size: 16px
}

.post-form__field {
  width: 48%
}

.post-form__field--big {
  margin-top: 22px;
  margin-bottom: 46px;
  width: 100%
}

.post-form__field--big .form-field__input {
  height: 100px
}

@media (max-width:576px) {
  .post-form__field--big {
    margin-top: 0
  }

  .post-form__field {
    margin-bottom: 20px;
    width: 100%
  }
}

.contacts {
  padding-top: 120px;
  padding-bottom: 120px
}

.contacts__content {
  display: flex;
  justify-content: space-between
}

.contacts__image {
  flex-shrink: 0;
  margin-right: 20px
}

@media (max-width:1024px) {
  .contacts__content {
    display: block
  }

  .contacts__image {
    margin-right: 0;
    margin-bottom: 30px
  }
}

.form-contacts {
  width: 600px
}

.form-contacts__line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 23px;
  width: 100%
}

.form-contacts__field {
  margin-bottom: 0;
  width: 47.5%
}

.form-contacts__field--big {
  width: 100%
}

@media (max-width:576px) {
  .form-contacts__line {
    display: block
  }

  .form-contacts__field {
    width: 100%
  }

  .form-contacts__field:not(:last-child) {
    margin-bottom: 20px
  }
}

.form-contacts__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 39px
}

.form-contacts__checkbox {
  max-width: 315px
}

.form-contacts__checkbox .custom-checkbox__text {
  font-size: 16px;
  line-height: 160%
}

.form-contacts__checkbox .custom-checkbox__text::after,
.form-contacts__checkbox .custom-checkbox__text::before {
  top: 4px
}

@media (max-width:576px) {
  .form-contacts__bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .form-contacts__checkbox {
    margin-bottom: 20px
  }
}

.form-contacts .form-field__caption {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.form-contacts .form-field__input {
  height: 52px;
  font-size: 16px;
  line-height: 160%;
  color: #9a9ca5
}

.form-contacts__fields {
  border: none;
  padding: 0 0 0 3px;
  width: 47.5%
}

.form-contacts__fields .form-field__caption {
  margin-bottom: 21px
}

.form-contacts__radio:not(:last-child) {
  margin-right: 22px
}

.form-contacts .choices {
  width: 100%
}

.form-contacts .is-focused {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.form-contacts .choices__inner {
  margin: 0;
  border: 1px solid #d7dadd;
  border-radius: 4px;
  padding: 0;
  height: 52px;
  background-color: var(--color-athens)
}

.form-contacts .choices__list--single .choices__placeholder {
  font-size: 16px;
  line-height: 160%;
  color: #9a9ca5;
  opacity: 1
}

.form-contacts .choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0
}

.form-contacts .choices__list--single {
  display: flex;
  align-items: center;
  padding-left: 15px;
  height: 100%
}

.form-contacts .choices[data-type*=select-one]:after {
  right: 19px;
  margin-top: 0;
  border: none;
  width: 14px;
  height: 7px;
  background-image: url(../img/angle-down.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: transform .3s ease-in-out
}

.form-contacts .choices[data-type*=select-one].is-open:after {
  margin-top: -7px;
  transform: rotate(180deg) translateY(-50%)
}

.form-contacts .choices__list--dropdown .choices__item--selectable:after {
  display: none
}

.form-contacts .choices__list--dropdown {
  background-color: var(--color-athens)
}

.form-contacts .form-field__input--big {
  height: 126px
}

.contacts-info {
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: #f4f5f7
}

.contacts-info__list {
  --contacts-gap: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 118px;
  gap: calc(var(--contacts-gap) * 2)
}

.contacts-info__soc {
  margin-bottom: 41px
}

.contacts-info__social {
  justify-content: center
}

.contacts-info__social .social__item:not(:last-child) {
  margin-right: 24px
}

.contacts-info__social .social__link {
  width: 32px;
  height: 32px
}

.contacts-info__social .social__link svg {
  fill: var(--color-storm);
  opacity: 1
}

.contacts-info__item {
  position: relative
}

.contacts-info__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--contacts-gap));
  top: 0;
  width: 1px;
  height: 100%;
  background-image: url(../img/divider.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

@media (max-width:768px) {
  .contacts-info__list {
    display: block
  }

  .contacts-info__item:not(:last-child) {
    margin-bottom: 30px
  }
}

.contacts-info__subtitle {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: var(--color-ebony)
}

.contacts-info__address {
  display: inline-block;
  margin-bottom: 9px;
  font-style: normal;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-ebony)
}

.contacts-info__link {
  display: inline-block;
  margin-bottom: 24px;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  color: var(--color-primary);
  transition: color .3s ease-in-out
}

.contacts-info__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.contacts-info__link:active,
.contacts-info__link:hover {
  color: var(--color-active)
}

.contacts-info__element {
  font-size: 16px;
  line-height: 160%;
  color: var(--color-storm)
}

.contacts-info__element:not(:last-child) {
  margin-bottom: 5px
}

.contacts-info__value {
  color: var(--color-ebony);
  transition: color .3s ease-in-out
}

.contacts-info__value:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.contacts-info__value:active,
.contacts-info__value:hover {
  color: var(--color-active)
}

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

.nav__item:not(:last-child) {
  margin-right: 40px
}

@media (max-width:1024px) {
  .form-contacts {
    width: 100%
  }

  .nav__list {
    display: block;
    margin-bottom: 40px
  }

  .nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px
  }
}

.nav__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray);
  transition: color .3s ease-in-out
}

.nav__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.nav__link:hover {
  color: var(--color-primary)
}

.nav__link:active {
  color: var(--color-active)
}

.nav__link--current {
  color: var(--color-primary)
}

.header-contacts {
  display: flex;
  align-items: center
}

.header-contacts__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.header-contacts__link:not(:last-child) {
  margin-right: 35px
}

.header-contacts--nav {
  display: none
}

@media (max-width:1024px) {
  .header-contacts {
    display: none
  }

  .header-contacts--nav {
    display: block
  }
}

.contacts-link {
  padding-left: 53px;
  background-position: left center;
  background-size: 40px 40px;
  background-repeat: no-repeat
}

.contacts-link__caption {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-gray)
}

.contacts-link__value {
  font-size: 18px;
  line-height: 150%;
  color: var(--color-ebony);
  transition: color .3s ease-in-out
}

@media (max-width:1200px) {
  .contacts-link__value {
    font-size: 16px
  }
}

.contacts-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.contacts-link:hover .contacts-link__value {
  color: var(--color-primary)
}

.contacts-link:active .contacts-link__value {
  color: var(--color-active)
}

.contacts-link--call {
  background-image: url(../img/phone.svg)
}

.contacts-link--mail {
  background-image: url(../img/mail.svg)
}

.video-block {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 500px
}

.video-block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  background-color: rgba(30, 33, 44, .6);
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out
}

.video-block--played::before {
  opacity: 0;
  visibility: hidden
}

.video-block__content {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.video-block__play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: background-color .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out
}

.video-block__play svg {
  width: 26px;
  height: 26px
}

.video-block__play:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.video-block__play:active,
.video-block__play:hover {
  background-color: var(--color-active)
}

.video-block__play--played {
  opacity: 0;
  visibility: hidden
}

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

.breadcrumbs__item {
  position: relative
}

.breadcrumbs__item:not(:last-child) {
  margin-right: 22px
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -14px;
  top: 1px;
  color: #9a9ca5
}

.breadcrumbs__link {
  font-size: 14px;
  line-height: 150%;
  color: var(--color-gray);
  transition: color .3s ease-in-out
}

.breadcrumbs__link:not([href]) {
  color: #9a9ca5
}

.breadcrumbs__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.breadcrumbs__link:hover {
  color: var(--color-primary)
}

.breadcrumbs__link:active {
  color: var(--color-active)
}

@media (max-width:768px) {
  .breadcrumbs {
    flex-wrap: wrap
  }
}

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

.learn-more__subtitle {
  margin: 0 40px 0 0;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: var(--color-ebony)
}

@media (max-width:768px) {
  .learn-more__subtitle {
    margin-right: 10px;
    max-width: 50%;
    line-height: 40px
  }
}

@media (max-width:576px) {
  .video-block {
    height: 300px
  }

  .learn-more__subtitle {
    margin-right: 0;
    margin-bottom: 10px;
    max-width: none
  }

  .learn-more {
    display: block
  }
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--main-shadow);
  background: var(--color-light);
  transition: transform .3s ease-in-out
}

.portfolio-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px 23px
}

.portfolio-item__title {
  margin: 0 0 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony)
}

@media (max-width:1200px) {
  .portfolio-item__title {
    font-size: 18px
  }
}

.portfolio-item__descr {
  display: inline-block;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-storm)
}

.portfolio-item__btn {
  margin-top: 24px;
  margin-bottom: -68px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 13px 31px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: .3s ease-in-out;
  will-change: margin
}

@media (max-width:768px) {
  .portfolio-item__btn {
    margin-bottom: 0
  }
}

.portfolio-item:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.portfolio-item:hover .portfolio-item__btn {
  margin-bottom: 0
}

.work-images {
  overflow: hidden
}

.work-images__prev {
  position: absolute;
  left: 32px;
  top: 50%;
  z-index: 50;
  background-color: rgba(255, 255, 255, .5);
  transform: translateY(-50%)
}

.work-images__next {
  position: absolute;
  right: 32px;
  top: 50%;
  z-index: 50;
  background-color: rgba(255, 255, 255, .5);
  transform: translateY(-50%)
}

.work-images-slider {
  position: relative;
  margin-bottom: 20px
}

.work-images .swiper-slide img {
  display: block;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.work-images-nav {
  overflow: hidden
}

.work-images-nav .swiper-slide {
  border-radius: 4px;
  opacity: .6;
  transition: opacity .3s ease-in-out;
  cursor: pointer
}

.work-images-nav .swiper-slide-thumb-active {
  opacity: 1
}

.work-images-nav .swiper-slide img {
  display: block;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.news-article {
  overflow: hidden;
  border-radius: 4px;
  height: 100%;
  box-shadow: var(--main-shadow);
  background-color: var(--color-light)
}

.news-article__text {
  padding: 20px 24px
}

@media (max-width:1024px) {
  .news-article__image {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
}

.news-article__title {
  margin: 0 0 13px
}

.news-article__descr {
  margin: 0;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.news-article__meta {
  margin-bottom: 17px
}

.news-article__link {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-ebony);
  transition: color .3s ease-in-out
}

.news-article__link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.news-article__link:hover {
  color: var(--color-primary)
}

.news-article__link:active {
  color: var(--color-active)
}

.news-article--small .news-article__descr {
  display: none
}

.news-article--small .news-article__text {
  padding: 12px 24px
}

.news-article--small .news-article__title {
  margin-bottom: 9px
}

.article-meta {
  font-size: 14px;
  line-height: 150%;
  color: var(--color-storm)
}

.article-meta__item {
  position: relative;
  color: inherit
}

.article-meta__item:not(:last-child) {
  margin-right: 21px
}

.article-meta__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 2px;
  width: 1px;
  height: 11px;
  color: inherit;
  background-color: currentColor
}

.article-meta__item--comments {
  padding-left: 24px;
  background-image: url(../img/comments.svg);
  background-position: left center;
  background-size: 16px 16px;
  background-repeat: no-repeat
}

a.article-meta__item:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

a.article-meta__item:hover {
  color: var(--color-primary)
}

a.article-meta__item:active {
  color: var(--color-active)
}

.comment {
  display: flex
}

.comment__left {
  padding-right: 30px;
  width: calc(100% - 630px)
}

@media (max-width:1024px) {
  .comment__left {
    margin-bottom: 20px;
    width: 100%
  }
}

.comment__right {
  width: 630px
}

.comment__author {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-ebony)
}

.comment__time {
  font-size: 14px;
  line-height: 150%;
  color: var(--color-storm)
}

.comment__body {
  margin-bottom: 19px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-gray)
}

.comment__body a {
  font-weight: 700;
  color: var(--color-primary);
  transition: color .3s ease-in-out
}

.comment__body a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.comment__body a:active,
.comment__body a:hover {
  color: var(--color-active)
}

.comment__body * {
  margin: 0 0 20px
}

.comment__body :last-child {
  margin: 0
}

.comment__reply {
  display: inline-flex;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-storm);
  transition: color .3s ease-in-out
}

.comment__reply svg {
  position: relative;
  top: 2px;
  display: block;
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
  -o-object-fit: cover;
  object-fit: cover
}

.comment__reply:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

.comment__reply:active,
.comment__reply:hover {
  color: var(--color-active)
}

@media (max-width:1024px) {
  .comment__right {
    width: 100%
  }

  .comment {
    flex-direction: column;
    align-items: flex-start
  }
}

.policy {
  padding: 120px;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-storm);

}


.policy h2 {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: var(--color-ebony);
}
