/*=========================================*/
/*                  Spec                   */
/*=========================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: .5s;
}
body {
  font-family: 'Fira Sans', sans-serif;
  font-size: 14px;
  color: #818592;
}
h1 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1.82px;
}
h2 {
  font-size: 169px;
  color: #ebebeb;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 1;
  text-transform: uppercase;
}
h3 {
  font-size: 60px;
  color: #25242f;
  text-align: center;
}
h4 {
  font-size: 34px;
}
h5 {
  font-size: 23px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a,
a:active,
a:hover {
  outline: none;
  text-decoration: none;
  transition: 0.5s;
}
button,
button:active,
button:focus,
button:hover,
input,
input:active,
input:focus,
input:hover,
textarea,
textarea:focus {
  outline: none;
}
textarea {
  resize: none;
}
.btn {
  width: 232px;
  height: 60px;
  display: flex;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, #e9cd00, #d35913) no-repeat;
  background-clip: padding-box;
  border-radius: 25px;
  position: relative;
  font-size: 14px;
  overflow: hidden;
}
.btn span {
  position: absolute;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)) no-repeat;
}
.btn:hover {
  box-shadow: 0 10px 15px 0 rgba(19, 12, 14, 0.1);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(to left, #e9cd00, #d35913) no-repeat;
}
.btn:hover span {
  color: #4B5268;
}
.btn:focus {
  box-shadow: none;
}
section {
  padding: 100px 0;
  position: relative;
}
section *:not(h2) {
  position: relative;
  z-index: 10;
}
/*=========================================*/
/*                  header                 */
/*=========================================*/
.header {
  background-color: #333333;
  position: relative;
  padding: 250px 0;
  overflow-y: hidden;
}
.header__bg {
  position: absolute;
  z-index: 1;
}
.header__bg_l {
  top: 0;
  left: 0;
}
.header__bg_r {
  bottom: 0;
  right: 0;
}
.header__content {
  color: #fff;
  position: relative;
  z-index: 10;
}
.header__logo img,
.footer__logo img {
  max-width: 165px;
}
.header__content > p {
  font-size: 24px;
  line-height: 1.67;
  margin: 30px 0;
  max-width: 1040px;
}
.header__content > h4 {
	font-size: 24px;
  line-height: 1.67;
  max-width: 1040px;
  font-weight: 500;
}
.header__navBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 50px;
  z-index: 999;
}
.header__navBox .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav li:not(:last-child) {
  margin-right: 40px;
}
.header__nav li a {
  color: #fff;
}
.header__nav li a:hover {
  color: #f5d101;
}
/*=========================================*/
/*                  who                    */
/*=========================================*/
.who {
  padding-top: 300px;
}
.who .btn {
  width: 301px;
  height: 50px;
  margin: 0 auto;
}
.who h2 {
  top: 230px;
}
section > p {
  color: #25242f;
  font-size: 24px;
  line-height: 1.56;
}
.who > p {
  max-width: 790px;
  text-align: center;
  margin: 80px auto 50px;
}
/*=========================================*/
/*                  offer                  */
/*=========================================*/
.offer h2 {
  top: 30px;
}
.offer > p {
  color: #818592;
  max-width: 690px;
  margin: 80px auto 50px;
  text-align: center;
}
.offer .btn {
  width: 301px;
  height: 50px;
  margin: 0 auto;
}
.offer__wrap {
  max-width: 1200px;
  margin: 60px auto 0;
}
.offer__item {
  width: calc(100% / 3);
  margin-bottom: 70px;
}
.offer__item h4 {
  font-size: 18px;
  color: #25242f;
  margin-top: 35px;
}
/*=========================================*/
/*                  cost                 */
/*=========================================*/
.cost > p {
  max-width: 800px;
}
/*=========================================*/
/*                  form                   */
/*=========================================*/
.form__field {
  position: relative;
}
.form__form {
  max-width: 650px;
  margin: 0 auto;
}
.form__field input,
.form__field textarea {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}
.form__field label {
  position: absolute;
  color: #000;
  top: 50%;
  left: 0;
  margin: 0;
  transform: translateY(-50%);
  font-size: 14px;
}
.form__field label.active {
  top: 10%;
  font-size: smaller;
}
.form__field textarea {
  height: 150px;
}
.form__form .btn {
  border: none;
  margin-top: 30px;
}
/*=========================================*/
/*                  footer                 */
/*=========================================*/
.footer {
  background: #ebebeb;
  height: 100px;
}
.footer > .container {
  position: relative;
  height: 100%;
}
.footer__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}
.footer__info {
  position: relative;
  z-index: 10;
}
.footer__info a {
  font-size: 18px;
  color: #25242f;
  margin-bottom: 10px;
  font-weight: 700;
}
.footer a {
  position: relative;
  z-index: 10;
}
.footer__info p {
  color: #818592;
  text-align: right;
}
/*=========================================*/
/*                  services               */
/*=========================================*/
.header__inner {
  padding: 150px 0;
  overflow-y: hidden;
}
.sServices__item:not(:last-child) {
  margin-bottom: 100px;
}
.sServices__titleBox {
  position: relative;
  margin-bottom: 30px;
}
.sServices__titleBox span {
  position: absolute;
  left: -50px;
  font-size: 72px;
  font-weight: 700;
  color: #ebebeb;
  text-transform: uppercase;
}
.sServices__titleBox h3 {
  font-size: 40px;
  font-weight: 700;
  color: #515f67;
  margin-left: 30px;
}
.sServices__item ul,
.sServices__item li {
  list-style: initial;
  list-style-position: inside;
}
.sServices__item p,
.sServices__item ul,
.sServices__item li {
  line-height: 1.79;
  color: #515f67;
  font-size: 14px;
}
/*=========================================*/
/*                  estimate               */
/*=========================================*/
.quest h2 {
  font-size: 130px;
  top: -30px;
}
.quest h3 {
  margin-bottom: 50px;
}
.quest__subtitle {
  max-width: 760px;
  text-align: center;
  font-size: 25px;
  line-height: 1.56;
  color: #818592;
  margin: 0 auto;
}
.accord {
  max-width: 600px;
  margin: 50px auto 0;
}
.accord__item {
  border-bottom: 1px solid #ccc;
}
.accord__item:not(:last-child) {
  margin-bottom: 20px;
}
.accord__question {
  padding: 25px 0;
  cursor: pointer;
  color: #404044;
  font-size: 20px;
  font-weight: 700;
}
.accord__arrowBox {
  width: 25px;
  height: 25px;
  border: 1px solid #333333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accord__arrowBox.rotate {
  transform: rotate(180deg);
}
.accord__arrow {
  min-width: 8px;
  height: 8px;
  border: 1px solid transparent;
  border-bottom-color: #333333;
  border-left-color: #333333;
  transform: rotate(-45deg);
  transform-origin: 30% 20%;
  transition: .5s;
}
.accord__arrow.rotate {
  transform: rotate(135deg);
}
.accord__answer {
  display: none;
  padding: 20px 0;
}
.accord__answer p {
  margin-bottom: 10px;
  font-size: 13px;
  color: #595959;
  line-height: 1.92;
}
.sPc__item {
  margin-bottom: 60px;
}
.sPc__item h4 {
  color: #515f67;
  font-size: 24px;
  position: relative;
  margin-top: 50px;
  padding-left: 10px;
}
.sPc__item h4::after {
  position: absolute;
  top: -15px;
  left: 0;
  font-size: 34px;
  color: #ebebeb;
  content: attr(title);
  z-index: -1;
  text-transform: uppercase;
}
.sContacts h2 {
  top: 25px;
}
.sContacts__subtitle {
  max-width: 1000px;
  margin-top: 30px;
}
.sContacts__mail {
  font-size: 35px;
  color: #000;
  margin-top: 50px;
}
.sContacts__address {
  font-size: 40px;
  max-width: 500px;
  text-align: center;
  margin: 30px 0;
}

