/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../themes/ttrans/assets/lib/slick-1.8.1/slick/./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../themes/ttrans/assets/lib/slick-1.8.1/slick/./fonts/slick.eot');
    src: url('../themes/ttrans/assets/lib/slick-1.8.1/slick/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('../themes/ttrans/assets/lib/slick-1.8.1/slick/./fonts/slick.woff') format('woff'), url('../themes/ttrans/assets/lib/slick-1.8.1/slick/./fonts/slick.ttf') format('truetype'), url('../themes/ttrans/assets/lib/slick-1.8.1/slick/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #fff;
  color: #2D3033;
}
img {
  max-width: 100%;
}
a {
  color: black;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.5s;
}
p {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
}
h1, .h1, h2, .h2 {
  font-family: Roboto;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: center;
  color: #245778;
  margin-bottom: 48px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h1, .h1, h2, .h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
h2, .h2 {
  font-size: 30px;
  font-weight: 400;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
h3, .h3 {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 24px;
  color: #245778;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 16x;
    line-height: 32px;
  }
}
.inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}
.row, .items, header .menu-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
.item {
  padding: 0 15px;
  width: 33.3333%;
}
.row4 .item {
  padding: 0 15px;
  width: 25%;
}
.left, .right {
  padding: 0 15px;
  width: 50%;
}
.btn, form button[type="submit"], header .online-order, header .online-order-mob, header .menu-block .items > li > ul li:hover, header .menu-block .items > li > ul li.active, header .menu-block .items > li:hover, header .menu-block .items > li.active, main .main-advantages, main .main-cost .attach .attach-open, main .main-cost button[type="submit"], main .service-cta, main .orderpage .tabs .tab:hover, main .orderpage .tabs .tab.active, footer {
  background: linear-gradient(160.2deg, #245778 0%, #1A3F57 100%);
  color: white;
}
.section {
  padding: 64px;
}
.section.service-top {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .section {
    padding: 30px 0;
  }
  .section.service-top h1, .section.service-top .h1 {
    margin-bottom: 30px;
  }
}
.red {
  color: red;
  font-weight: 400;
}
label.error {
  color: red;
}
label.error.valid {
  position: absolute;
  right: 15px;
  bottom: 13px;
  content: url(/images/yes.svg);
  z-index: 10;
}
.btn {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  color: white;
  padding: 15px 25px;
  outline: none;
  border: none;
  text-transform: uppercase;
}
.btn * {
  color: white;
}
.btn-inverse {
  background: white;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  color: #245778;
  padding: 15px 25px;
  outline: none;
  border: none;
  text-transform: uppercase;
  display: inline-block;
}
.btn-inverse * {
  color: #245778;
}
.select2-container {
  width: 100% !important;
}
.select2-container--default .select2-selection--single {
  padding: 11px 15px;
  height: auto;
  border: 1px solid #C3D1D1;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-left: -23px;
  margin-top: 3px;
  content: url(/images/down.svg);
  border: none;
  width: 13px;
  height: 7px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
}
.select2-results * {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
}
.radio-wrap {
  margin-right: 15px;
  cursor: pointer;
}
.radio-wrap i {
  content: url("/images/radio-blank.svg");
}
.radio-wrap.active i {
  content: url("/images/radio-filled.svg");
}
.radio-wrap input[type="radio"] {
  display: none;
}
.check-wrap {
  margin-right: 15px;
  cursor: pointer;
}
.check-wrap i {
  content: url("/images/check-blank.svg");
}
.check-wrap.active i {
  content: url("/images/check-filled.svg");
}
.check-wrap input[type="checkbox"] {
  display: none;
}
main .main-news .items .item, main .news-news .item, main .projects-projects .item, main .services-services .item {
  margin-bottom: 30px;
}
main .main-news .items .item .item-inner, main .news-news .item .item-inner, main .projects-projects .item .item-inner, main .services-services .item .item-inner {
  background: white;
  height: 100%;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 1s;
}
main .main-news .items .item .item-inner:hover, main .news-news .item .item-inner:hover, main .projects-projects .item .item-inner:hover, main .services-services .item .item-inner:hover {
  background: #245778;
}
main .main-news .items .item .item-inner:hover .title a, main .news-news .item .item-inner:hover .title a, main .projects-projects .item .item-inner:hover .title a, main .services-services .item .item-inner:hover .title a, main .main-news .items .item .item-inner:hover .text, main .news-news .item .item-inner:hover .text, main .projects-projects .item .item-inner:hover .text, main .services-services .item .item-inner:hover .text, main .main-news .items .item .item-inner:hover .date, main .news-news .item .item-inner:hover .date, main .projects-projects .item .item-inner:hover .date, main .services-services .item .item-inner:hover .date {
  color: white;
}
main .main-news .items .item .date, main .news-news .item .date, main .projects-projects .item .date, main .services-services .item .date {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: #989898;
  margin-bottom: 12px;
  margin-top: 15px;
  padding: 0 15px;
}
main .main-news .items .item .title, main .news-news .item .title, main .projects-projects .item .title, main .services-services .item .title {
  margin-bottom: 40px;
  padding: 0 15px;
  padding-top: 15px;
  flex: 20%;
}
@media (max-width: 767px) {
  main .main-news .items .item .title, main .news-news .item .title, main .projects-projects .item .title, main .services-services .item .title {
    flex: none;
    margin-bottom: 15px;
  }
}
main .main-news .items .item .title a, main .news-news .item .title a, main .projects-projects .item .title a, main .services-services .item .title a {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: #245778;
  text-decoration: none;
}
main .main-news .items .item .text, main .news-news .item .text, main .projects-projects .item .text, main .services-services .item .text {
  padding: 0 15px;
  margin-bottom: 30px;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #2D3033;
  flex: 40%;
}
@media (max-width: 767px) {
  main .main-news .items .item .text, main .news-news .item .text, main .projects-projects .item .text, main .services-services .item .text {
    flex: none;
  }
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style-type: none;
  margin-top: 50px;
}
.pagination li {
  margin: 0 7px;
}
@media (max-width: 767px) {
  .pagination li {
    margin-bottom: 10px;
  }
}
.pagination li a {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
  color: #2F3131;
  border: 1px solid silver;
  border-radius: 20px;
  padding: 5px 22px;
}
.pagination li:hover a, .pagination li.active a {
  border: 1px solid #245778;
  color: #245778;
}
.pagination li.round a {
  padding: 5px 10px;
}
.pagination .arrow-prev {
  content: url("/images/prev.svg");
  transform: rotate(0deg);
  position: relative;
  top: 2px;
  left: -1px;
}
.pagination .arrow-next {
  content: url("/images/prev.svg");
  transform: rotate(180deg);
  position: relative;
  top: 2px;
  left: 1px;
}
.pagination a:hover .arrow-prev {
  content: url("/images/next.svg");
  transform: rotate(180deg);
}
.pagination a:hover .arrow-next {
  content: url("/images/next.svg");
  transform: rotate(0deg);
}
.content h2, .content .h2 {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 24px;
  color: #245778;
  text-transform: none;
}
@media (max-width: 767px) {
  .content h2, .content .h2 {
    font-size: 16x;
    line-height: 32px;
  }
}
.content h2, .content h3, .content .h2, .content .h3 {
  text-align: left;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .content h2, .content h3, .content .h2, .content .h3 {
    font-size: 18px;
  }
}
.content p {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 20px;
}
.content .error {
  color: red;
}
.content .bigger {
  font-size: 18px;
  font-weight: 400;
}
.content a {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #245778;
}
.content ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 30px;
}
.content ul li {
  position: relative;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 10px;
}
.content ul li p:only-child {
  margin-bottom: 0px;
}
.content ul li:before {
  content: url("/images/bullet.svg");
  display: block;
  position: absolute;
  top: -2px;
  left: -20px;
}
.content ol {
  counter-reset: item;
  padding-left: 20px;
  list-style-type: none;
  margin-bottom: 30px;
}
.content ol li {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  position: relative;
}
.content ol li:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: -2px;
  left: -20px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
}
.content blockquote {
  background: #F3F3F3;
  padding: 30px 60px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .content blockquote {
    margin-left: -30px;
    margin-right: -30px;
    padding: 30px;
  }
}
.content blockquote * {
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  font-style: italic;
}
@media (max-width: 767px) {
  .content blockquote * {
    font-size: 16px;
    line-height: 30px;
  }
}
.content blockquote p:last-child {
  margin-bottom: 0;
}
.content .tpl-photo {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-bottom: 30px;
}
.content .tpl-photo .left {
  padding: 0 15px;
}
.content .tpl-photo .left img {
  width: 100%;
}
.content .tpl-photo .right {
  padding: 0 15px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
}
.content .tpl-photo.photo-align-right .image {
  order: 2;
}
.content .tpl-photo.photo-align-right .text {
  order: 1;
}
.content .tpl-photo.photo-width20 .image {
  width: 20%;
}
.content .tpl-photo.photo-width20 .text {
  width: 80%;
}
.content .tpl-photo.photo-width25 .image {
  width: 25%;
}
.content .tpl-photo.photo-width25 .text {
  width: 75%;
}
.content .tpl-photo.photo-width33 .image {
  width: 33.3333%;
}
.content .tpl-photo.photo-width33 .text {
  width: 66.6666%;
}
.content .tpl-photo.photo-width40 .image {
  width: 40%;
}
.content .tpl-photo.photo-width40 .text {
  width: 60%;
}
.content .tpl-photo.photo-width50 .image {
  width: 50%;
}
.content .tpl-photo.photo-width50 .text {
  width: 50%;
}
.content .tpl-photo.photo-width66 .image {
  width: 66.6666%;
}
.content .tpl-photo.photo-width66 .text {
  width: 33.3333%;
}
.content .tpl-photo.photo-width75 .image {
  width: 75%;
}
.content .tpl-photo.photo-width75 .text {
  width: 25%;
}
.content .tpl-photo.photo-width100 .image {
  width: 100%;
}
.content .tpl-photo.photo-width100 .text {
  width: 100%;
}
.content .tpl-video {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-bottom: 30px;
}
.content table {
  width: 100% !important;
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  outline: none;
  margin-bottom: 30px;
}
.content table tr td {
  border: none;
  padding: 15px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
}
.content table tr td i {
  font-size: 12px;
  line-height: 14px;
  color: #aaa;
}
.content table tr td.red {
  font-weight: 500;
}
.content table tr:nth-child(2n-1) {
  background: #F3F3F3;
}
.content .tpl-slider {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-bottom: 30px;
}
.content .tpl-slider .image img {
  width: 100%;
}
.content .tpl-slider .slick-dots {
  bottom: 30px;
}
@media (max-width: 1099px) {
  .content .tpl-slider .slick-dots {
    bottom: 15px;
  }
}
.content .tpl-slider .slick-dots li:before {
  content: " ";
}
.content .tpl-slider .slick-dots li button:before {
  font-size: 16px;
  opacity: 1;
  color: white;
}
@media (max-width: 1099px) {
  .content .tpl-slider .slick-dots li button:before {
    font-size: 10px;
  }
}
.content .tpl-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
  font-size: 12px;
  border: 2px solid white;
  border-radius: 100%;
  line-height: 12px;
  height: 10px;
  width: 10px;
  top: 2px;
}
@media (max-width: 1099px) {
  .content .tpl-slider .slick-dots li.slick-active button:before {
    height: 7px;
    width: 7px;
    top: 4px;
  }
}
.content .tpl-cite1 {
  background: #F3F3F3;
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .content .tpl-cite1 {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.content .tpl-cite1 .left {
  width: 180px;
  position: relative;
}
.content .tpl-cite1 .left img {
  width: 100px;
}
.content .tpl-cite1 .left:after {
  content: " ";
  display: block;
  width: 37px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 17px;
  right: 5px;
}
@media (max-width: 767px) {
  .content .tpl-cite1 .left:after {
    display: none;
  }
}
.content .tpl-cite1 .right {
  flex: 1;
}
@media (max-width: 767px) {
  .content .tpl-cite1 .right {
    margin-top: 30px;
  }
}
.content .tpl-cite1 .right .text * {
  font-family: Roboto;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
}
@media (max-width: 767px) {
  .content .tpl-cite1 .right .text * {
    font-size: 16px;
    line-height: 30px;
  }
}
.content .tpl-cite1 .right p.label1 {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 5px;
}
.content .tpl-cite1 .right p.label2 {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 5px;
}
.stdpage .inner, main .news-detail .inner, main .orderpage .inner, main .contactpage .inner {
  padding: 0 130px;
}
@media (max-width: 1099px) {
  .stdpage .inner, main .news-detail .inner, main .orderpage .inner, main .contactpage .inner {
    padding: 0 30px;
  }
}
form .field {
  margin-bottom: 25px;
  position: relative;
}
form .field.radiofield {
  display: flex;
}
form .field.radiofield label {
  order: 2;
}
form .field.radiofield input {
  order: 1;
  position: relative;
  top: 5px;
  margin-right: 10px;
}
form .field.checkboxfield {
  display: flex;
}
form .field.checkboxfield label {
  order: 2;
}
form .field.checkboxfield input {
  order: 1;
  position: relative;
  top: 5px;
  margin-right: 10px;
}
form .field.hidden {
  display: none;
}
form label {
  display: block;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
}
form input[type="text"], form input[type="email"], form input[type="date"], form textarea {
  background: #FFFFFF;
  border: 1px solid #C3D1D1;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 5px 10px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
}
form textarea {
  min-height: 100px;
}
form button[type="submit"] {
  padding: 0px 15px;
  color: white;
  border: none;
  outline: none;
  width: 215px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: center;
  cursor: pointer;
}
form select {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #C3D1D1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px 15px;
  width: 100%;
}
.thanks {
  display: none;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
}
#toTop {
  content: url(/storage/app/media/up.svg);
  width: 30px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  text-align: center;
  padding: 7px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  display: none;
  color: #333;
  font-family: verdana;
  font-size: 11px;
  border-radius: 30px;
}
.slick-slider {
  padding-bottom: 30px;
}
.slick-slide img {
  margin: 0 auto;
}
.slick-dots {
  bottom: -10px;
}
.slick-dots > li:only-child {
  display: none;
}
.slick-dots li {
  width: 15px;
}
.slick-dots li button:before {
  font-size: 8px;
  opacity: 1;
  color: #C4C4C4;
}
@media (max-width: 1099px) {
  .slick-dots li button:before {
    font-size: 10px;
  }
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #245778;
}
header {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  padding: 0 30px;
}
@media (max-width: 679px) {
  header {
    min-height: 110px;
  }
}
header .inner {
  padding: 0;
}
header .inner .row {
  align-items: center;
  min-height: 90px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1099px) {
  header .inner .row {
    display: block;
    margin: 0;
  }
}
header .inner .row .top1 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 10px;
}
header .inner .row .top1 a, header .inner .row .top1 span {
  font-family: Roboto;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-align: left;
  margin-right: 15px;
  text-transform: uppercase;
}
header .inner .row .top1 a {
  color: #245778;
}
header .inner .row .header-1 {
  flex-basis: 5%;
  flex-grow: 2;
  padding: 0 15px;
}
header .inner .row .header-1 .top1-mob {
  display: none;
}
@media (max-width: 1099px) {
  header .inner .row .header-1 .top1-mob {
    display: block;
    position: absolute;
    top: 0;
    left: 190px;
    margin-top: 0;
  }
  header .inner .row .header-1 .top1-mob a {
    display: block;
  }
  header .inner .row .header-1 .top1-mob a + a {
    margin-top: 5px;
  }
}
@media (max-width: 679px) {
  header .inner .row .header-1 .top1-mob {
    position: static;
  }
}
header .inner .row .header-2 {
  flex-basis: 5%;
  flex-grow: 14;
  padding: 0 15px;
}
@media (max-width: 1099px) {
  header .inner .row .header-2 .top1 {
    display: none;
  }
}
header .inner .row .header-3 {
  flex-basis: 5%;
  flex-grow: 4;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1279px) {
  header .inner .row .header-3 {
    flex-grow: 5;
  }
}
@media (max-width: 1099px) {
  header .inner .row .header-3 {
    position: absolute;
    right: 0;
    top: 25px;
  }
}
@media (max-width: 679px) {
  header .inner .row .header-3 {
    display: block;
  }
}
header .inner .row .header-3 a + a {
  margin-left: 15px;
}
header .inner .row .header-3 a + a.online-order-mob {
  margin-left: 25px;
}
header .inner .row .header-3 .menu-button {
  display: none;
  content: url("/images/menu-button.svg");
  top: 33px;
  right: 30px;
  width: 36px;
  height: 23px;
  margin-left: 20px;
  order: 3;
}
@media (max-width: 1099px) {
  header .inner .row .header-3 .menu-button {
    display: block;
  }
}
@media (max-width: 679px) {
  header .inner .row .header-3 .menu-button {
    margin-left: auto;
  }
}
header .inner .row .header-3 .menu-button.close {
  content: url("/images/close.svg?2");
}
@media (max-width: 679px) {
  header .inner .row .header-3 .buttons {
    margin-top: 15px;
    display: block;
  }
}
header .online-order, header .online-order-mob {
  text-transform: uppercase;
  padding: 10px 12px;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
  margin-left: 25px;
}
@media (max-width: 767px) and (min-width: 680px) {
  header .online-order, header .online-order-mob {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1099px) {
  header .online-order {
    display: none;
  }
}
header .online-order-mob {
  display: none;
}
@media (max-width: 1099px) and (min-width: 680px) {
  header .online-order-mob {
    display: inline-block;
    width: 124px;
    right: 92px;
    top: 25px;
    margin: 0;
    margin-left: 20px;
  }
}
@media (max-width: 679px) {
  header .online-order-mob {
    display: none;
  }
}
header .online-order-supermob {
  display: none;
}
@media (max-width: 679px) {
  header .online-order-supermob {
    display: inline-block;
    margin-top: 20px;
  }
}
header .top-tg {
  width: 38px;
  height: 38px;
  background: url("/images/tg.svg") no-repeat;
  display: inline-block;
  background-size: contain;
}
header .top-wh {
  width: 38px;
  height: 38px;
  background: url("/images/wh.svg") no-repeat;
  display: inline-block;
  background-size: contain;
}
@media (max-width: 1099px) {
  header .logo-block {
    position: relative;
    top: 25px;
  }
}
@media (max-width: 679px) {
  header .logo-block {
    top: 15px;
  }
}
header .logo-block .logo {
  content: url("/images/ttrans_logo.svg");
  width: 100%;
  max-width: 150px;
  height: 100%;
}
@media (max-width: 767px) {
  header .logo-block .logo {
    height: auto;
    width: 180px;
  }
}
@media (max-width: 1099px) {
  header .menu-outer {
    display: none;
    margin: 0;
    padding: 0;
  }
}
header .menu-block {
  align-items: center;
  margin: 0;
}
@media (max-width: 1099px) {
  header .menu-block {
    display: block;
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
header .menu-block .items {
  list-style-type: none;
  justify-content: flex-start;
  margin: 0;
}
@media (max-width: 1099px) {
  header .menu-block .items {
    display: block;
    width: 100%;
  }
}
@media (max-width: 679px) {
  header .menu-block .items {
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 20px;
  }
}
header .menu-block .items > li {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
@media (max-width: 1099px) {
  header .menu-block .items > li {
    display: block;
    height: auto;
  }
}
header .menu-block .items > li > a {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  color: #245778;
  line-height: 50px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 1099px) {
  header .menu-block .items > li > a {
    line-height: 50px;
    padding: 0 15px;
  }
}
@media (max-width: 1099px) {
  header .menu-block .items > li > ul {
    display: none !important;
  }
}
header .menu-block .items > li > ul li a {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  color: #245778;
  padding: 15px;
  display: block;
}
header .menu-block .items > li > ul li:hover > a, header .menu-block .items > li > ul li.active > a {
  color: white;
}
header .menu-block .items > li .home {
  font-size: 0;
  width: 18px;
}
header .menu-block .items > li .home:before {
  content: url("/images/home1.svg");
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 8px;
  left: 15px;
}
@media (max-width: 1099px) {
  header .menu-block .items > li .home {
    font-size: 12px;
    width: 100%;
  }
  header .menu-block .items > li .home:before {
    display: none;
  }
}
header .menu-block .items > li:hover > a, header .menu-block .items > li.active > a {
  color: white;
}
header .menu-block .items > li:hover > .home:before, header .menu-block .items > li.active > .home:before {
  content: url("/images/home.svg");
  display: block;
}
@media (max-width: 1099px) {
  header .menu-block .items > li:hover > .home:before, header .menu-block .items > li.active > .home:before {
    display: none;
  }
}
header .menu-block .items li > ul {
  list-style-type: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background: white;
  z-index: 10;
}
header .menu-block .items li:hover > ul {
  display: block;
}
main .main-slider .inner {
  padding: 0;
}
main .main-slider .item {
  width: 100%;
  padding: 0;
  position: relative;
}
main .main-slider .item .link-outer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0px 3%;
}
main .main-slider .item .link {
  font-family: Roboto;
  font-size: 64px;
  font-style: normal;
  font-weight: 200;
  line-height: 96px;
  letter-spacing: 0em;
  text-align: center;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  outline: none;
  width: 100%;
}
@media (max-width: 767px) {
  main .main-slider .item .link {
    font-size: 20px;
    line-height: 32px;
  }
}
main .main-slider .slick-slider {
  padding-bottom: 0;
}
main .main-slider .slick-dots {
  bottom: 30px;
}
@media (max-width: 1099px) {
  main .main-slider .slick-dots {
    bottom: 15px;
  }
}
main .main-slider .slick-dots li button:before {
  font-size: 16px;
  opacity: 1;
  color: white;
}
@media (max-width: 1099px) {
  main .main-slider .slick-dots li button:before {
    font-size: 10px;
  }
}
main .main-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
  font-size: 12px;
  border: 2px solid white;
  border-radius: 100%;
  line-height: 12px;
  height: 10px;
  width: 10px;
  top: 2px;
}
@media (max-width: 1099px) {
  main .main-slider .slick-dots li.slick-active button:before {
    height: 7px;
    width: 7px;
    top: 4px;
  }
}
main .main-about .inner-padding {
  padding: 0 64px;
}
@media (max-width: 767px) {
  main .main-about .inner-padding {
    padding: 0;
  }
}
main .main-about .left {
  padding: 0 64px;
  width: 60%;
}
@media (max-width: 767px) {
  main .main-about .left {
    padding: 0 15px;
    margin-bottom: 30px;
  }
}
main .main-about .left .text, main .main-about .left .text p {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
}
main .main-about .right {
  padding: 0 64px;
  width: 40%;
}
@media (max-width: 767px) {
  main .main-about .right {
    padding: 0 15px;
  }
}
main .main-about .right .services-items {
  list-style-type: none;
  padding-left: 20px;
}
main .main-about .right .services-items li {
  position: relative;
}
main .main-about .right .services-items li:before {
  /*
                        content: url('/images/li.svg');
                        display: block;
                        position: absolute;
                        top: -3px;
                        left: -20px;*/
  content: url(/images/bullet.svg);
  display: block;
  position: absolute;
  top: -2px;
  left: -20px;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
  color: #245778;
}
main .main-about .right .services-items li a {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
  color: #5A5A5A;
}
main .main-advantages * {
  color: white;
}
main .main-advantages .item {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  main .main-advantages .item {
    margin-bottom: 30px;
  }
}
main .main-advantages .item h3, main .main-advantages .item .h3 {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 32px;
  flex: 2;
}
@media (max-width: 767px) {
  main .main-advantages .item h3, main .main-advantages .item .h3 {
    flex: none;
    margin-bottom: 10px;
  }
}
main .main-advantages .item p {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  flex: 4;
}
@media (max-width: 767px) {
  main .main-advantages .item p {
    flex: none;
  }
}
main .main-advantages .item .preim {
  display: block;
  margin: 0 auto;
  margin-bottom: 43px;
  width: 90px;
  height: 90px;
}
@media (max-width: 767px) {
  main .main-advantages .item .preim {
    margin-bottom: 10px;
  }
}
main .main-advantages .item .preim1 {
  content: url("/images/preim1.svg");
}
main .main-advantages .item .preim2 {
  content: url("/images/preim2.svg");
}
main .main-advantages .item .preim3 {
  content: url("/images/preim3.svg");
}
main .main-advantages .item .preim4 {
  content: url("/images/preim4.svg");
}
main .main-advantages .item .preim5 {
  content: url("/images/preim5.svg");
}
main .main-advantages .item .preim6 {
  content: url("/images/preim6.svg");
}
main .main-advantages .item .preim7 {
  content: url("/images/preim7.svg");
}
main .main-advantages .item .preim8 {
  content: url("/images/preim8.svg");
}
main .main-advantages .item .preim9 {
  /*content: url('/images/preim9.svg');*/
}
main .main-advantages .item .preim10 {
  content: url("/images/preim10.svg");
}
main .main-advantages.about-advantages .title {
  text-align: center;
  margin-bottom: 50px;
}
main .main-advantages.about-advantages h3, main .main-advantages.about-advantages h4, main .main-advantages.about-advantages .h3, main .main-advantages.about-advantages .h4 {
  margin-bottom: 10px;
}
main .main-advantages.about-advantages .item {
  margin-bottom: 50px;
}
main .main-cost {
  background: url("/images/costback.svg") no-repeat;
  background-size: 100% auto;
}
main .main-cost .inner {
  padding: 0 200px;
}
@media (max-width: 767px) {
  main .main-cost .inner {
    padding: 0 30px;
  }
}
main .main-cost .field {
  margin-bottom: 20px;
}
main .main-cost label {
  display: block;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
}
main .main-cost input[type="text"], main .main-cost input[type="email"] {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #C3D1D1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px 15px;
  width: 100%;
}
main .main-cost select {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #C3D1D1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px 15px;
  width: 100%;
}
main .main-cost .line4 .field {
  margin: 0 auto;
  margin-top: 20px;
}
main .main-cost [name="attach"] {
  display: none;
}
main .main-cost .attach {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  text-align: left;
  background: #fff;
  border: 1px solid #c3d1d1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px 15px;
  width: 100%;
  height: 42px;
  position: relative;
  overflow: hidden;
}
main .main-cost .attach .attach-open {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  color: white;
  padding: 12px 25px;
  outline: 0;
  border: 0;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  cursor: pointer;
}
main .main-cost .filemessage {
  display: block;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0;
  text-align: left;
}
main .main-cost button[type="submit"] {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  color: white;
  padding: 15px 25px;
  outline: none;
  border: none;
  text-transform: uppercase;
}
main .main-cost button[type="submit"] * {
  color: white;
}
main .main-news {
  background: #E5E5E5;
}
main .main-news h2 a, main .main-news .h2 a {
  color: #245778;
}
main .main-news .items {
  padding: 0 28px;
}
@media (max-width: 767px) {
  main .main-news .items {
    padding: 0;
  }
}
main .main-geo .subtitle {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
main .main-geo .map {
  margin-top: 40px;
  text-align: center;
}
main .main-reviews {
  text-align: center;
}
main .main-partners .slick-track {
  display: flex;
}
main .main-partners .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
main .service-reviews .items {
  justify-content: center;
  margin: 0 -15px;
}
main .service-reviews .items .item {
  width: 25%;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px;
}
main .service-reviews .items .item img {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
main .service-cta {
  text-align: center;
}
main .service-cta h3, main .service-cta .h3 {
  color: white;
  text-align: center;
  margin-bottom: 40px;
}
main .service-top .intro p {
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  color: #245778;
  margin-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  main .service-top .intro p {
    font-size: 18px;
    line-height: 30px;
  }
}
main .service-top .button {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
main .service-top .button .btn {
  color: white;
}
main .service-projects {
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  main .service-projects {
    margin-bottom: 60px;
  }
}
main .service-projects .items .slick-list {
  padding-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  main .service-projects .items .slick-list {
    padding-bottom: 10px;
  }
}
main .service-projects .items .item {
  text-align: left;
}
main .service-projects .items .item .item-inner {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 1s;
}
main .service-projects .items .item .title {
  padding: 15px;
}
main .service-projects .items .item a {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  color: #245778;
  display: inline-block;
}
main .service-autos {
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  main .service-autos {
    margin-bottom: 60px;
  }
}
main .service-autos .items .slick-list {
  padding-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  main .service-autos .items .slick-list {
    padding-bottom: 10px;
  }
}
main .service-autos .items .item {
  text-align: left;
}
main .service-autos .items .item .item-inner {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 1s;
}
main .service-autos .items .item .title {
  padding: 15px;
}
main .service-autos .items .item span {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  color: #245778;
  display: inline-block;
}
main .news-news .items {
  justify-content: flex-start;
}
main .projects-projects .item .title {
  margin-bottom: 15px;
}
main .services-services .content {
  padding: 0 64px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  main .services-services .content {
    padding: 0;
  }
}
main .services-services #pdopage {
  margin-bottom: 25px;
}
main .services-services .items {
  justify-content: center;
}
main .services-services .item .title {
  margin-bottom: 15px;
  text-align: center;
}
main .services-services .item .text {
  margin-bottom: 50px;
}
main .top-image {
  margin-bottom: 30px;
  overflow: hidden;
  height: 500px;
}
main .top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  main .top-image {
    height: 260px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
main .news-detail .date {
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: #989898;
  margin-bottom: 12px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  main .news-detail .date {
    font-size: 16px;
    line-height: 20px;
  }
}
main .news-detail h1, main .news-detail .h1 {
  font-family: Roboto;
  font-size: 36px;
  font-style: normal;
  font-weight: 200;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: none;
  color: black;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  main .news-detail h1, main .news-detail .h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
main .news-detail .title {
  position: relative;
}
main .news-detail .back {
  position: absolute;
  content: url("/images/back.svg");
  display: block;
  top: 8px;
  left: -50px;
}
@media (max-width: 767px) {
  main .news-detail .back {
    display: none;
  }
}
main .news-detail .img-big {
  margin-bottom: 52px;
}
main .news-detail .introtext {
  font-size: 22px;
  line-height: 32px;
  font-style: italic;
}
main .pricespage h3, main .pricespage .h3 {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
}
main .pricespage h3, main .pricespage h3 *, main .pricespage .h3, main .pricespage .h3 * {
  color: #245778;
}
main .pricespage .prices-section {
  margin-bottom: 40px;
  overflow-x: auto;
}
main .pricespage .prices-section4 {
  overflow-x: initial;
}
main .pricespage .prices-section1 table, main .pricespage .prices-section2 table {
  width: 100%;
  min-width: 800px;
  overflow: hidden;
  overflow-x: scroll;
}
main .pricespage .prices-section1 table tr:nth-child(1) th, main .pricespage .prices-section2 table tr:nth-child(1) th {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
  padding-left: 15px;
}
main .pricespage .prices-section1 table tr:nth-child(1) th i, main .pricespage .prices-section2 table tr:nth-child(1) th i {
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: left;
  background: red;
  color: white;
  padding: 3px;
  margin-left: 5px;
}
main .pricespage .prices-section1 table tr td, main .pricespage .prices-section2 table tr td {
  border-bottom: 1px solid #C4C4C4;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
  color: #2D3033;
  padding-top: 10px;
  padding-bottom: 10px;
}
main .pricespage .prices-section1 table tr td.red, main .pricespage .prices-section2 table tr td.red {
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
}
main .pricespage .prices-section1 table tr td, main .pricespage .prices-section1 table tr th, main .pricespage .prices-section2 table tr td, main .pricespage .prices-section2 table tr th {
  padding-right: 10px;
}
main .pricespage .prices-section3 table {
  width: 100%;
}
main .pricespage .prices-section3 table tr td {
  padding: 15px;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
}
main .pricespage .prices-section3 table tr td i {
  font-size: 12px;
  line-height: 14px;
  color: #aaa;
}
main .pricespage .prices-section3 table tr td.red {
  font-weight: 500;
}
main .pricespage .prices-section3 table tr:nth-child(2n-1) {
  background: #F3F3F3;
}
main .pricespage .prices-section4 ul li {
  margin-bottom: 30px;
}
main .orderpage .tabs {
  display: flex;
  justify-content: center;
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
main .orderpage .tabs .tab {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  color: #245778;
  border: 1px solid #c4c4c4;
  width: 33.3333%;
  padding: 10px 15px;
  margin-left: -1px;
}
main .orderpage .tabs .tab:first-child {
  border-radius: 10px 0 0 10px;
  margin-left: 0;
}
main .orderpage .tabs .tab:last-child {
  border-radius: 0 10px 10px 0;
}
main .orderpage .tabs .tab:hover, main .orderpage .tabs .tab.active {
  border: 1px solid #245778;
}
main .orderpage .tabs .tab:hover {
  cursor: pointer;
}
main .orderpage .tab-content {
  display: none;
}
main .orderpage .tab-content.active {
  display: block;
}
main .orderpage .field-section {
  margin-bottom: 40px;
}
main .orderpage button[type="submit"] {
  text-transform: uppercase;
  margin: 0 auto;
  display: block;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: center;
}
main .contactpage .contacts-content .left {
  width: 60%;
  padding-right: 60px;
}
main .contactpage .contacts-content .right {
  width: 40%;
}
main .contactpage .contacts-addresses .item {
  width: 50%;
}
main .contactpage .contacts-addresses .item .item-inner {
  flex-direction: column;
  display: flex;
  justify-content: flex-start;
  height: 100%;
}
main .contactpage .contacts-addresses .item .item-inner a, main .contactpage .contacts-addresses .item .item-inner div {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
}
main .contactpage .contacts-addresses .item .item-inner a {
  display: block;
}
main .contactpage .contacts-addresses .item .item-inner div {
  margin-bottom: 40px;
}
main .contactpage .contacts-addresses .item .item-inner div:nth-child(1) {
  flex: 4;
}
main .block-gendir {
  background: #F3F3F3;
  padding: 20px;
}
main .block-gendir .left {
  width: 150px;
  position: relative;
}
main .block-gendir .left:after {
  content: " ";
  display: block;
  width: 37px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 17px;
  right: 5px;
}
@media (max-width: 767px) {
  main .block-gendir .left:after {
    display: none;
  }
}
main .block-gendir .right {
  flex: 1;
}
@media (max-width: 767px) {
  main .block-gendir .right {
    margin-top: 30px;
  }
}
main .block-gendir .right p:first-child {
  font-family: Roboto;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
}
main .block-gendir .right p:nth-child(2) {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 5px;
}
main .block-gendir .right p:last-child {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 5px;
}
.video-fluid {
  margin-bottom: 20px;
}
.video-fluid iframe {
  aspect-ratio: 1.7777777778;
  width: 100%;
}
footer {
  padding: 32px 28px;
}
@media (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
}
footer a, footer div {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
}
footer a {
  text-decoration: none;
  display: inline-block;
}
footer .member {
  position: relative;
}
footer .member i {
  content: url(/images/assoc.svg);
  display: block;
  position: absolute;
  left: -80px;
  top: 0;
}
@media (max-width: 767px) {
  footer .member i {
    position: static;
    margin-bottom: 15px;
  }
}
footer .item {
  width: 33.3333%;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .item {
    margin-bottom: 30px;
  }
}
footer .item > div {
  margin-top: 30px;
}
footer .item > div:first-child {
  margin-top: 0;
}
footer .item:first-child {
  padding-right: 50px;
}
footer .workhours {
  margin-left: 30px;
}
footer .socials .footer-insta {
  width: 38px;
  height: 38px;
  background: url("/images/insta.svg") no-repeat;
  display: inline-block;
  background-size: contain;
}
footer .socials .footer-yt {
  width: 38px;
  height: 38px;
  background: url("/images/yt.svg") no-repeat;
  display: inline-block;
  background-size: contain;
}
footer .socials a + a {
  margin-left: 15px;
}
.breadcrumbs__outer {
  padding: 0px 64px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .breadcrumbs__outer {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.breadcrumbs {
  margin: 15px 0;
  /*display: flex;*/
  /*flex-wrap: wrap;*/
}
.breadcrumbs li {
  display: contents;
  font-size: 0px;
}
.breadcrumbs li > a, .breadcrumbs li > span {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: #7d7f82;
  text-decoration: none;
}
.breadcrumbs li + li {
  padding-left: 5px;
}
.breadcrumbs li + li:before {
  content: "/";
  font-size: 12px;
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
}
.reversed .left {
  order: 2;
}
.reversed .right {
  order: 1;
}
.w11 .left {
  width: 50%;
}
.w11 .right {
  width: 50%;
}
.w12 .left {
  width: 33.3333%;
}
.w12 .right {
  width: 66.6666%;
}
.w13 .left {
  width: 25%;
}
.w13 .right {
  width: 75%;
}
.w14 .left {
  width: 20%;
}
.w14 .right {
  width: 80%;
}
.w23 .left {
  width: 40%;
}
.w23 .right {
  width: 60%;
}
.w21 .left {
  width: 66.6666%;
}
.w21 .right {
  width: 33.3333%;
}
.w31 .left {
  width: 75%;
}
.w31 .right {
  width: 25%;
}
.w41 .left {
  width: 80%;
}
.w41 .right {
  width: 20%;
}
.w32 .left {
  width: 60%;
}
.w32 .right {
  width: 40%;
}
.w00 .left {
  width: 100%;
}
.w00 .right {
  width: 100%;
}
@media (max-width: 1099px) {
  .item, .row4 .item, main .main-advantages .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .content .tpl-photo.photo-width20 .image, .content .tpl-photo.photo-width20 .text, .content .tpl-photo.photo-width25 .image, .content .tpl-photo.photo-width25 .text, .content .tpl-photo.photo-width33 .image, .content .tpl-photo.photo-width33 .text, .content .tpl-photo.photo-width40 .image, .content .tpl-photo.photo-width40 .text, .content .tpl-photo.photo-width50 .image, .content .tpl-photo.photo-width50 .text, .content .tpl-photo.photo-width66 .image, .content .tpl-photo.photo-width66 .text, .content .tpl-photo.photo-width75 .image, .content .tpl-photo.photo-width75 .text, .content .tpl-photo.photo-width100 .image, .content .tpl-photo.photo-width100 .text, footer .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .item, .row4 .item, .left, .right, .content .tpl-cite1 .left, .content .tpl-cite1 .right, header .logo-block, header .menu-outer, main .main-about .left, main .main-about .right, main .service-reviews .items .item, main .contactpage .contacts-content .left, main .contactpage .contacts-content .right, main .contactpage .contacts-addresses .item, main .block-gendir .left, main .block-gendir .right, .w11 .left, .w11 .right, .w12 .left, .w12 .right, .w13 .left, .w13 .right, .w14 .left, .w14 .right, .w23 .left, .w23 .right, .w21 .left, .w21 .right, .w31 .left, .w31 .right, .w41 .left, .w41 .right, .w32 .left, .w32 .right, .w00 .left, .w00 .right {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .content .tpl-photo.photo-width20 .image, .content .tpl-photo.photo-width20 .text, .content .tpl-photo.photo-width25 .image, .content .tpl-photo.photo-width25 .text, .content .tpl-photo.photo-width33 .image, .content .tpl-photo.photo-width33 .text, .content .tpl-photo.photo-width40 .image, .content .tpl-photo.photo-width40 .text, .content .tpl-photo.photo-width50 .image, .content .tpl-photo.photo-width50 .text, .content .tpl-photo.photo-width66 .image, .content .tpl-photo.photo-width66 .text, .content .tpl-photo.photo-width75 .image, .content .tpl-photo.photo-width75 .text, .content .tpl-photo.photo-width100 .image, .content .tpl-photo.photo-width100 .text, main .main-advantages .item, footer .item {
    width: 100%;
  }
}
