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

html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */

/* Responsive images and other embedded objects
*/

img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	 In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/

/* force a vertical scrollbar to prevent a jumpy page */

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

/* we use a lot of ULs that aren't bulleted.
	don't forget to restore the bullets within content. */

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #333;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select,
input,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td,
td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights https://gist.github.com/413930 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */

pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */

.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */

button,
input,
select,
textarea {
  margin: 0;
}

/* make buttons play nice in IE */

button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */

.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/

/* let's clear some floats */

.clearfix:before,
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  overflow-x: hidden;
}
h1 {
    font-size: 40px;
    font-family: "Intro", sans-serif;
}
h2 {
    font-size: 30px;
    font-family: "Intro", sans-serif;
}
h3 {
    font-size: 20px;
    font-family: "Intro", sans-serif;
}
.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 15px;
  margin: 0 auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 155px;
  height: 32px;
  font-size: 14px;
  color: #fff;
  background: #FCBA10;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border: none;
  border-radius: 5px;
}

.button:hover {
  color: #fff;
  background: #000;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.header {
  padding: 10px 0;
}

.header .container {
  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;
}

.header__logo {
  text-align: center;
  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;
}
.header__logo a {
    color: #000;
    font-size: 35px;
    display: flex;
    align-items: center;
    font-family: "Intro", sans-serif;
      text-transform: uppercase;
          height: 50px;
          margin-top: 5px;
}
.header__logo a span {
    display: flex;
    align-items: center;
    background: #FCBA10;
    justify-content: center;
    font-size: 35px;
    width: 50px;
    height: 50px;
    margin: 0;
    transition: all 0.3s;
    padding-top: 10px;
    top: -5px;
    position: relative;
}
.header__logo a:hover span {
    color: #fff;
    transition: all 0.3s;
}
.header__logo .black {
    padding: 0;
    top: 0;
}

/*.header__logo .black {*/
/*  color: #fff;*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 0%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  top: -1px;*/
/*}*/

/*.header__logo .black:hover {*/
/*    animation: animeLogo 2s ease-in-out infinite;*/
/*}*/


/*@keyframes animeLogo {*/
/*  0% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 0%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   5% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 5%, rgba(255,255,255,1) 0%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*  10% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 10%, rgba(255,255,255,1) 1%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*  15% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 15%, rgba(255,255,255,1) 1%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*  20% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 20%, rgba(255,255,255,1) 2%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*  25% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 25%, rgba(255,255,255,1) 2%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*  30% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 30%, rgba(255,255,255,1) 3%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*  35% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 35%, rgba(255,255,255,1) 3%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   40% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 40%, rgba(255,255,255,1) 4%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*    45% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 45%, rgba(255,255,255,1) 4%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   50% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 50%, rgba(255,255,255,1) 5%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*    55% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 55%, rgba(255,255,255,1) 5%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   60% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 60%, rgba(255,255,255,1) 6%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*    65% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 65%, rgba(255,255,255,1) 6%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   70% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 70%, rgba(255,255,255,1) 7%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   75% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 75%, rgba(255,255,255,1) 7%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   80% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 80%, rgba(255,255,255,1) 8%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*    85% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 85%, rgba(255,255,255,1) 8%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   90% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 90%, rgba(255,255,255,1) 9%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*    95% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 95%, rgba(255,255,255,1) 9%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*   100% {*/
/*background: linear-gradient(0deg, rgba(0,0,0,1) 100%, rgba(255,255,255,1) 10%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  }*/
/*}*/


.header__logo img {
  width: 150px;
  height: 50px;
}

/*.header__logo span {*/
/*  text-transform: uppercase;*/
/*  display: inline-block;*/
/*  margin-top: 5px;*/
/*  font-family: "Intro", sans-serif;*/
/*  font-size: 12px;*/
/*}*/

.header__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__address a {
      display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__address svg {
  width: 30px;
  height: 30px;
}

.header__address svg path {
  fill: #FCBA10;
}

.header__email a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.header__email a:hover {
  text-decoration: underline;
}

.header__email a svg {
  width: 30px;
  height: 30px;
}

.header__email a svg path {
  fill: #FCBA10;
}

.header__phone a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.header__phone a:hover {
  text-decoration: underline;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.header__phone a svg {
  width: 30px;
  height: 30px;
}

.header__phone a svg path {
  fill: #FCBA10;
}

.header__invite a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 155px;
  height: 32px;
  font-size: 14px;
  color: #fff;
  background: #FCBA10;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.header__invite a:hover {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.nav {
  width: 100%;
  padding: 15px 0;
  background: #020001;
}

.nav .container {
  height: 100%;
}

.nav ul {
  height: 100%;
  width: 100%;
  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;
  position: relative;
  margin-bottom: -5px;
}

.nav ul li {
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
}

.nav ul li:hover {
  border-bottom: 3px solid #FCBA10;
}

.nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1px;
}

