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

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  color: #333333;
  bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  margin: 0 auto;
  min-width: 1650px;
  padding: 0 15px;
}

.menu-burger {
  cursor: pointer;
}

.menu-btn {
  width: 70px;
  height: 40px;
  z-index: 999;
  overflow: hidden;
  display: none;
  cursor: pointer;
}

.menu-btn span {
  width: 100px;
  height: 1px;
  position: absolute;
  top: 8%;
  left: 85%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #222222;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.menu-btn span:nth-of-type(2) {
  top: calc(8% - 8px);
}

.menu-btn span:nth-of-type(3) {
  top: calc(8% + 8px);
}

.menu-btn span:nth-of-type(4) {
  top: calc(8% + 15px);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  padding: 15px;
  background: #f1f1f1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.9s;
  transition: -webkit-transform 0.9s;
  transition: transform 0.9s;
  transition: transform 0.9s, -webkit-transform 0.9s;
  border-radius: 20px;
  z-index: 999;
}

.menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.menu li {
  list-style-type: none;
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}

.menu-btn.active span:nth-of-type(4) {
  display: none;
}

.menu-btn.active span:nth-of-type(2) {
  top: 6%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1000;
  width: 50px;
  left: 90%;
}

.menu-btn.active span:nth-of-type(3) {
  top: 6%;
  left: 90%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 1000;
  width: 50px;
}

