/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2.5em;
  margin: 0;
  text-transform: uppercase;
  width: 700px;
  font-weight: 900;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
b,strong {
  font-weight: bolder;
}
code,kbd,samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,input,optgroup,select,textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,input {
  overflow: visible;
}
button,select {
  text-transform: none;
}
button,[type="button"],[type="reset"],[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
* {
}
/* Конец нормалайз css */

/* Переменные и глобальные свойства */
.container {
  width: 1200px;
  padding: 0px 30px;
  margin: 0 auto;
}
* {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  --color-text: #000;
  --color-text-vs: #a64b00;
  --color-text-min: #a7a7a7;
  --color-h: #006363;
  --color-btn: #ff9640;
  --color-btn-help: #a64b00;
  --color-bg: #008080;
}
h1, h2 {
  color: var(--color-h);
}
.btn {
  text-decoration: none;
  display: block;
  border: none;
  border-radius: 10px;
  background-image: -webkit-gradient( linear, left bottom, left top, from(var(--color-btn-help)), to(var(--color-btn)));
  background-image: -o-linear-gradient( bottom, var(--color-btn-help) 0%, var(--color-btn) 100%);
  background-image: linear-gradient( 0deg, var(--color-btn-help) 0%, var(--color-btn) 100%);
  -webkit-box-shadow: 0px 5px 10px 0.5px rgb(0 0 0 / 25%);
          box-shadow: 0px 5px 10px 0.5px rgb(0 0 0 / 25%);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.btn:hover {
  background: var(--color-btn-help);
}


/* header css */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  z-index: 10;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.5);
          box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.5);
}
.row__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0px;
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: var(--color-bg);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}
.logo:hover {
  opacity: 0.9;
}
.logo__img {
  margin-right: 15px;
  width: 50px;
  height: auto;
}
.logo__text {
  width: 140px;
}
.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header__info img {
  width: 30px;
  height: auto;
  margin-right: 10px;
}
.phone {
  text-decoration: none;
  color: var(--color-bg);
  font-weight: 900;
  font-size: 1.5rem;
  margin-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.working-time {
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}









/* main css */
.main {
  background: url(assets/img/bg_main-3.jpg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-top: 100px;
}
/* Заголовок и утп */
.main__title {
  padding-top: 50px;
}
.main__title p {
  margin: 50px 0px 60px;
  font-size: 1.25rem;
  width: 600px;
}
.btn__main {
  width: 400px;
  height: 60px;
}


/* слайдер */
.slider__comment {
  width: 300px;
  height: 550px;
  overflow-x: hidden;
}
.vieport {
  display: table;
  width: 100%;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.sliderwrapper {
  position: relative;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(100%*3);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  -webkit-transition-timing-function: ease-in-out;
       -o-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.slide {
  display: inline-block;
  float: left;
  width: 300px;
  padding: 20px;
}
.img-slider {
  width: 100%;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.35);
          box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.35);
}
.btn-slider {
  position: absolute;
  bottom: -30px;
  font-size: 50px;
  color: var(--color-btn-help);
  cursor: pointer;
}
.btn-slider:hover {
  opacity: 0.85;
}
.btn-next {
  right: 20%;
}
.btn-prev {
  left: 20%;
}


/* Секция услуги */
.services {
  margin-top: 100px;
}
.title__services {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.services__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services__item {
  width: 320px;
  margin-top: 100px;
}
.services__img {
  width: 100%;
  -webkit-box-shadow: 5px 5px 5px 3px rgb(0,0,0,0.35);
          box-shadow: 5px 5px 5px 3px rgb(0,0,0,0.35);
}
.services__item h3 {
  color: var(--color-bg);
}
.services__item p {
  font-size: 0.75rem;
  color: var(--color-text);
  height: 80px;
  overflow-y: hidden;
}
.btn__services {
  width: 100%;
  height: 50px;
}









/* секция формы */
.form {
  background: url(assets/img/bg-form.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 100px;
}
.form__block {
  width: 50%;
  background: var(--color-h);
  height: 700px;
  padding: 0px 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  text-align: center;
}
.title__form {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}
.form__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}
.form__action input {
  margin-bottom: 10px;
  width: 100%;
  height: 50px;
  border-radius: 7px;
  padding-left: 20px;
}
.btn__form {
  width: 80%;
  height: 60px;
  margin-top: 30px;
}




/* footer css */
footer {
  padding: 30px 0px;
  background: #232323;
  color: #fff;
}
.copy {
  display: block;
  text-align: center;
}




/* modal */
.wrapper__modal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 999;
  display: none;
}
.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 350px;
  height: 500px;
  background: #fff;
  padding: 15px;
  border-radius: 7px;
  position: relative;
}
.clous {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  cursor: pointer;
  color: var(--color-text-min);
}
.clous:hover {
  color: var(--color-btn-help);
}
.form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.modal__title {
  margin: 0px;
  text-align: center;
  color: var(--color-h);
}
.form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 120px;
  margin: 40px 0px;
}
.input__form {
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border-radius: 7px;
  border: none;
  background: #f1efef;
}
.btn__modal {
  width: 100%;
  height: 60px;
}
.thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  height: 100vh;
  text-align: center;
}
.thanks h1 {
  width: 100%;
}
.btn__thanks {
  padding: 7px 20px;
}