.services-item {
  width: 20%;
  background-repeat: no-repeat;
  background-position: right bottom;
  height: 650px;
  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;
  /*justify-content: center;*/
    text-align: center;
  position: relative;
  padding: 10px;
    border-bottom:1px solid rgba(255,255,255, 0.2);
      border-left: 1px solid rgba(255,255,255, 0.2);
       border-right: 1px solid rgba(255,255,255, 0.2);
}

.services-item:before {
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  transition: all 0.3s;
}

.services-item:hover:before {
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2);
}

.services-item__title {
  position: relative;
  z-index: 2;
  margin-top: 150px;
}

.services-item__title h3 {
  color: #fff;
  font-size: 24px;
  font-family: "Intro", sans-serif;
  text-transform: uppercase;
}

.services-item__desc {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  margin-top: 60px;
  line-height: 20px;
}

.services-item__desc:before {
  content: '';
  display: block;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: #fcba10;
}

.services-item__button {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  position: absolute;
  bottom: 100px;
}

.services-item__button .button {
  height: 40px;
  width: 160px;
  border-radius: 5px;
}

.services-item__button button {
  margin-top: 20px;
}

.about {
  padding: 40px 0;
}

.about__title {
  text-align: center;
  margin-bottom: 30px;
}

.about__title h2 {
  font-size: 48px;
  font-family: "Intro", sans-serif;
  text-transform: uppercase;
  color: #fcba10;
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about__desc {
  width: 50%;
  padding-right: 10px;
  border-right: 3px solid rgba(252, 186, 16, 0.5);
  min-height: 250px;
}

.about__desc p {
  font-size: 16px;
  margin-top: 10px;
  line-height: 22.4px;
}

.about__desc p .yellow {
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
  color: #fcba10;
}

.about__desc p strong {
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
}

.about__desc p a {
  color: #fcba10;
  text-decoration: underline;
}

.about__advantages {
  width: 50%;
  text-align: center;
  padding-left: 90px;
  position: relative;
}

.about__advantages h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
}

.about__advantages h3 span {
  color: #fcba10;
}

.about__advantages ul {
  width: 100%;
}

.about__advantages ul li {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.about__advantages ul li i {
  position: absolute;
  left: 0;
}

.about__advantages ul li svg {
  width: 40px;
  height: 40px;
}

.about__advantages ul li svg path {
  fill: #fcba10;
}

.about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.about__text img {
  width: auto;
  height: 50px;
  margin-right: 50px;
  margin-left: 50px;
}

.about__text p {
  font-size: 12px;
  line-height: 22px;
  margin-left: 20px;
}

.hide {
  display: none;
}

.more-projects {
  padding: 40px 0 150px 0;
  background-image: url(../img/about-bg.jpg);
    background-position: 115px bottom;
    background-size: contain;
    background-repeat: repeat-x;
}

.more-projects__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  top: -70px;
}
.more-projects__button .button {
    width: 100%;
    max-width: 200px;
    height: 45px;
    font-size: 16px;
}
/*.more-projects__button .button {*/
/*  height: 50px;*/
/*  width: 105px;*/
/*  border-radius: 5px;*/
/*}*/

.more-projects__slider {
  margin-top: 30px;
  text-align: center;
}

.more-projects__slider h3 {
  font-size: 20px;
  font-family: "Intro", sans-serif;
  margin-bottom: 20px;
}

.documents {
  background: #000;
  padding: 40px 0;
}