.sPc__item h4.custom-page-header {
  font-size: 3.125vw;
  line-height: 1.2;
  font-min-size: 24px!important;
  padding-left: 0;
}

.sPc__item h4.custom-page-header:after {
  top: -5px;
  left: -50px;
  font-size: 3.75vw;
  font-min-size: 34px!important;
  line-height: 1.2;
}

.custom-page-description {
  padding-top: 40px;
  font-family: 'Fira Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #515F67;
}

/*=========================================*/
/*=========================================*/
/*                  Media                  */
/*=========================================*/
/*=========================================*/
/* m-first */
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex !important;
  }
}
@media screen and (min-width: 1200px) {

}
/* m-last */
@media screen and (max-width: 1500px) {
  .form > p {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 1365px) {
  .sServices__titleBox span {
    left: 40px;
  }
}
@media screen and (max-width: 992px) {
  .header__bg {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .burger {
    margin-left: 20px;
    cursor: pointer;
    z-index: 2000;
  }
  .burger__line {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
  }
  .burger__line_center {
    margin: 5px 0;
  }
  .who h2 {
    top: 0;
  }
  .who {
    padding-top: 100px;
  }
  h2 {
    font-size: 80px;
  }
  .header {
    padding: 150px 0;
  }
  h1 {
    font-size: 45px;
  }
  section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .offer__item {
    width: 100%;
  }
  .header__nav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 20px 0;
  }
  .header__nav li {
    display: block;
    text-align: center;
  }
  .header__nav li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .header__content > p {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .sServices__titleBox span {
    left: 0;
  }
  .sServices__titleBox span {
    font-size: 40px;
  }
  .sServices__titleBox h3 {
    margin: 30px 0 0 0;
  }
  .footer {
    padding: 20px 0;
    height: auto;
  }
  .footer a {
    display: block;
    margin: 0px auto 30px auto;
  }
  .footer__info p {
    text-align: center;
  }

  .sPc__item h4.custom-page-header {
    font-size: 24px;
    padding-left: 10px;
  }

  .sPc__item h4.custom-page-header:after {
    top: -15px;
    left: 0;
    font-size: 34px;
  }

  .custom-page-description {
    padding-top: 40px;
    font-family: 'Fira Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #515F67;
  }
}