@media screen and (max-width: 1200px) and (min-width: 992.99px) {
  html {
    font-size: 18px;
  }
  .container {
    width: 990px;
  }
  .logo__img {
    width: 40px;
  }
  .logo__text {
    width: 140px;
    font-size: 0.85rem;
  }
  .main {
    height: 650px;
  }
  .flex__block {
    padding-top: 50px;
  }
  .main__title {
    width: 540px;
    padding-top: 50px;
  }
  h1 {
    width: 100%;
  }
  .main__title p {
    margin: 50px 0px 60px;
    font-size: 1.25rem;
    width: 100%;
  }
  .slider__comment {
    width: 250px;
    height: 445px;
  }
  .slide {
    width: 250px;
    padding: 20px;
  }
  .services, .form {
    margin-top: 50px;
  }
  .services__item {
    width: 30%;
    margin-top: 50px;
  }
  .services__item h3 {
    height: 40px;
  }
  .form__block {
    height: 450px;
    padding: 0px 20px;
  }
  .title__form {
    margin-bottom: 0px;
  }
  .form__action input {
    height: 45px;
  }
  .btn__form {
    height: 50px;
    margin-top: 20px;
  }
}













@media screen and (max-width: 992px) and (min-width: 768.99px) {
  html {
    font-size: 16px;
  }
  .container {
    width: 760px;
  }
  .logo__img {
    margin-right: 10px;
    width: 30px;
  }
  .logo__text {
    font-size: 0.75rem;
    width: 100px;
  }
  .header__info img {
    width: 25px;
  }
  .phone {
    font-size: 1.25rem;
    margin-left: 20px;
  }
  .main {
    height: 550px;
  }
  .main__title {
    width: 400px;
  }
  h1 {
    width: 100%;
    font-size: 2rem;
  }
  .main__title p {
    margin: 30px 0px;
    font-size: 1rem;
    width: 100%;
  }
  .btn__main {
    width: 80%;
    height: 50px;
  }
  .slider__comment {
    width: 200px;
    height: 350px;
  }
  .slide {
    width: 198px;
    padding: 20px;
  }
  .services, .form {
    margin-top: 50px;
    background: none;
  }
  .services__item {
    width: 45%;
    margin-top: 50px;
  }
  .form__block {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .title__form {
    width: 70%;
  }
  .copy {
    font-size: 0.75rem;
  }
  .modal__title {
    width: 62%;
  }
}









@media screen and (max-width: 768px) and (min-width: 576.99px) {
  html {
    font-size: 16px;
  }
  .container {
    width: 560px;
  }
  .logo__img {
    margin-right: 10px;
    width: 30px;
  }
  .logo__text {
    font-size: 0.75rem;
    width: 100px;
  }
  .header__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .header__info img {
    display: none;
  }
  .working-time br {
    display: none;
  }
  .phone {
    font-size: 1.25rem;
  }
  .main {
    height: 100%;
    padding: 130px 0px 50px;
  }
  .flex__block {
    padding: 0px;
  }
  .main__title {
    width: 100%;
    padding: 0px;
  }
  h1 {
    width: 100%;
  }
  .main__title p {
    width: 80%;
    margin: 30px 0px;
    font-weight: 500;
  }
  .slider__comment {
    display: none;
  }
  .services, .form {
    margin-top: 50px;
  }
  .services__item {
    width: 45%;
    margin-top: 50px;
  }
  .form__block {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .title__form {
    width: 70%;
  }
  .copy {
    font-size: 0.75rem;
    width: 70%;
    margin: 0 auto;
  }
  .modal {
    height: 430px;
  }
  .modal__title {
    width: 62%;
  }
}












@media screen and (max-width: 576px) and (min-width: 480.99px) {
  .container {
    width: 460px;
  }
  html {
    font-size: 16px;
  }
  .logo__img {
    margin-right: 10px;
    width: 30px;
  }
  .logo__text {
    font-size: 0.75rem;
    width: 100px;
  }
  .header__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .header__info img {
    display: none;
  }
  .working-time {
    font-size: 0.6rem;
  }
  .working-time br {
    display: none;
  }
  .phone {
    font-size: 1.25rem;
  }
  .main {
    height: 100%;
    padding: 130px 0px 50px;
  }
  .flex__block {
    padding: 0px;
  }
  .main__title {
    width: 100%;
    padding: 0px;
  }
  h1 {
    width: 100%;
    font-size: 2rem;
  }
  .main__title p {
    width: 100%;
    margin: 30px 0px;
    font-weight: 500;
  }
  .slider__comment {
    display: none;
  }
  .services, .form {
    margin-top: 50px;
  }
  .title__services {
    font-size: 1.5rem;
  }
  .services__item {
    width: 45%;
    margin-top: 50px;
  }
  .services__item h3 {
    font-size: 1rem;
    height: 30px;
  }
  .form__block {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .title__form {
    width: 70%;
  }
  .copy {
    font-size: 0.75rem;
    width: 70%;
    margin: 0 auto;
  }
  .modal {
    height: 370px;
  }
  .modal__title {
    width: 62%;
  }
  .form__content {
    margin: 20px 0px;
  }
}

















@media screen and (max-width: 480px) and (min-width: 320px) {
  .container {
    width: 300px;
    padding: 0px;
  }

  html {
    font-size: 16px;
  }
  .logo__img {
    margin-right: 10px;
    width: 30px;
  }
  .logo__text {
    display: none;
  }
  .header__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .header__info img {
    display: none;
  }
  .working-time {
    font-size: 0.6rem;
  }
  .working-time br {
    display: none;
  }
  .phone {
    font-size: 1.25rem;
  }
  .main {
    height: 100%;
    padding: 100px 0px 30px;
  }
  .flex__block {
    padding: 0px;
  }
  .main__title {
    width: 100%;
    padding: 0px;
  }
  h1 {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1;
  }
  .main__title p {
    width: 100%;
    margin: 20px 0px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
  }
  .btn__main {
    width: 100%;
    height: 45px;
  }
  .slider__comment {
    display: none;
  }
  .services, .form {
    margin-top: 50px;
  }
  .title__services {
    font-size: 1.25rem;
  }
  .services__item {
    width: 100%;
    margin: 0px;
    background: rgb(120 118 118 / 15%);
    padding: 15px;
    border-radius: 7px;
  }
  .services__item ~ .services__item {
    margin-top: 70px;
  }
  .services__item h3 {
    font-size: 1rem;
    height: 30px;
  }
  .services__item p {
    height: 70px;
  }
  .form__block {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .title__form {
    width: 100%;
    font-size: 1rem;
  }
  .form__action {
    width: 100%;
  }
  .form__action input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
  }
  .btn__form {
    width: 100%;
    height: 50px;
    margin-top: 20px;
  }
  .copy {
    font-size: 0.75rem;
    width: 70%;
    margin: 0 auto;
  }
  .modal {
    width: 280px;
    height: 260px;
    padding: 10px;
  }
  .modal__title {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1;
  }
  .form__content {
    height: 100%;
    margin: 20px 0px;
  }
  .input__form {
    width: 100%;
    height: 40px;
  }
  .input__form ~ .input__form {
    margin-top: 10px;
  }
  .btn__modal {
    height: 45px;
  }
}