.documents__title {
  text-align: center;
  margin-bottom: 50px;
}
.documents__link {
    margin-top: 50px;
    display: flex;
     -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.documents__title h2 {
  text-transform: uppercase;
  color: #fff;
  font-family: "Intro", sans-serif;
  font-size: 48px;
}

.documents__title h2 span {
  color: #fcba10;
}

.documents__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.documents__list ul li {
    height: 620px;
    width: 100%;
    max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px;
  cursor: pointer;
}


.documents__list ul li img{
      transition: all 0.3s;
-webkit-box-shadow: 0px 0px 14px 0px transparent;
-moz-box-shadow: 0px 0px 14px 0px transparent;
box-shadow: 0px 0px 14px 0px transparent;
}

.documents__list ul li img:hover {
    transition: all 0.3s;
-webkit-box-shadow: 0px 0px 5px 3px rgba(252,186,16,1);
-moz-box-shadow: 0px 0px 5px 3px rgba(252,186,16,1);
box-shadow: 0px 0px 5px 3px rgba(252,186,16,1);
}

.documents__list ul li img {
  width: 100%;
  height: 100%;
}

.tender-form {
  padding: 50px 0;
  background-image: url(../img/tender-form-bg.jpg);
  /*background-attachment: fixed;*/
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tender-form__title {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.tender-form__title h2 {
  font-family: "Intro", sans-serif;
  text-transform: uppercase;
  font-size: 48px;
  position: relative;
  padding-bottom: 30px;
  transition: all 0.3s;
}
.tender-form__title h2:hover {
    color:#000;
    transition: all 0.3s;
}

.tender-form__title h2:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: 25%;
  height: 3px;
  background-color: #fcba10;
}

.tender-form__title p {
  font-size: 18px;
  margin-top: 30px;
}

.tender-form__form {
  padding: 15px 15px;
  background-color: white;
  border-color: #fcba10;
  border-style: none;
  border-width: 2px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 650px;
  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;
  margin: 0 auto;
}

.tender-form__form form {
  width: 100%;
}

.tender-form__block {
  margin-bottom: 20px;
  width: 100%;
}

.tender-form__block:last-child {
  margin-bottom: 0;
}

.tender-form__label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tender-form__input {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  background: #fff;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.tender-form__input:focus {
  border-color: #fcba10;
  outline: none;
}

.tender-form__submit {
  width: 200px;
  height: 40px;
  margin: 0 auto;
  font-size: 16px;
}

.contacts {
  background: #000;
  padding: 40px 0;
}

.contacts__title {
  text-align: center;
  margin-bottom: 50px;
}

.contacts__title h2 {
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
  color: #fff;
}

.contacts__title h2 span {
  color: #fcba10;
}

.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.contacts__item {
  color: #fcba10;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  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;
}

.contacts__item a {
  color: #fcba10;
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
}

.contacts__item h3 {
  text-transform: uppercase;
  color: #fff;
  font-family: "Intro", sans-serif;
  font-size: 20px;
}

.contacts__item .button {
  margin: 0 auto;
  margin-top: 20px;
  width: 130px;
  height: 40px;
}

.contacts__item p {
  margin-top: 20px;
}

.map {
  height: 300px;
  position: relative;
}

.map iframe {
  position: absolute;
  left: 0;
  top: 0;
}

.map__block {
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
  height: 160px;
  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;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  text-align: center;
  z-index: 11;
  position: relative;
}

.map__block h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
}

.map__block p {
  font-size: 18px;
  margin-top: 30px;
}

.footer {
  padding: 30px 0;
  background: #000;
}
.footer  .header__logo a{
    color: #fff;
}
.footer  .header__logo:hover a span {
    color: #000;
}
.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__menu ul li {
  margin: 20px;
  border-bottom: 3px solid transparent;
  padding-bottom: 5px;
  transition: all 0.3s;
}

.footer__menu ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}
.footer__menu ul li:hover {
  border-bottom: 3px solid #FCBA10;
  transition: all 0.3s;
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}

.footer__logo {
  width: 100%;
  max-width: 240px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__logo p {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
  text-align: center;
  margin-top: 20px;
}

.footer__contacts {
  color: #fff;
  font-size: 16px;
}

.footer__contacts a {
  color: #fff;
  font-size: 16px;
}

.footer .header__phone a {
  color: #fff;
}

.footer__copyright {
  color: #fff;
  text-align: center;
  font-size: 12px;
  margin-top: 35px;
}

.footer__copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer__copyright ul li {
  margin: 20px;
}

.footer__copyright ul li a {
  color: #fff;
  font-size: 11px;
}
.sub-services-banner {
  /*background-position: center center;*/
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blackout {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0,0,0, .5);
}

.sub-services-banner__title {
  text-align: left;
  position: relative;
  z-index: 2;
}

.sub-services-banner__title h1 {
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
  line-height: 1.2;
}
.sub-services-banner__title h2 {
  font-size: 40px;
  margin-top: 10px;
}
.sub-services-banner__title h1 span {
  color: #fcba10;
}
.sub-services-banner__desc ul {
  color: #fff;
}
.sub-services-banner__desc ul li {
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
  font-size: 18px;
}
.sub-services-banner__desc ul li:before {
  content: '';
  background-image: url(../img/check-list.png);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  display: block;
  left: 0;
}
.home-slider {
  position: relative;
}

.home-slider .swiper-pagination {
  position: relative !important;
}
.home-slider  .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #333;
  margin: 0 5px;
  opacity: 1;
}
.home-slider .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: #fcba10;
}
.home-slider__slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
  min-height: 600px;
  padding: 30px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home-slider__slide .container {
    max-width: 100%;
    padding: 0;
}

.home-slider__slide:before {
  content: '';
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-slider__title {
  text-align: center;
  position: relative;
  z-index: 2;
}

.home-slider__title h1 {
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
}
.home-slider__title h2 {
   font-size: 40px;
   margin-top: 10px;
}
.home-slider__title h1 span {
  color: #fcba10;
}

.home-slider__info {
  z-index: 2;
  position: relative;
  margin-top: 50px;
  padding-left: 30px;
  text-align: center;
}

.home-slider__info h2 {
  font-size: 40px;
}

.home-slider__info h2 span {
  font-weight: 700;
  border-bottom: 3px solid #fff;
}

.home-slider__info p {
  font-size: 18px;
  margin-top: 30px;
  line-height: 30px;
}

.home-slider__info p span {
  font-weight: 700;
  color: #fcba10;
}

.home-slider__info .button {
  /*width: 100%;*/
  /*max-width: 350px;*/
  font-size: 14px;
  border-radius: 5px;
  /*height: 40px;*/
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
}

.home-slider__bottom {
  height: 30px;
  position: absolute;
  width: 100%;
  bottom: 30px;
  z-index: 22;
}

.home-slider__bottom .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;
}

