/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
html {
  font-size: 18px;
}
body {
  font-family: 'Gilroy', Arial, Tahoma, sans-serif;
  color: #000;
  background: #F2F2F2;
}
body::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 0;
  background: #FAB001;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
.icon {
  display: inline-block;
  vertical-align: middle;
}
*,
*:active,
*:focus {
  outline: none !important;
}
::placeholder {
  color: #BABABA;
  opacity: 1;
}
.page {
  overflow: hidden;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  position: relative;
}
.main-content {
  flex: 1 1 auto;
  padding-top: 110px;
}
.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}
strong {
  font-weight: 700;
}
.button {
  display: inline-block;
  transition: all 0.3s ease-out;
  color: #1E1F23;
  font-size: 19px;
  font-weight: 700;
  padding: 8px 44px;
  text-align: center;
  border: 1px solid transparent;
  background: #FAB001;
}
.button:hover {
  background: #000000;
  color: #fff;
}
button.button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
#scrollup {
  position: fixed;
  z-index: 50;
  bottom: 10px;
  right: 10px;
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 52px;
  cursor: pointer;
  transition: background 0.3s ease-out;
  background: #C4C4C4;
  border-radius: 50%;
}
#scrollup:hover {
  background: #FAB001;
}
#scrollup img {
  display: inline-block;
  vertical-align: middle;
  transform: rotate(-90deg);
  backface-visibility: hidden;
}
/* HEADER ================================================*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0, 0, 0, 0.82);
  transition: all 0.3s ease-out;
}
.header.fixedtop {
  background: rgba(0, 0, 0, 0.85);
}
.header-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  position: relative;
  height: 110px;
}
.header-logo {
  display: block;
  flex-shrink: 0;
  margin-right: 20px;
}
.header-logo img {
  max-width: 100%;
  max-width: 210px;
}
.header-menu-outer {
  align-items: center;
  display: flex;
  padding-bottom: 12px;
}
.header-menu {
  display: flex;
  align-items: center;
  line-height: 1.2;
  padding-bottom: 2px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.header-menu li {
  margin: 0 18px 10px;
  position: relative;
  padding: 5px 8px;
  min-width: 200px;
}
.header-menu li:hover,
.header-menu li.current-menu-item,
.header-menu li.active {
  background: rgba(255, 255, 255, 0.05);
}
.header-menu li:hover a,
.header-menu li.current-menu-item a,
.header-menu li.active a {
  color: #FAB001;
}
.header-menu li:hover a:after,
.header-menu li.current-menu-item a:after,
.header-menu li.active a:after {
  background: #FAB001;
}
.header-menu li:after {
  transition: all 0.3s ease-out;
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  margin-top: 8px;
  width: 90px;
  height: 2px;
  background: transparent;
}
.header-menu a {
  transition: all 0.3s ease-out;
  display: inline-block;
  color: #fff;
}
.header-search {
  flex-shrink: 0;
  margin-left: 13px;
}
.header-search-toggle {
  margin-right: -10px;
  padding: 10px;
  cursor: pointer;
}
.header-search-form {
  width: 330px;
  padding: 10px;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.header-search-form input {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
  height: 40px;
  padding: 0 46px 0 15px;
  color: #000;
  border: none;
  font-size: 16px;
  font-family: 'Gilroy', Arial, Tahoma, sans-serif;
  border-radius: 0;
  background: #fff;
}
.header-search-form button {
  height: 40px;
  width: 44px;
  padding: 0;
  border: none;
  background: none;
  position: absolute;
  top: 10px;
  right: 10px;
  padding-top: 2px;
}
.header-search-form button:hover img {
  filter: none;
}
.header-search-form button img {
  filter: brightness(0);
  width: 20px;
  transition: all 0.3s ease-out;
}
.header-buter,
.header-menu-close,
.header-overlay {
  display: none;
}
/* jumbotron-section ========================================*/
.jumbotron-section {
  background: #343434;
}
.jumbotron-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 25px;
}
.jumbotron-pic {
  flex-shrink: 0;
  width: 743px;
  margin-left: 30px;
  margin-right: -21px;
}
.jumbotron-pic img {
  max-width: 100%;
}
h1 {
  font-size: 51px;
  font-weight: 700;
  line-height: 1.216;
  margin-bottom: 30px;
}
.jumbotron-content {
  padding-bottom: 8px;
}
.jumbotron-content h1 {
  margin-bottom: 20px;
  color: #fff;
}
.jumbotron-content p {
  line-height: 1.167;
  max-width: 215px;
  margin-bottom: 38px;
  color: #fff;
}
.jumbotron-bottom {
  background: #4A4A4A;
}
.jumbotron-link {
  display: flex;
  height: 100%;
}
.jumbotron-link .image {
  width: 47%;
  margin-right: 30px;
  flex-shrink: 0;
}
.jumbotron-link .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.jumbotron-link .text {
  padding: 23px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.jumbotron-link p {
  margin-bottom: 18px;
  font-size: 21px;
  color: #C4C4C4;
  line-height: 1.143;
}
.jumbotron-link .button {
  margin-top: auto;
}
.jumbotron-link .button:hover {
  border-color: #FAB001;
  color: #FAB001;
  background: transparent;
}
/* development-directions-section ====================*/
.development-directions-section {
  padding: 66px 0 71px;
}
.development-directions-section h4 {
  font-size: 25px;
  font-weight: 700;
  color: #1E1F23;
  margin-bottom: 70px;
}
.development-directions-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 65px;
}
.development-directions-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% / 6);
  flex-grow: 1;
  position: relative;
  z-index: 2;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 246px;
  padding: 58px 16px 33px;
  color: #D1D1D1;
  font-weight: 700;
  transition: all 0.3s ease-out;
  /*&.active-tab {
		//color: transparent !important;
		color: rgba(255, 255, 255, .5) !important;
		
		&:after {
			opacity: .4;
		}
	}*/
}
.development-directions-link:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.45;
  transition: all 0.3s ease-out;
}
.development-directions-link .number {
  font-size: 77px;
  margin-bottom: 20px;
}
.development-directions-link p {
  margin-top: auto;
  font-size: 17px;
  line-height: 1.235;
}
.development-directions-content {
  display: none;
  font-weight: 700;
  color: #191A1E;
}
.development-directions-content.visible {
  display: block;
}
.development-directions-content .inner-flex {
  display: flex;
  align-items: flex-start;
}
.development-directions-content .number {
  flex-shrink: 0;
  margin-right: 70px;
  width: 187px;
  background: #FAB001;
  text-align: center;
  color: #1E1F23;
  font-size: 77px;
  padding: 22px 15px;
}
.development-directions-content .text {
  max-width: 506px;
  padding-top: 4px;
}
.development-directions-content .name {
  font-size: 43px;
  line-height: 1.209;
  margin-bottom: 29px;
}
.development-directions-content .line {
  width: 127px;
  height: 7px;
  background: #FAB001;
  margin-bottom: 39px;
}
.development-directions-content p {
  font-size: 27px;
  line-height: 1.222;
  color: #191A1E;
}
/* FOOTER ================================================*/
footer {
  background: #1e1f23;
  position: relative;
  z-index: 10;
}
.footer-bottom {
  background: #070707;
  padding: 25px 0;
}
.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 -15px;
  font-size: 23px;
  line-height: 1.2;
  color: #C4C4C4;
}
.footer-bottom-content li {
  margin: 0 15px;
}
.footer-bottom-content a {
  transition: all 0.3s ease-out;
}
.footer-bottom-content a:hover {
  color: #FAB001;
}
.footer-top {
  overflow: hidden;
}
.footer-top h5 {
  font-weight: bold;
  font-size: 23px;
  text-transform: uppercase;
  line-height: 1.217;
  margin-bottom: 15px;
  color: #C4C4C4;
}
.footer-top-content {
  display: flex;
}
.footer-info {
  padding-top: 87px;
  padding-bottom: 34px;
  padding-right: 30px;
  width: 28.6%;
}
.footer-info .logo {
  margin-bottom: 18px;
}
.footer-info .logo img {
  max-width: 100%;
  max-width: 210px;
}
.footer-info p {
  color: #D1D1D1;
  font-size: 14px;
  line-height: 1.2;
}
.footer-contacts {
  padding-top: 86px;
  padding-bottom: 23px;
  padding-right: 30px;
  width: 23%;
  position: relative;
  color: #C4C4C4;
}
.footer-contacts:before {
  content: "";
  background: #C4C4C4;
  position: absolute;
  top: 40px;
  height: 1px;
  left: 0;
  width: 100%;
}
.footer-contacts .minprom-logo {
  padding-top: 14px;
  margin-bottom: 42px;
}
.footer-contacts .minprom-logo img {
  width: 100%;
  max-width: 218px;
}
.footer-contacts .line {
  width: calc(100% + 30px);
  height: 1px;
  background: #C4C4C4;
  margin-bottom: 35px;
}
.footer-contacts .mail {
  margin-bottom: 24px;
  font-size: 20px;
}
.footer-contacts .mail a {
  transition: all 0.3s ease-out;
}
.footer-contacts .mail a:hover {
  color: #FAB001;
}
.footer-contacts .contacts-phones {
  color: #FAB001;
}
.footer-contacts .contacts-phones p {
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.footer-contacts .phone {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 14px;
}
.footer-menu {
  padding: 90px 30px 34px 56px;
  width: 25.7%;
  background: #151516;
  position: relative;
  z-index: 2;
  color: #C4C4C4;
}
.footer-menu:before {
  content: "";
  background: #C4C4C4;
  position: absolute;
  z-index: 3;
  top: 40px;
  height: 1px;
  left: 0;
  width: 100%;
}
.footer-menu li {
  margin-bottom: 39px;
}
.footer-menu li:last-child {
  margin-bottom: 0;
}
.footer-menu a {
  font-weight: bold;
  font-size: 23px;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
}
.footer-menu a:hover {
  color: #FAB001;
}
.footer-options {
  padding-top: 105px;
  padding-bottom: 34px;
  padding-left: 62px;
  width: 22.7%;
  position: relative;
  z-index: 2;
}
.footer-options:before {
  content: "";
  background: #191a1e;
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
  left: 0;
  width: 50vw;
}
.footer-languages {
  font-size: 14px;
  margin-bottom: 188px;
  margin-left: 17px;
  min-height: 100px;
}
.footer-languages li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 8px;
}
.footer-languages li:before {
  content: "";
  background: #FAB001;
  position: absolute;
  width: 6px;
  height: 6px;
  top: 4px;
  left: 0;
  border-radius: 50%;
}
.footer-languages a {
  transition: all 0.3s ease-out;
  color: #fff;
}
.footer-languages a:hover {
  color: #FAB001;
}
.footer-languages .active {
  color: #FAB001;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}
.footer-socials li {
  margin-right: 5px;
  margin-bottom: 5px;
}
.footer-socials li:last-child {
  margin-right: 0;
}
.footer-socials a {
  display: flex;
  border-radius: 50%;
  background: #C4C4C4;
  transition: all 0.3s ease-out;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
}
.footer-socials a:hover {
  background: #FAB001;
}
/* activities-section ===================================*/
.activities-section {
  background-color: #F2F2F2;
}
.activities-section-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 37px;
}
.activities-section-inner:before {
  content: "";
  background: #CFCDCD;
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
  right: 100%;
  width: 50vw;
}
.activities-block {
  display: flex !important;
}
.activities-block.none-video .activities-play-button {
  display: none;
}
.activities-block:hover .activities-information {
  color: #fff;
  background: #FAB001;
  box-shadow: 0 4px 44px rgba(0, 0, 0, 0.25);
}
.activities-block:hover .activities-information .date {
  color: #fff;
}
.activities-block:hover .activities-right:after {
  opacity: 0;
}
.activities-block:hover .activities-description {
  opacity: 1;
}
.activities-block-big .activities-play-button {
  pointer-events: none;
  margin-top: 0;
  top: auto;
  bottom: 93px;
}
.activities-block-big .activities-right {
  min-height: 600px;
}
@media (max-width: 640px) {
  .activities-block-big .activities-right {
    min-height: 200px;
  }
}
.activities-block-big .activities-right:after {
  opacity: 0 !important;
  display: none;
}
.activities-left {
  width: 353px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .activities-left {
    padding: 10px 20px;
  }
}
.activities-big-name {
  min-height: 252px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  line-height: 1.2;
  font-weight: bold;
  font-size: 25px;
  background: #1E1F23;
  box-shadow: 0 4px 44px 7px rgba(0, 0, 0, 0.38);
  color: #C4C4C4;
}
.activities-big-name:hover {
  opacity: 0.6;
  color: #fff;
}
.activities-right {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  display: block;
  display: flex;
}
.activities-right:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.45;
  transition: all 0.3s ease-out;
}
.activities-play-button {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  margin-top: -32px;
  left: 127px;
  border: 3px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  padding-left: 3px;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.activities-play-button:hover {
  background: #FAB001;
  border-color: #FAB001;
}
.activities-play-button:hover img {
  filter: none;
}
.activities-play-button img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-out;
}
.activities-right-place {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 30px;
  background: #191A1E;
  width: 319px;
  color: #8E8E8E;
  line-height: 1.2;
}
.activities-right-place .place {
  color: #C4C4C4;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 44px;
}
.activities-right-place .line {
  width: 100%;
  height: 1px;
  background: #a7a7a7;
  margin-bottom: 44px;
}
.activities-right-place .date {
  font-size: 21px;
}
.activities-information {
  background: #F2F2F2;
  color: #1E1F23;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 30px;
  height: 100%;
  transition: all 0.3s ease-out;
}
.activities-information .date {
  color: #959595;
  font-size: 22px;
  margin-bottom: 25px;
  transition: all 0.3s ease-out;
}
.activities-information .name {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.2;
}
.activities-description {
  width: 256px;
  background: rgba(30, 31, 35, 0.76);
  min-height: 252px;
  height: 100%;
  padding: 18px 15px 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.167;
  margin-left: auto;
  color: #fff;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.js-slick .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 100%;
  text-indent: -9999px;
  cursor: pointer;
  padding: 0;
  margin-top: 20px;
  border: none;
  height: 30px;
  width: 30px;
  background: #C4C4C4;
  transition: all 0.3s ease-out;
  border-radius: 50%;
  box-shadow: 0px 4px 6.8px 1.2px rgba(20, 31, 51, 0.14);
}
.js-slick .slick-arrow:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: none;
  margin-top: -6px;
  margin-left: -4px;
  width: 10px;
  height: 12px;
  background: url("./assets/images/play.svg") center no-repeat;
  background-size: 100% auto;
}
.js-slick .slick-arrow:hover {
  background: #FAB001;
}
.js-slick .slick-arrow.slick-prev {
  left: 29px;
}
.js-slick .slick-arrow.slick-prev:after {
  transform: rotate(-180deg);
  margin-left: -6px;
}
.js-slick .slick-arrow.slick-next {
  left: 63px;
}
.js-slick .slick-dots {
  text-align: center;
  position: absolute;
  display: flex !important;
  z-index: 11;
  top: 100%;
  width: 100%;
  margin-top: 28px;
}
.js-slick .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  text-indent: -9999px;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  flex-grow: 1;
  height: 2px;
  margin: 0;
  background: #bfc5c0;
  transition: all 0.3s ease-out;
}
.js-slick .slick-dots li:hover {
  background: #FAB001;
}
.js-slick .slick-dots .slick-active {
  background: #FAB001;
}
.js-slick.right-arrows .slick-arrow {
  margin-top: 25px;
}
.js-slick.right-arrows .slick-arrow.slick-prev {
  left: auto;
  right: 34px;
}
.js-slick.right-arrows .slick-arrow.slick-next {
  left: auto;
  right: 0;
}
.activities-slider {
  margin-bottom: 58px;
}
.activities-slider .slick-list {
  overflow: visible;
}
.activities-slider .slick-arrow {
  margin-top: 53px;
}
.slider-count {
  font-weight: bold;
  font-size: 13px;
  color: #C4C4C4;
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 111px;
  top: 100%;
  margin-top: 58px;
}
.slider-count p {
  font-size: 25px;
}
.slider-count .total {
  margin-left: -3px;
}
.activities-archive-link {
  text-align: right;
}
.activities-archive-link .button {
  min-width: 256px;
}
.activities-archive-link .button:hover {
  border-color: #FAB001;
  color: #FAB001;
  background: transparent;
}
/* support-section ======================================*/
.support-section {
  padding: 100px 0;
}
.simple-title {
  margin-bottom: 74px;
}
.simple-title h1 {
  position: relative;
}
.simple-title h1:after {
  content: "";
  width: 161px;
  height: 2px;
  background: #FAB001;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 18px;
}
.support-information {
  padding-top: 34px;
  margin-bottom: 125px;
  display: flex;
  position: relative;
  z-index: 2;
}
.support-information .images {
  flex-shrink: 0;
  width: 640px;
  margin-right: 96px;
}
.support-information .image {
  filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.41));
}
.support-information .image img {
  width: 100%;
  display: block;
}
.support-information .text {
  text-align: right;
  flex-grow: 1;
  padding-top: 3px;
}
.support-information .date {
  font-weight: bold;
  font-size: 51px;
  margin-bottom: 44px;
}
.support-information p {
  line-height: 1.2;
  margin-bottom: 23px;
}
.support-information .lines-absolute {
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 0;
  margin-bottom: -180px;
  margin-left: -470px;
  pointer-events: none;
}
.support-pdf {
  margin-bottom: 42px;
  height: 700px;
  position: relative;
  z-index: 2;
}
.support-pdf .lines-absolute {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  margin-top: -80px;
  margin-left: -472px;
  pointer-events: none;
}
/* vacancies-section ======================================*/
.vacancies-section {
  padding: 65px 0;
}
.vacancies-form {
  display: flex;
  margin-bottom: 62px;
}
.vacancies-form input {
  display: block;
  width: 352px;
  height: 23px;
  color: #181818;
  border: none;
  border-bottom: 1px solid #181818;
  font-size: 16px;
  font-family: 'Gilroy', Arial, Tahoma, sans-serif;
  border-radius: 0;
  background: transparent;
}
.vacancies-form button {
  padding: 0;
  border: none;
  background: none;
  flex-shrink: 0;
  margin-right: 8px;
}
.vacancies-detail-block {
  margin-bottom: 106px;
}
.vacancies-detail-block h3 {
  font-size: 27px;
  font-weight: 700;
  color: #000;
  margin-bottom: 47px;
}
.new-vacancies-slider .slick-list {
  margin: 0 -15px;
}
.new-vacancies-slider .slick-track {
  display: flex;
}
.new-vacancies-slider .slick-slide {
  display: block;
}
.new-vacancies-block {
  margin: 0 15px;
  background: #4A4A4A;
  padding: 58px 19px 44px;
  position: relative;
  display: none;
  height: auto;
  text-align: center;
  color: #fff;
  border: 1px solid transparent;
  transition: border-color 0.3s ease-out;
}
.new-vacancies-block:hover {
  border-color: #fff;
}
.new-vacancies-block:hover a,
.new-vacancies-block:hover .name,
.new-vacancies-block:hover .place {
  color: #fff !important;
  opacity: 0.7;
}
.new-vacancies-block .image {
  width: 65px;
  height: 65px;
  padding: 5px;
  margin: 0 auto 20px;
  line-height: 54px;
  background: #fff;
  text-align: center;
}
.new-vacancies-block .image img {
  max-width: 100%;
  max-height: 55px;
  display: inline-block;
  vertical-align: middle;
}
.new-vacancies-block .name {
  font-weight: bold;
  font-size: 17px;
  line-height: 1.23;
  margin-bottom: 1px;
}
.new-vacancies-block .place {
  font-size: 13px;
  line-height: 1.15;
  margin-bottom: 10px;
  margin-top: 30px;
}
.new-vacancies-block .job {
  font-weight: bold;
  font-size: 29px;
  line-height: 1.21;
  margin-bottom: 3px;
}
.new-vacancies-block .experience {
  font-size: 13px;
  line-height: 1.15;
}
.new-vacancies-block .label-save {
  width: 24px;
  height: 35px;
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 21px;
  background: url("./assets/images/label_save.svg") center no-repeat;
  background-size: 100% auto;
  filter: brightness(0) invert(1);
}
.new-vacancies-block .label-save:hover {
  filter: none;
}
.new-vacancies-block .label-save.saved {
  filter: none;
  background: url("./assets/images/label_saved.svg") center no-repeat;
  background-size: 100% auto;
}
.saved-vacancies-block {
  background: #1E1F23;
  border: 1px solid transparent;
  transition: border-color 0.3s ease-out;
  display: flex !important;
  align-items: center;
  min-height: 133px;
  margin-bottom: 10px;
  text-align: left;
  padding: 15px 30px;
  font-size: 17px;
}
.saved-vacancies-block:hover {
  border-color: #fff;
}
.saved-vacancies-block .image {
  width: 65px;
  height: 65px;
  padding: 5px;
  margin-right: 65px;
  line-height: 54px;
  background: #fff;
  flex-shrink: 0;
  text-align: center;
}
.saved-vacancies-block .image img {
  max-width: 100%;
  max-height: 55px;
  display: inline-block;
  vertical-align: middle;
}
.saved-vacancies-block .name {
  font-weight: bold;
  line-height: 1.2;
  margin-right: 10px;
  width: 29%;
  flex-shrink: 0;
}
.saved-vacancies-block .job {
  line-height: 1.2;
  margin-right: 10px;
  width: 26.5%;
  flex-shrink: 0;
}
.saved-vacancies-block .place {
  line-height: 1.2;
  margin-right: 10px;
}
.saved-vacancies-block .experience {
  font-weight: bold;
  line-height: 1.2;
  margin-left: auto;
  flex-shrink: 0;
  max-width: 100px;
  text-align: right;
}
/* ======================= MEDIA ========================*/
@media (max-width: 1199px) {
  .header-menu {
    font-size: 16px;
  }
  .header-menu li {
    margin: 0 13px;
  }
  .header-logo {
    width: 200px;
  }
  .header-search {
    margin-left: 8px;
  }
  .jumbotron-link p {
    font-size: 19px;
  }
  .activities-left {
    width: 310px;
  }
  .activities-big-name {
    font-size: 22px;
  }
  .activities-information .name {
    font-size: 22px;
  }
  .development-directions-link {
    padding-left: 10px;
    padding-right: 10px;
  }
  .development-directions-link p {
    font-size: 16px;
  }
  .footer-info {
    width: 26%;
  }
  .footer-contacts {
    width: 27%;
  }
  .footer-menu {
    width: 24%;
    padding-left: 30px;
  }
  .footer-menu a {
    font-size: 20px;
  }
  .footer-options {
    padding-left: 22px;
    width: 23%;
  }
  .support-information .images {
    width: 500px;
    margin-right: 30px;
  }
  .saved-vacancies-block .image {
    margin-right: 35px;
  }
}
@media (min-width: 992px) {
  .header-overlay {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .header-menu-outer {
    position: fixed;
    z-index: 70;
    right: 0;
    top: 0;
    height: 100vh;
    background: rgba(22, 23, 23, 0.95);
    width: 330px;
    overflow: auto;
    color: #fcfcfc;
    margin-right: -330px;
    transition: all 0.3s ease-out;
    display: block;
    padding: 35px 30px 15px;
  }
  .header-menu-outer::-webkit-scrollbar {
    width: 4px;
    background: transparent;
  }
  .header-menu-outer::-webkit-scrollbar-thumb {
    border: none;
    border-radius: 0;
    background: #FAB001;
  }
  .header-menu-outer.visible {
    margin-right: 0;
  }
  .header-menu {
    display: block;
    font-size: 18px;
  }
  .header-menu li {
    margin: 0 0 30px;
  }
  .header-menu-close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease-out;
    display: block;
  }
  .header-menu-close:hover {
    opacity: 0.5;
  }
  .header-overlay {
    position: fixed;
    z-index: 40;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(22, 23, 23, 0.45);
    display: none;
  }
  .header-buter {
    margin-left: auto;
    cursor: pointer;
    width: 38px;
    display: block;
  }
  .header-buter:hover li {
    background: #FAB001;
  }
  .header-buter li {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 8px 0;
    transition: all 0.3s ease-out;
  }
  .header-logo {
    width: 220px;
  }
  .header-content {
    height: 80px;
    padding: 15px 0;
  }
  .main-content {
    padding-top: 80px;
  }
  .header-search {
    margin-left: 0;
  }
  .header-search-toggle {
    display: none;
  }
  .header-search-form {
    display: block;
    position: relative;
    width: 100%;
    background: none;
    padding-left: 0;
    padding-right: 0;
  }
  .header-search-form button {
    right: 0;
  }
  .jumbotron-pic {
    width: 560px;
  }
  html {
    font-size: 16px;
  }
  h1 {
    font-size: 44px;
    line-height: 1.15;
  }
  .jumbotron-link .image {
    display: none;
  }
  .activities-left {
    width: 250px;
  }
  .activities-information {
    padding: 15px 20px;
  }
  .activities-information .date {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .activities-information .name {
    font-size: 20px;
  }
  .activities-big-name {
    padding: 15px 20px;
    font-size: 20px;
  }
  .activities-description {
    padding: 18px;
    width: 200px;
    opacity: 1;
  }
  .activities-play-button {
    left: 80px;
  }
  .activities-right-place {
    width: 270px;
    padding: 15px 20px;
  }
  .activities-right-place .place {
    font-size: 22px;
  }
  .activities-right-place .date {
    font-size: 18px;
  }
  .development-directions-section h4 {
    margin-bottom: 40px;
  }
  .development-directions-link {
    width: 33.333%;
    height: auto;
    padding: 25px 15px;
  }
  .development-directions-link .number {
    font-size: 70px;
  }
  .development-directions-content .number {
    width: 140px;
    margin-right: 40px;
  }
  .development-directions-content .name {
    font-size: 34px;
  }
  .development-directions-content p {
    font-size: 23px;
  }
  .footer-bottom-content {
    font-size: 18px;
  }
  .footer-top-content {
    flex-wrap: wrap;
  }
  .footer-info {
    width: 50%;
    order: 3;
    padding-top: 30px;
  }
  .footer-options {
    width: 50%;
    order: 4;
    padding-top: 50px;
    padding-left: 30px;
  }
  .footer-languages {
    min-height: 1px;
    margin-bottom: 50px;
  }
  .footer-socials {
    padding-top: 0;
  }
  .footer-contacts {
    width: 50%;
    padding-top: 70px;
    padding-bottom: 12px;
  }
  .footer-contacts .minprom-logo {
    padding-top: 8px;
    margin-bottom: 30px;
  }
  .footer-menu {
    width: 50%;
    padding-top: 70px;
  }
  .footer-menu:after {
    content: "";
    background: #151516;
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
    left: 0;
    width: 50vw;
  }
  .footer-menu li {
    margin-bottom: 30px;
  }
  .support-section {
    padding: 70px 0 30px;
  }
  .support-information {
    padding-top: 0;
    margin-bottom: 50px;
    display: block;
  }
  .support-information .images {
    margin-right: 0;
    width: 100%;
    margin-bottom: 35px;
  }
  .support-information .text {
    text-align: left;
  }
  .support-information .date {
    margin-bottom: 30px;
  }
  .support-pdf {
    height: 600px;
  }
  .new-vacancies-slider .slick-list {
    margin: 0 -5px;
  }
  .new-vacancies-block {
    margin: 0 5px;
  }
  .new-vacancies-block .job {
    font-size: 26px;
  }
  .saved-vacancies-block {
    padding: 15px 20px;
    font-size: 16px;
  }
  .saved-vacancies-block .image {
    margin-right: 25px;
  }
  .saved-vacancies-block .name {
    width: 27%;
  }
  .saved-vacancies-block .job {
    width: 24%;
  }
  .vacancies-detail-block {
    margin-bottom: 80px;
  }
  .vacancies-detail-block h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 38px;
  }
  #scrollup {
    opacity: 0;
    pointer-events: none;
  }
  .jumbotron-content {
    padding-bottom: 0;
    padding-top: 10px;
  }
  .jumbotron-pic {
    width: 450px;
  }
  .header-content {
    height: 60px;
    padding: 5px 0;
  }
  .main-content {
    padding-top: 60px;
  }
  .header-logo {
    width: 190px;
  }
  .jumbotron-bottom {
    padding: 10px 0;
  }
  .jumbotron-link .text {
    padding: 15px 0;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .jumbotron-link p {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .activities-block {
    display: block !important;
    margin-top: 15px;
  }
  .activities-left {
    width: 100%;
  }
  .activities-information {
    min-height: 1px;
    padding: 22px 5px;
  }
  .activities-information .date {
    margin-bottom: 10px;
  }
  .activities-description {
    min-height: 130px;
    padding: 20px;
    width: 50%;
  }
  .activities-block-big .activities-left {
    display: flex;
    flex-wrap: wrap;
  }
  .activities-block-big .activities-right {
    display: flex;
  }
  .activities-block-big .activities-right:before,
  .activities-block-big .activities-right:after {
    display: none !important;
  }
  .activities-block-big .activities-play-button {
    bottom: 55px;
  }
  .activities-big-name {
    width: 50%;
    min-height: 1px;
    padding: 22px 20px;
  }
  .activities-right-place {
    margin-left: auto;
    position: static;
    width: 50%;
    min-height: 180px;
    padding: 20px;
  }
  .activities-right-place .place {
    margin-bottom: 30px;
  }
  .activities-right-place .line {
    margin-bottom: 30px;
  }
  .activities-play-button {
    left: 17%;
  }
  .activities-slider {
    margin-bottom: 50px;
  }
  .activities-slider .slick-list {
    overflow: hidden;
  }
  .development-directions-content .number {
    width: 100px;
    font-size: 56px;
    margin-right: 30px;
  }
  .development-directions-content .name {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .development-directions-content .line {
    margin-bottom: 25px;
  }
  .development-directions-content p {
    font-size: 20px;
  }
  .support-section {
    padding: 40px 0 10px;
  }
  .support-information .date {
    font-size: 44px;
    margin-bottom: 20px;
  }
  .support-information p {
    margin-bottom: 15px;
  }
  .saved-vacancies-block {
    display: block !important;
    text-align: center;
    padding: 30px 19px;
  }
  .saved-vacancies-block .image {
    margin: 0 auto 20px;
  }
  .saved-vacancies-block .name {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6px;
  }
  .saved-vacancies-block .job {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
  }
  .saved-vacancies-block .place {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .saved-vacancies-block .experience {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .vacancies-section {
    padding: 40px 0;
  }
  .vacancies-form {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .header-menu-outer {
    width: 270px;
    margin-right: -270px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-menu-close {
    padding: 12px;
  }
  .header-buter {
    width: 34px;
  }
  .jumbotron-flex {
    padding: 30px 0;
  }
  .jumbotron-pic {
    display: none;
  }
  .jumbotron-content {
    text-align: center;
    padding: 0;
  }
  .jumbotron-content p {
    max-width: 100%;
    margin-bottom: 25px;
  }
  h1 {
    font-size: 32px;
  }
  .button {
    font-size: 17px;
    padding: 8px 30px;
  }
  .activities-big-name {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }
  .activities-right-place {
    width: 60%;
  }
  .activities-right-place .place {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .activities-right-place .line {
    margin-bottom: 22px;
  }
  .activities-description {
    width: 60%;
  }
  .activities-play-button {
    left: 10%;
  }
  .activities-information .date {
    font-size: 18px;
  }
  .activities-information .name {
    font-size: 17px;
  }
  .activities-slider {
    margin-bottom: 110px;
  }
  .activities-archive-link {
    text-align: center;
  }
  .development-directions-section {
    padding: 45px 0;
  }
  .development-directions-section h4 {
    font-size: 22px;
  }
  .footer-bottom {
    padding: 18px 0;
  }
  .footer-bottom-content {
    font-size: 17px;
    flex-direction: column;
  }
  .footer-bottom-content li {
    margin: 7px 0;
  }
  .development-directions-tabs {
    margin-bottom: 35px;
  }
  .development-directions-link {
    width: 50%;
    padding: 15px 12px;
  }
  .development-directions-link .number {
    font-size: 60px;
    margin-bottom: 15px;
  }
  .development-directions-link p {
    font-size: 15px;
    line-height: 1.15;
  }
  .development-directions-content .inner-flex {
    display: block;
  }
  .development-directions-content .number {
    margin-right: 0;
    margin-bottom: 15px;
    padding: 12px;
    font-size: 50px;
  }
  .development-directions-content .name {
    font-size: 24px;
  }
  .development-directions-content p {
    font-size: 17px;
  }
  .footer-top h5 {
    font-size: 20px;
  }
  .footer-info {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  .footer-contacts {
    width: 100%;
    padding-top: 40px;
    text-align: center;
    padding-right: 0;
  }
  .footer-contacts:before {
    display: none;
  }
  .footer-contacts .line {
    width: 100%;
  }
  .footer-menu {
    width: 100%;
    padding: 30px 0;
    text-align: center;
  }
  .footer-menu:after {
    width: 110vw;
    margin-left: -15px;
  }
  .footer-menu:before {
    display: none;
  }
  .footer-menu li {
    margin-bottom: 20px;
  }
  .footer-menu a {
    font-size: 17px;
  }
  .footer-options {
    width: 100%;
    padding-left: 0;
    padding: 30px 0;
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .footer-options:before {
    width: 110vw;
    margin-left: -15px;
  }
  .footer-languages {
    margin-bottom: 25px;
    margin-left: 0;
  }
  .simple-title {
    margin-bottom: 60px;
  }
  .support-information .date {
    font-size: 38px;
  }
  .support-pdf {
    height: 500px;
  }
  .vacancies-detail-block h3 {
    font-size: 22px;
  }
  .vacancies-form input {
    flex-grow: 1;
  }
}
/**

============
 */
.scroll_to_top {
  position: fixed;
  right: 0;
  display: block;
  content: '';
  width: 45px;
  height: 45px;
}
h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem 0 1.5rem;
}
.main-content {
  line-height: 1.3;
}
p + p {
  margin-top: 10px;
}
body h1:after {
  display: block;
  content: '';
  width: 161px;
  height: 2px;
  background-color: #FAB001;
  margin-top: 20px;
}
body .card {
  border: none;
  background-color: #4A4A4A;
  margin-bottom: 2rem;
}
body .card * {
  color: #ffff;
}
body .card .image img {
  object-fit: cover;
  height: 240px;
}
body .card .inner-text {
  min-height: 153px;
  border: none;
  padding: 30px;
}
body .card .press-date-time {
  display: flex;
}
body .card .press-date-time > div:first-child {
  margin-right: 1rem;
}
body .card .name {
  margin: 15px 0;
  font-weight: bold;
  font-size: 22px;
  height: 144px;
  overflow: hidden;
}
body .card .description {
  height: 215px;
}
body .navigation .screen-reader-text {
  display: none;
}
body .navigation .page-numbers {
  color: #777;
  font-weight: bold;
  font-size: 25px;
  margin: 0 15px 0 0;
}
body .navigation .page-numbers.current {
  color: #FFB300;
}
.tribe-is-responsive .kama_breadcrumbs {
  display: none;
}
.kama_breadcrumbs {
  margin-bottom: 2rem;
}
.kama_breadcrumbs a,
.kama_breadcrumbs .kb_sep {
  opacity: 0.6;
}
.comment-respond,
.related_wrap {
  display: none;
}
/*
.companies{
	background-color: #4A4A4A;
}*/
.post_info {
  margin: 1rem 0;
  color: #777;
}
h5,
h4 {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.post_content p > a > img {
  float: left;
  width: 320px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.ym-advanced-informer {
  display: none;
}
.post_item {
  display: flex;
  align-items: center;
  justify-content: stretch;
  margin-bottom: 2rem;
  background-color: #4A4A4A;
  position: relative;
  overflow: hidden;
}
.post_item .isotope_item {
  display: flex;
}
.post_item .post_thumb {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}
.post_item .post_thumb a {
  height: 100%;
  display: block;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}
.post_item .post_thumb img {
  object-fit: contain;
}
.post_item .post_content {
  margin: 1.5rem;
  width: 70%;
}
.post_item .post_content * {
  color: #fff;
}
.post_item .post_content .post_info_item {
  opacity: 0.6;
}
.tribe-events-cal-links {
  display: none;
}
.tribe-events-event-url-label,
.tribe-events-end-date-label {
  margin-top: 1.3rem;
}
.tribe-events-schedule {
  margin-bottom: 2rem;
}
.vacancy-item {
  width: 100%;
  padding: 50px 0 20px;
  background-color: #4A4A4A;
  color: #fff;
}
.vacancy-item:last-child {
  margin-bottom: 30px;
}
.vacancy-item .name {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 30px;
  display: block;
}
.vacancy-item .property {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.vacancy-item .property .pname {
  width: 190px;
  font-weight: bold;
  flex: none;
  font-size: 24px;
  margin-bottom: 0px;
}
.vacancy-item .property .pvalue {
  font-size: 14px;
  margin-top: 5px;
}
.vacancy-item .property a {
  text-decoration: underline;
  color: #fff;
}
.vacancy-item .property a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.vacancy-item {
  padding: 15px 30px 10px;
  margin-bottom: 15px;
  /*&_flex {
			display: flex;
			flex-direction: row;
			align-items: center;
			justify-content: space-between;
			
			@media (max-width: 640px) {
				flex-direction: column;
			}
			
			.property:first-child{
			
			}
			.property{
				margin-right: 1rem;
				&:first-child{
					width: 300px;
					flex:none;
				}
				&:last-child{
					margin-right: 0;
				}
			}
		}*/
}
.vacancy-item_grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 640px) {
  .vacancy-item_grid {
    grid-template-columns: 1fr;
  }
}
.vacancy-form {
  border-radius: 0px;
  padding: 10px 15px;
}
@media (max-width: 640px) {
  .vacancy-form {
    padding: 30px;
  }
  .vacancy-form .button {
    margin-top: 30px !important;
  }
}
.vacancy-form .row {
  display: flex;
  align-items: center;
}
.vacancy-form .form-group {
  margin-bottom: 0;
}
.vacancy-form .form-group label {
  display: none;
}
.vacancy-form .form-group input {
  font-size: 17px;
  color: #BABABA;
  height: 35px;
  background-color: transparent;
}
.vacancy-form .form-group input::-moz-placeholder,
.vacancy-form .form-group input::-webkit-input-placeholder,
.vacancy-form .form-group input:-ms-input-placeholder,
.vacancy-form .form-group input::-ms-input-placeholder,
.vacancy-form .form-group input::placeholder {
  font-size: 17px;
  color: #BABABA;
}
.vacancy-digit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.vacancy-digit__count {
  color: #710CD3;
  font-size: 71px;
}
.vacancy-digit__name {
  color: #787878;
}
#companySearchForm {
  margin-bottom: 30px;
}
#companySearchForm label {
  display: block;
}
#companySearchForm .btn {
  padding: 8px 12px;
  margin-top: -2px;
  text-transform: uppercase;
}
#companySearchForm .btn i {
  margin-right: 7.5px;
}
.form-group {
  position: relative;
}
.form-control {
  position: relative;
  border-radius: 0;
}
.autocomplete-suggestions {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #4a4a4a;
  overflow: auto;
  top: 50px;
  margin-top: 10px;
}
.autocomplete-suggestion {
  font-size: 12pt;
  font-weight: 300;
  overflow: hidden;
  padding: 5px 10px;
  white-space: nowrap;
}
.autocomplete-selected {
  background: #f0f0f0 none repeat scroll 0 0;
}
.autocomplete-suggestions strong {
  color: #fab001;
  font-weight: normal;
}
.checkbox label span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
  padding-top: 2px;
  font-size: 15px;
  line-height: 17px;
  font-family: AvenirNext, sans-serif;
}
.checkbox input[type="checkbox"]:checked + span::after {
  background-color: #fab001;
}
.checkbox span::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  left: 5px;
  top: 5px;
  margin-left: -20px;
  font-size: 11px;
  background-color: #e4e4e4;
  transition: background-color 0.1s ease-in-out;
}
.checkbox span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  top: 0px;
  margin-left: -20px;
  background-color: #e4e4e4;
  padding: 5px;
  box-sizing: border-box;
}
.simple-form input,
.simple-form textarea {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0;
  color: #000000;
  border: none;
  font-size: 26px;
  background: #fff;
  border-radius: 0;
  border-bottom: 1px solid #BABABA;
}
.simple-form input:focus,
.simple-form textarea:focus {
  box-shadow: none;
  border-bottom: 1px solid #000;
}
.simple-form textarea {
  height: 152px;
  resize: none;
  line-height: 1.25;
}
.simple-form .button {
  width: 100%;
}
.simple-form .input-block {
  margin-bottom: 20px;
}
.simple-form .inputs-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -15px;
}
.simple-form .inputs-flex .input-block {
  padding: 0 15px;
  width: 100%;
}
.simple-form .inputs-flex .width-50 {
  width: 50%;
}
.simple-form .inputs-flex .width-45 {
  width: 45%;
}
.simple-form .inputs-flex .width-55 {
  width: 55%;
}
.input-block .select2-container {
  width: 100% !important;
}
.input-block .select2-container .select2-selection--single {
  background: #fff;
  border-radius: 0 !important;
  height: 46px;
  border: none;
  border-bottom: 1px solid #BABABA;
  transition: all 0.3s ease-out;
}
.input-block .select2-container .select2-selection__rendered {
  line-height: 46px;
  font-size: 26px;
  color: #000;
  padding-right: 34px;
  padding-left: 0;
}
.input-block .select2-container .select2-selection__arrow {
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  right: 0;
  width: 11px;
}
.input-block .select2-container .select2-selection__arrow:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-size: 100% auto;
  transition: all 0.3s ease-out;
}
.input-block .select2-container .select2-selection__arrow b {
  display: none;
}
.input-block .select2-container .select2-selection__placeholder {
  color: #BABABA;
}
.input-block .select2-container--open .select2-selection__arrow:after {
  transform: rotate(-180deg);
}
.js-select-dropdown {
  border: 1px solid #BABABA !important;
  border-radius: 4px !important;
}
.js-select-dropdown .select2-results > .select2-results__options {
  max-height: 400px;
}
.js-select-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}
.js-select-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 2px;
  background: #2A439B;
}
.js-select-dropdown .select2-results__option {
  font-size: 16px;
}
.js-select-dropdown.select2-dropdown--below {
  margin-top: 5px;
}
.js-select-dropdown.select2-dropdown--above {
  margin-top: -5px;
}
.js-select-dropdown .select2-results__option--highlighted[aria-selected] {
  background: #2A439B;
}
.interactive-video {
  width: 100%;
  min-height: 800px;
}
@media (max-width: 640px) {
  .interactive-video {
    min-height: 300px;
  }
}
body.customize-support .header {
  top: 30px;
}
/*# sourceMappingURL=style.css.map */