header .container {
  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;
}
header .container .logo {
  position: relative;
}
header .container .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .container .nav li:hover {
  color: #1E97EF;
  font-weight: 700;
}
header .container .nav li {
  margin-left: 60px;
  font-size: 16px;
  line-height: 19px;
}
header .container .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
header .container .tel .tel-1:hover {
  color: #1E97EF;
}
header .container .tel .tel-1 {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
header .container .tel .tel-1 img {
  margin-right: 15px;
}
header .container .tel .tel-2:hover {
  color: #1E97EF;
}
header .container .tel .tel-2 {
  cursor: pointer;
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
header .container .tel .tel-2 img {
  margin-right: 15px;
}

.main {
  background-image: url(../images/about/main-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 85px;
}
.main .container .dom {
  font-size: 12px;
  line-height: 14px;
  padding-top: 40px;
  margin-bottom: 70px;
}
.main .container .dom span {
  color: #1E97EF;
}
.main .container .title {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 65px;
}

.price {
  padding-top: 50px;
  background-image: url(../images/price-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 900px;
  margin-bottom: 150px;
}
.price .container .title {
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  color: #1E97EF;
  font-weight: 700;
  margin-bottom: 70px;
}
.price .container .price-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price .container .price-inner .item {
  cursor: pointer;
  width: 420px;
  height: 560px;
  border: 1px solid #1E97EF;
  background-color: #fff;
  -webkit-box-shadow: 1px 4px 8px 4px rgba(30, 151, 239, 0.06);
          box-shadow: 1px 4px 8px 4px rgba(30, 151, 239, 0.06);
  border-radius: 30px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price .container .price-inner .item .item-title {
  margin-top: 60px;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}
.price .container .price-inner .item .line {
  width: 310px;
  height: 2px;
  background-color: #1E97EF;
}
.price .container .price-inner .item .list {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 28px;
  text-transform: uppercase;
}
.price .container .price-inner .item .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price .container .price-inner .item .list li div {
  text-align: center;
}
.price .container .price-inner .item .list li svg {
  margin-right: 10px;
  width: 6px;
  height: 6px;
  margin-top: -5px;
}
.price .container .price-inner .item .text {
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}
.price .container .price-inner .item .button button {
  margin-bottom: 50px;
  padding: 28px 55px;
  border-radius: 40px;
  border: 1px solid #1E97EF;
  background-color: transparent;
  color: #1E97EF;
  text-transform: uppercase;
  width: 315px;
  font-weight: 700;
  cursor: pointer;
}
.price .container .price-inner .item:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 3px solid #1E97EF;
}
.price .container .price-inner .item:hover .item-title {
  color: #1E97EF;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.price .container .price-inner .item:hover .button button {
  background: -webkit-gradient(linear, left top, left bottom, from(#1E97EF), to(#006FBF));
  background: linear-gradient(180deg, #1E97EF 0%, #006FBF 100%);
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service {
  margin-bottom: 150px;
}
.service .container .title {
  text-transform: uppercase;
  font-size: 48px;
  line-height: 34px;
  font-weight: 700;
  color: #1E97EF;
  margin-bottom: 65px;
}
.service .container nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-left: 20px;
  text-transform: uppercase;
}
.service .container nav li:hover {
  color: #1E97EF;
}
.service .container nav li {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  margin-right: 30px;
}
.service .container .line {
  background: #1E97EF;
  opacity: 1;
  margin-bottom: 50px;
}
.service .container .service-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin: 0 auto;
}
.service .container .service-inner .item {
  width: 390px;
  height: 300px;
  border: 1px solid #1E97EF;
  border-radius: 30px;
  -webkit-box-shadow: 1px 4px 8px 4px rgba(30, 151, 239, 0.06);
          box-shadow: 1px 4px 8px 4px rgba(30, 151, 239, 0.06);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1 1;
          flex: 1 1 1 1;
  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: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 30px;
  margin-right: 15px;
  margin-bottom: 100px;
}
.service .container .service-inner .item .subtitle {
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  font-weight: 700;
}
.service .container .service-inner .item .service-price {
  text-transform: uppercase;
  line-height: 28px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 60px;
}
.service .container .service-inner .item .service-price span {
  font-size: 24px;
  color: #1E97EF;
}
.service .container .service-inner .item .service-price span .mini {
  font-size: 14px;
}
.service .container .service-inner .item img {
  width: 100px;
  margin-bottom: 10px;
}

.slider-sect {
  background-image: url(../images/main-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 1000px;
}
.slider-sect .container .title {
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 50px;
}
.slider-sect .container .title span {
  color: #1E97EF;
}

footer {
  background-color: #f1f1f1;
  padding-top: 50px;
  padding-bottom: 50px;
  position: static;
}
footer .container .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .container .footer-inner .logo div {
  margin-top: 22px;
  text-transform: uppercase;
}
footer .container .footer-inner .navbar {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .container .footer-inner .navbar .list {
  margin-top: 55px;
  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;
  width: 625px;
  margin-bottom: 55px;
}
footer .container .footer-inner .navbar .list li:hover {
  color: #1E97EF;
  font-weight: 700;
}
footer .container .footer-inner .navbar .list li {
  font-size: 24px;
  line-height: 28px;
}
footer .container .footer-inner .navbar .link {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  font-size: 14px;
}
footer .container .footer-inner .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .container .footer-inner .info .tel {
  margin-bottom: 25px;
}
footer .container .footer-inner .info .tel a {
  line-height: 22px;
  font-weight: 700;
  margin-right: 22px;
  color: #1E97EF;
}
footer .container .footer-inner .info .adres {
  margin-bottom: 50px;
}
footer .container .footer-inner-mb {
  display: none;
}
footer .container .footer-inner-mb .logo {
  margin-bottom: 15px;
}
footer .container .footer-inner-mb .logo a img {
  width: 85px;
  height: 50px;
}
footer .container .footer-inner-mb .mb-inner {
  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;
}
footer .container .footer-inner-mb .mb-inner .one div {
  font-size: 6px;
  line-height: 7px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
footer .container .footer-inner-mb .mb-inner .one a {
  text-transform: uppercase;
  font-size: 6px;
  line-height: 7px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
footer .container .footer-inner-mb .mb-inner .two div {
  font-size: 6px;
  line-height: 7px;
  margin-bottom: 15px;
}
footer .container .footer-inner-mb .mb-inner .two a {
  text-transform: uppercase;
  font-size: 6px;
  line-height: 7px;
}
footer .container .footer-inner-mb .mb-inner .tree {
  font-size: 10px;
  line-height: 12px;
  color: #1E97EF;
  font-weight: 700;
}
footer .container .footer-inner-mb .mb-inner .tree a {
  display: block;
  margin-bottom: 11px;
}

@media (max-width: 1650px) {
  .container {
    min-width: 1400px;
  }
}
@media (max-width: 1400px) {
  .container {
    min-width: 1200px;
  }

  .price .container .price-inner .item {
    width: 376px;
  }
}
@media (max-width: 1200px) {
  .container {
    min-width: 900px;
  }

  header .container .nav {
    margin-left: -300px;
  }
  header .container .tel {
    display: none;
  }

  .price {
    display: block;
    background-image: none;
  }
  .price .container .price-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .price .container .price-inner .item {
    width: 476px;
    margin-bottom: 45px;
  }

  .service {
    margin-top: 1200px;
  }

  footer .container .footer-inner {
    display: none;
  }
  footer .container .footer-inner-mb {
    display: block;
  }
  footer .container .footer-inner-mb .logo {
    margin-bottom: 25px;
  }
  footer .container .footer-inner-mb .logo a img {
    width: 160px;
    height: 120px;
  }
  footer .container .footer-inner-mb .mb-inner .one div {
    font-size: 14px;
    line-height: 16px;
  }
  footer .container .footer-inner-mb .mb-inner .one a {
    font-size: 14px;
    line-height: 16px;
  }
  footer .container .footer-inner-mb .mb-inner .two div {
    font-size: 14px;
    line-height: 16px;
  }
  footer .container .footer-inner-mb .mb-inner .two a {
    font-size: 14px;
    line-height: 14px;
  }
  footer .container .footer-inner-mb .mb-inner .tree {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    min-width: 768px;
  }

  .service .container .service-inner .item {
    max-width: 130px;
    max-height: 110px;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
  }
  .service .container .service-inner .item img {
    max-width: 36px;
    margin-bottom: 5px;
  }
  .service .container .service-inner .item .subtitle {
    font-size: 9px;
    line-height: 11px;
  }
  .service .container .service-inner .item .service-price {
    font-size: 6px;
    line-height: 20px;
    margin: 0;
  }
  .service .container .service-inner .item .service-price span {
    font-size: 10px;
    line-height: 20px;
  }
  .service .container .service-inner .item .service-price span .mini {
    font-size: 6px;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    min-width: 560px;
  }

  .menu-btn {
    display: block;
  }

  .menu-burger .menu .logo {
    padding: 20px 15px;
  }
  .menu-burger .menu .logo a img {
    max-width: 150px;
  }
  .menu-burger .menu nav {
    margin-left: 25px;
  }
  .menu-burger .menu nav li:hover {
    color: #1E97EF;
  }
  .menu-burger .menu nav li {
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .menu-burger .menu nav li:nth-child(5) {
    margin-bottom: 35px;
  }
  .menu-burger .menu .adres {
    margin-left: -8px;
    font-size: 14px;
    line-height: 17px;
  }
  .menu-burger .menu .adres li {
    margin-bottom: 10px;
  }
  .menu-burger .menu .adres li:hover {
    color: #1E97EF;
  }
  .menu-burger .menu .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -10px;
    margin-bottom: 30px;
  }
  .menu-burger .menu .items li {
    margin-right: 30px;
  }
  .menu-burger .menu .items li:hover a path {
    fill: #1E97EF;
  }
  .menu-burger .menu .items li:hover a circle {
    stroke: #1E97EF;
  }
  .menu-burger .menu .button button:hover {
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#1E97EF), to(#006FBF));
    background: linear-gradient(180deg, #1E97EF 0%, #006FBF 100%);
  }
  .menu-burger .menu .button button {
    border: 2px solid #1E97EF;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    font-weight: 700;
    width: 150px;
    outline: none;
    border-radius: 40px;
    padding: 15px;
    margin-left: 15px;
    color: #1E97EF;
  }

  header .container .nav {
    display: none;
  }
  header .container .logo a img {
    width: 190px;
  }

  .main .container .dom {
    padding-top: 20px;
    margin-bottom: 10px;
  }
  .main .container .title {
    font-size: 23px;
    line-height: 27px;
    padding-bottom: 20px;
  }

  .price .container .title {
    font-size: 24px;
    line-height: 34px;
  }

  .service .container .title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 30px;
  }
  .service .container nav {
    width: 100%;
    margin-bottom: 10px;
  }
  .service .container nav li {
    font-size: 6px;
    line-height: 7px;
    margin-right: 20px;
  }
  .service .container .line {
    margin-bottom: 30px;
  }
  .service .container .service-inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .slider-sect .container .title {
    font-size: 24px;
    line-height: 34px;
  }

  footer .container .footer-inner {
    display: none;
  }
  footer .container .footer-inner-mb {
    display: block;
  }
  footer .container .footer-inner-mb .logo {
    margin-bottom: 25px;
  }
  footer .container .footer-inner-mb .logo a img {
    width: 85px;
    height: 50px;
  }
  footer .container .footer-inner-mb .mb-inner .one div {
    font-size: 6px;
    line-height: 7px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  footer .container .footer-inner-mb .mb-inner .one a {
    text-transform: uppercase;
    font-size: 6px;
    line-height: 7px;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  footer .container .footer-inner-mb .mb-inner .two div {
    font-size: 6px;
    line-height: 7px;
    margin-bottom: 15px;
  }
  footer .container .footer-inner-mb .mb-inner .two a {
    text-transform: uppercase;
    font-size: 6px;
    line-height: 7px;
  }
  footer .container .footer-inner-mb .mb-inner .tree {
    font-size: 10px;
    line-height: 12px;
  }
}
@media (max-width: 560px) {
  .container {
    min-width: 360px;
  }

  .logo a img {
    max-width: 92px;
  }

  .price .container .price-inner .item {
    width: 356px;
    margin-bottom: 30px;
  }

  /* .menu-burger .menu-btn span {
    width: 40px;
    top: 5%;
  }
  .menu-burger .menu-btn span:nth-of-type(2) {
    top: calc(5% - 8px);
  }
  .menu-burger .menu-btn span:nth-of-type(3) {
    top: calc(5% + 8px);
  }
  .menu-burger .menu-btn span:nth-of-type(4) {
    top: calc(5% + 15px);
  }
  .menu-burger .menu-btn .menu .logo a img {
    width: 150px;
  } */

  .menu {
    width: 90%;
  }

  .menu-btn.active span:nth-of-type(2) {
    top: 4%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    z-index: 2000;
    width: 30px;
    left: 87%;
  }

  .menu-btn.active span:nth-of-type(3) {
    top: 4%;
    left: 87%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    z-index: 1001;
    width: 30px;
  }
}
@media (max-width: 360px) {
  .container {
    min-width: 300px;
  }

  .price .container .title {
    font-size: 23px;
    line-height: 27px;
    margin-bottom: 40px;
  }
  .price .container .price-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .price .container .price-inner .item {
    width: 300px;
    height: 390px;
  }
  .price .container .price-inner .item .item-title {
    font-style: 18px;
    line-height: 28px;
  }
  .price .container .price-inner .item .line {
    width: 250px;
  }
  .price .container .price-inner .item .list {
    font-size: 14px;
    line-height: 28px;
  }
  .price .container .price-inner .item .text {
    font-size: 14px;
    line-height: 28px;
  }
  .price .container .price-inner .item .button button {
    width: 255px;
    font-size: 14px;
    line-height: 16px;
  }
}