.home-slider__bottom p > a {
  color: #fff;
  font-size: 12px;
  transition: all 0.3s;
}

.home-slider__bottom p > a:hover {
  text-decoration: underline;
  transition: all 0.3s;
}

.home-slider .swiper-button-prev,
.home-slider .swiper-container-rtl .swiper-button-next,
.home-slider .swiper-button-next,
.home-slider .swiper-container-rtl .swiper-button-prev {
  color: #fcba10;
}

.services-sub {
  padding: 30px 0;
}

.services-sub__title {
  text-align: center;
}

.services-sub__title h2 {
  font-family: "Intro", sans-serif;
  text-transform: uppercase;
  font-size: 48px;
}

.services-sub__title p {
  margin-top: 40px;
  font-size: 16px;
}

.services-sub__title p span {
  font-weight: 700;
  color: #fcba10;
  text-transform: uppercase;
}

.services-sub__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.services-sub-item {
  width: 15%;
  margin: 15px 10px;
  position: relative;
  min-height: 200px;
  text-align: center;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.services-sub-item__front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: repeat;
  color: #FFF;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 15px;
}

.services-sub-item__front:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(85, 61, 1, 0.6);
}

.services-sub-item__front h3 {
  font-family: "Intro", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  z-index: 11;
  position: relative;
  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;
}

.services-sub-item__front h3:after {
  content: '';
  display: block;
  width: 25%;
  height: 3px;
  background-color: #fcba10;
  margin-top: 15px;
}

.services-sub-item__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  top: 0;
  left: 0;
  /*-webkit-transform: rotateY(180deg);*/
  /*transform: rotateY(180deg);*/
  color: #fff;
  padding: 15px;
}

.services-sub-item:hover {
  /*-webkit-transform: rotateY(180deg);*/
  /*transform: rotateY(180deg);*/
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  transform: scale(0.9);
  z-index: 11;
  transition: all 0.3s;
}

.services-sub-item:nth-child(even) .services-sub-item__back {
  background: #fcba10;
}

.services-sub-item:nth-child(even) .services-sub-item__front:before {
  background-color: rgba(0, 0, 0, 0.64);
}

.columns-3 .services-sub-item {
  width: 31%;
  min-height: 185px;
}

.quality-control {
  background: #000;
  padding: 60px 0;
  color: #fff;
}

.quality-control__title {
  text-align: center;
}

.quality-control__title h2 {
  font-family: "Intro", sans-serif;
  text-transform: uppercase;
  font-size: 48px;
}

.quality-control__title h2 span {
  color: #fcba10;
}

.quality-control__title p {
  font-size: 18px;
  margin-top: 20px;
}

.quality-control__title p span {
  color: #fcba10;
}

.quality-control__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.quality-control__item {
  width: 19%;
  text-align: center;
  margin-top: 50px;
}

.quality-control__item span {
  font-family: "Intro", sans-serif;
  font-size: 40px;
  color: #fcba10;
}

.quality-control__item h3 {
  font-family: "Intro", sans-serif;
  font-size: 16px;
  margin-top: 20px;
}

.quality-control__item p {
  margin-top: 20px;
  font-size: 16px;
}

.our-directions {
  padding: 40px 0;
}

.our-directions__title h3 {
  text-align: center;
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
  font-size: 20px;
}

.our-directions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.our-directions__list .services-item__title {
    margin-top: 0;
}
.our-directions__list .services-item__button {
    position: relative;
    bottom: 0;
}
.our-directions__list .services-item {
  width: 19%;
  margin: 20px 7px;
  text-align: center;
  height: auto;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

.our-directions__list .services-item__title h3 {
  font-size: 20px;
  margin-top: 70px;
}

.our-directions__list .services-item__desc {
  margin-top: 20px;
}

.work {
  background: #000;
  padding: 40px 0;
  color: #fff;
}

.work__title {
  text-align: center;
}

.work__title h2 {
  font-family: "Intro", sans-serif;
  text-transform: uppercase;
  font-size: 48px;
}

.work__title p {
  margin-top: 30px;
  font-size: 18px;
}

.work__slider {
  position: relative;
}

.work__slider .swiper-pagination.swiper-pagination-bullets.swiper-pagination-clickable {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.work__slider .swiper-pagination.swiper-pagination-bullets.swiper-pagination-clickable span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25%;
  border-bottom: 3px solid #fff;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  height: 35px;
  border-radius: 0;
  margin: 0;
  padding: 0;
  background: none;
  outline: none;
}
.work .swiper-pagination-bullet {
    opacity: 1;
}
.work__slider .swiper-pagination.swiper-pagination-bullets.swiper-pagination-clickable span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #fcba10;
  border-bottom-color: #fcba10;
}

.work__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

.work__desc-work .before-after__photo h3 {
  display: none;
}

.work__desc-work .before-after__photo a {
  width: 100%;
  max-width: 430px !important;
  height: 240px;
}

.work__desc-work .before-after__photo a img {
  width: 100%;
}

.before-after__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 25px;
}

.before-after__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  border-right: 2px solid #fcba10;
}

.before-after__photo {
  margin: 0 5px;
  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;
}

.before-after__photo picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.before-after__photo h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
}

.before-after__photo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 200px;
}

.before-after__photo a img {
  width: auto;
  height: 100%;
}

.before-after__info {
  width: 50%;
  padding: 10px;
}

.before-after__info-item {
  margin-bottom: 20px;
}

.before-after__info-item h3 {
  text-transform: uppercase;
  font-family: "Intro", sans-serif;
  color: #fcba10;
  margin-bottom: 20px;
  font-size: 16px;
}

.before-after__info-item p {
  color: #fff;
  font-size: 16px;
}

.before-after__swiper-pagination {
  font-size: 16px;
}

.before-after__nav {
  position: relative;
  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: 150px;
  text-align: center;
  z-index: 22;
  margin-top: 20px;
}

.before-after__nav .before-after-button-next,
.before-after__nav .before-after-button-prev {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: none;
  border: 1px solid #fff;
  height: 30px;
  width: 40px;
  font-size: 11px;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.before-after__nav .before-after-button-next:hover,
.before-after__nav .before-after-button-prev:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.repair-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.repair-gallery__item {
  margin: 5px;
  height: 200px;
  max-width: 300px;
}

.repair-gallery__item img {
  width: auto;
  height: 100%;
}

.work-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 54%;
}

.work-gallery__item {
  margin: 5px;
  width: 23%;
  height: 220px;
}

.work-gallery__item img {
  width: 100%;
  height: 100%;
}

.work-gallery .repair-gallery__item {
  max-width: 210px;
}

.work-gallery .work__slider .swiper-pagination.swiper-pagination-bullets.swiper-pagination-clickable span {
  width: 50%;
}

.worl-form {
  width: 40%;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal__window {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 275px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  -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;
}

.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  font-size: 21px;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 111;
}
.documents__list .modal__close{
  font-size: 25px;
  opacity: 1;
}
.doc-slide {
    width: 100%;
}
.doc-slide img {
    width: 100%;
}

.doc-slider {
    width: 100%;
}
.modal-download {
    padding: 10px;
    color: #fff;
    background: #FCBA10;
    position: absolute;
    right: 50px;
    top: 20px;
      z-index: 110;

}

.modal__close:hover {
  opacity: .5;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.modal__title {
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 20px;
}

.modal__title h3 {
  font-size: 16px;
  font-family: "Intro", sans-serif;
  line-height: 1.5;
}

.modal__form {
  padding: 20px;
}

.webp .tender-form { background-image: url(../img/tender-form-bg.webp); }




/*До стили*/

.modal__input {
  width: 100%;
  border-radius: 5px;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  color: #555;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  margin-bottom: 10px;
}
.checkbox-agreement {
  display: flex;
  align-items: center;
}
.checkbox-agreement p {
  font-size: 12px;
  margin-right: 5px;
}

.checkbox-agreement p a {
  border-bottom: 1px dashed inherit;
}

span.wpcf7-list-item {
  padding: 0;
  margin: 0;
}
.wpcf7-form-control-wrap {
  margin-top: -9px;
}
.modal__submit {
  background-color: rgb(252, 186, 16);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-color: rgb(212, 153, 3);
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 15px;
  color: rgb(255, 255, 255);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  margin-top: 5px;
}

.tender-form__form .wpcf7 {
  width: 100%;
}

.tender-form__form br {
  display: none;
}

.tender-form__submit {
  margin-top: 10px;
}

.worl-form h3 {
  color: rgb(252, 186, 16);
  font-size: 16px;
  text-align: center;
  font-family: "Intro", sans-serif;
  margin-bottom: 20px;
}

.worl-form label {
  color: rgb(252, 186, 16);
  font-size: 14px;
  font-family: "Intro", sans-serif;
}
.worl-form .tender-form__input {
  height: 30px;
}
.worl-form br {
  display: none;
}
.work-forma-section .work__row {
  align-items: flex-start;
}

#fileUpload {
  display: none;
}
label.tender-form__input.file-upload {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  cursor: pointer;
}
label.tender-form__input.file-upload .svg-inline--fa {
  margin-right: 5px;
}
label.tender-form__input.file-upload br {
  display: none;
}


.modal-privacy-policy .modal__window{
  max-width: 600px;
  overflow-y: auto;
  height: 85%;
}
.modal-privacy-policy .modal__text p {
  font-size: 14px;
  margin-top: 30px;
}
.modal-privacy-policy .modal__text ul {
  margin-left: 30px;
}
.modal-privacy-policy .modal__text li {
  margin-top: 10px;
  list-style: disc;
}


.img-circle {

}

.circle {
    border: 2px solid #FCBA10;
}

.circle-fill {
    background-color: #FCBA10;
}

.phone:hover .circle {
  border-color: #FCBA10;
  opacity: .5;
}

.phone:hover .circle-fill {
  background-color: #FCBA10;
  opacity: 0.75 !important;
}

.phone:hover .img-circle {

}

.btn-up {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff;
    background-color: #FCBA10;
    position: fixed;
    left: 30px;
    bottom: 40px;
    z-index: 200001 !important;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.btn-up:hover {
      color: #fff;
  background: #000;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.phone {
  position: fixed;
  visibility: visible;
  background-color: transparent;
  width: 0px;
  height: 0px;
  cursor: pointer;
  z-index: 200000 !important;
  opacity: 0.8;
  bottom: 10px;
  right: 0px;
}

.phone:hover {
  opacity: 1;
}

.circle {
width: 100px;
height: 100px;
  bottom: 10px;
  right: 20px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  opacity: .6;
  -webkit-animation: circle-anim 2.2s infinite ease-in-out !important;
  -moz-animation: circle-anim 2.2s infinite ease-in-out !important;
  -ms-animation: circle-anim 2.2s infinite ease-in-out !important;
  -o-animation: circle-anim 2.2s infinite ease-in-out !important;
  animation: circle-anim 2.2s infinite ease-in-out !important;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all 0.5s;
}



.circle-fill {
width: 100px;
height: 100px;
  bottom: 10px;
  right: 20px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: circle-fill-anim 2.5s infinite ease-in-out;
  -moz-animation: circle-fill-anim 2.5s infinite ease-in-out;
  -ms-animation: circle-fill-anim 2.5s infinite ease-in-out;
  -o-animation: circle-fill-anim 2.5s infinite ease-in-out;
  animation: circle-fill-anim 2.5s infinite ease-in-out;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  -o-transition: all .6s;
  transition: all 0.6s;
}



.img-circle {
    width: 50px;
    height: 50px;
    bottom: 35px;
    right: 45px;
    position: absolute;
    border-radius: 100%;
    border: 3px solid transparent;
    opacity: .7;
    background: #FCBA10;
    display: flex;
    justify-content: center;
    align-items: center;

}
.img-circle .fa-whatsapp {
    color: #fff;
    font-size: 25px;
}

.phone:hover .img-circle {
   -webkit-animation: circle-img-anim 1s infinite ease-in-out;
  -moz-animation: circle-img-anim 1s infinite ease-in-out;
  -ms-animation: circle-img-anim 1s infinite ease-in-out;
  -o-animation: circle-img-anim 1s infinite ease-in-out;
  animation: circle-img-anim 1s infinite ease-in-out;
}

@-moz-keyframes circle-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: .1;
    -moz-opacity: .1;
    -webkit-opacity: .1;
    -o-opacity: .1;
  }
  30% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .5;
    -moz-opacity: .5;
    -webkit-opacity: .5;
    -o-opacity: .5;
  }
  100% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .6;
    -moz-opacity: .6;
    -webkit-opacity: .6;
    -o-opacity: .1;
  }
}
@-webkit-keyframes circle-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    -webkit-opacity: .1;
  }
  30% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    -webkit-opacity: .5;
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    -webkit-opacity: .1;
  }
}
@-o-keyframes circle-anim {
  0% {
    -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
    -o-opacity: .1;
  }
  30% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    -o-opacity: .5;
  }
  100% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    -o-opacity: .1;
  }
}
@keyframes circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: .1;
  }
  30% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .5;
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .1;
  }
}
@-moz-keyframes circle-fill-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
  50% {
    -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
    opacity: .2;
  }
  100% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
}
@-webkit-keyframes circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2;
  }
  100% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
}
@-o-keyframes circle-fill-anim {
  0% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2;
  }
  100% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
}
@keyframes circle-fill-anim {
  0% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: .2;
  }
  100% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: .2;
  }
}
@keyframes circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@-moz-keyframes circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,50% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@-webkit-keyframes circle-img-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@-o-keyframes circle-img-anim {
  0% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -o-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -o-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
  }
}

.error-404 {
      background-image: url(../img/cran.jpg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      height: 100vh;
      padding-top: 50px;
      position: relative;
}
.error-404:before {
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.error-404 h1 {
text-align: center;
     position: relative;
    font-size: 50px;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
      z-index: 1;
}

.seo {
    padding: 50px 0;
}
.seo-about {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: none;
  margin-top: 50px;
}
.sub-services-info {
  padding: 30px 0;
}
.sub-services-info .container {
  display: flex;
  align-items: center;
}
.sub-services-desc__desc {
  width: 100%;
  margin-left: 30px;
}
.sub-services-desc__desc h2 {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.sub-services-desc__desc h2:before {
  content: '';
  width: 100px;
  height: 5px;
  background: #FCBA10;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sub-services-desc__img {
  max-width: 600px;
  width: 100%;
  position: relative;
}
.sub-services-desc__img:before {
  content: '';
  display: block;
  position: absolute;
  left: -15px;
  bottom: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(252, 186, 16, 0.4);
  z-index: -1;
}
.sub-services-desc__img img {
  width: 100%;

}
.about-more {
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
  height: 45px;
  font-size: 16px;
}
.seo h1 {
  font-size: 25px;
  margin-bottom: 10px;
}
.seo h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.seo h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.is-form-style input.is-search-input,
.is-form-style button.is-search-submit{
    border: none !important;
}
.is-form-style input.is-search-input::placeholder {
    font-size: 15px;
}
.is-form-style input.is-search-input {
    width: 100%;
}
form.is-search-form.is-form-style.is-form-style-3.is-form-id-1150.is-ajax-search {
    margin-top: 10px;
    width: 100%;
    max-width: 170px;
    position: relative;
}
.is-form-style button.is-search-submit {
    background: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 38px;
    width: 38px;
}
span.is-search-icon {
    padding: 0;
}








.preloader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* фоновый цвет */
  background: #fff;
  z-index: 9999999;
}

/*.loaded_hiding .preloader {*/
/*  transition: 0.3s opacity;*/
/*  opacity: 1;*/
/*}*/

.loaded .preloader {
  display: none;
}







.preloader .header__logo {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #000;
    font-size: 35px;
    font-family: "Intro", sans-serif;
    text-transform: uppercase;
    height: 50px;
    margin-top: 5px;
  -webkit-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  animation: animeRot infinite 3s linear;
}

.preload-text {
      display: flex;
    align-items: center;
    background: #FCBA10;
    justify-content: center;
    font-size: 35px;
    width: 50px;
    height: 50px;
    margin: 0;
    transition: all 0.3s;
    padding-top: 6px;
    top: -5px;
    position: relative;
  color: #fff;
      font-family: "Intro", sans-serif;
}
.preload-text .black {
  color: #fff;
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: anime 2s ease-in-out infinite;
}


@keyframes animeRot {
  0% {
        -webkit-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  }
  30% {
    -webkit-transform: rotateZ(-5deg);
  -ms-transform: rotateZ(-5deg);
  transform: rotateZ(-5deg);
  }
  50% {
        -webkit-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  }
  70% {
        -webkit-transform: rotateZ(5deg);
  -ms-transform: rotateZ(5deg);
  transform: rotateZ(5deg);
  }
  100% {
        -webkit-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  }
}


@keyframes anime {
  0% {
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   5% {
background: linear-gradient(0deg, rgba(0,0,0,1) 5%, rgba(255,255,255,1) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  10% {
background: linear-gradient(0deg, rgba(0,0,0,1) 10%, rgba(255,255,255,1) 1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  15% {
background: linear-gradient(0deg, rgba(0,0,0,1) 15%, rgba(255,255,255,1) 1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  20% {
background: linear-gradient(0deg, rgba(0,0,0,1) 20%, rgba(255,255,255,1) 2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  25% {
background: linear-gradient(0deg, rgba(0,0,0,1) 25%, rgba(255,255,255,1) 2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  30% {
background: linear-gradient(0deg, rgba(0,0,0,1) 30%, rgba(255,255,255,1) 3%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  35% {
background: linear-gradient(0deg, rgba(0,0,0,1) 35%, rgba(255,255,255,1) 3%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   40% {
background: linear-gradient(0deg, rgba(0,0,0,1) 40%, rgba(255,255,255,1) 4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
    45% {
background: linear-gradient(0deg, rgba(0,0,0,1) 45%, rgba(255,255,255,1) 4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   50% {
background: linear-gradient(0deg, rgba(0,0,0,1) 50%, rgba(255,255,255,1) 5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
    55% {
background: linear-gradient(0deg, rgba(0,0,0,1) 55%, rgba(255,255,255,1) 5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   60% {
background: linear-gradient(0deg, rgba(0,0,0,1) 60%, rgba(255,255,255,1) 6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
    65% {
background: linear-gradient(0deg, rgba(0,0,0,1) 65%, rgba(255,255,255,1) 6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   70% {
background: linear-gradient(0deg, rgba(0,0,0,1) 70%, rgba(255,255,255,1) 7%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   75% {
background: linear-gradient(0deg, rgba(0,0,0,1) 75%, rgba(255,255,255,1) 7%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   80% {
background: linear-gradient(0deg, rgba(0,0,0,1) 80%, rgba(255,255,255,1) 8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
    85% {
background: linear-gradient(0deg, rgba(0,0,0,1) 85%, rgba(255,255,255,1) 8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   90% {
background: linear-gradient(0deg, rgba(0,0,0,1) 90%, rgba(255,255,255,1) 9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
    95% {
background: linear-gradient(0deg, rgba(0,0,0,1) 95%, rgba(255,255,255,1) 9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
   100% {
background: linear-gradient(0deg, rgba(0,0,0,1) 100%, rgba(255,255,255,1) 10%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
}







.crane {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  margin-right: 50px;
}

.boom {
  align-items: flex-end;
  display: inline-flex;
  position: relative;
}
.boom .apex {
  width: 2px;
  height: 20px;
  background: #da8936;
  position: relative;
  align-self: flex-end;
}
.boom .apex:after {
  content: "";
  position: absolute;
  width: inherit;
  height: 25px;
  background: inherit;
  top: -2px;
  left: 8px;
  transform: rotate(-35deg);
}
.boom .boom-right {
  display: inline-flex;
  position: absolute;
}
.boom .jib-last {
  width: 20px;
  height: 10px;
  border: 2px solid #da8936;
}
.boom .counter-jib {
  position: absolute;
  left: -40px;
  display: flex;
}
.boom .counter-jib .jib {
  border-right: none;
}
.boom .counter-jib .cunter-weight {
  position: absolute;
  width: 20px;
  height: 4px;
  background: #95a5a6;
  bottom: -6px;
  left: -10px;
  border-bottom: 1px solid #7f8c8d;
}
.boom .counter-jib .cunter-weight:after {
  content: "";
  position: absolute;
  width: inherit;
  height: 4px;
  background: #95a5a6;
  bottom: -6px;
  border-bottom: 1px solid #7f8c8d;
}
.boom .counter-jib .first-jib {
  width: 20px;
  height: 2px;
  background: #da8936;
  position: relative;
  align-self: flex-end;
}
.boom .counter-jib .first-jib:after {
  content: "";
  position: absolute;
  width: 22px;
  height: inherit;
  background: inherit;
  top: -6px;
  left: 0px;
  transform: rotate(-30deg);
}
.boom .jib {
  width: 20px;
  height: 10px;
  border: 2px solid #da8936;
  margin-right: -2px;
  position: relative;
}
.boom .jib:after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 2px;
  height: calc(100% + 13px);
  background: #da8936;
  z-index: 1;
  -webkit-transform: rotate(60deg);
}
.boom .last-jib {
  width: 20px;
  height: 2px;
  background: #da8936;
  position: relative;
  align-self: flex-end;
}
.boom .last-jib:after {
  content: "";
  position: absolute;
  width: 20px;
  height: inherit;
  background: inherit;
  top: -6px;
  left: 0px;
  transform: rotate(35deg);
}
.boom .hook {
  position: absolute;
  width: 20px;
  height: 4px;
  background: #da8936;
  bottom: -6px;
  left: 10px;
  z-index: 0;
}
.boom .hook:before {
  content: "";
  position: absolute;
  height: 30px;
  width: 2px;
  background: black;
  top: 4px;
  left: 50%;
  z-index: 1;
}
.boom .hook:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 2px 3px 0 0 black;
  top: 25px;
  z-index: 2;
}

.body {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  margin-left: 0px;
}
.body .cabin {
  position: relative;
  width: 20px;
  height: 20px;
  background: gray;
}
.body .cabin:after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  background: black;
  width: 50%;
  height: 60%;
  z-index: 1;
}
.body .segment {
  width: 10px;
  height: 20px;
  background: transparent;
  border: 2px solid #da8936;
  margin-bottom: -2px;
  position: relative;
}
.body .segment:after {
  content: "";
  position: absolute;
  top: -2px;
  left: calc(50% - 1px);
  width: 2px;
  height: calc(100% + 5px);
  background: #da8936;
  z-index: 1;
  -webkit-transform: rotate(30deg);
}
.body .base {
  width: 20px;
  height: 3px;
  background: #da8936;
}


.breadcrumb {
    padding: 20px 0;
    background: #000;
        color: #fff;

}
.breadcrumb-item {
    color: #FCBA10;
}
.breadcrumb .post{
    display: inline;
    padding: 0;
    border: none;
    color: #fff;
}
.span.post.post-page.current-item {
    color: #fff;
}

.price {
    padding: 50px 0;
}


ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
ul.tabs li{
	background: none;
	color: #222;
	display: inline-block;
	padding: 10px 15px;
	cursor: pointer;
}

ul.tabs li.current{
	/*background: #ededed;*/
	color: #222;
	border-bottom: 1px solid #FCBA10;
}

.tab-content{
	display: none;
	/*background: #ededed;*/
	padding: 15px;
}

.tab-content.current{
	display: inherit;
}

span.breadcrumb-item-active {
    font-weight: 700;
}

/*div.is-ajax-search-details, div.is-ajax-search-result {*/
/*        margin-top: -450px !important;*/
/*}*/
