* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
.header {
    z-index: 9;
    position: relative;
    background-color: #fff;
}
.header .header-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header .header-wrapper .menu-wrapper {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
}
.header .header-wrapper .menu-wrapper .menu {
    display: flex;
}
.header .header-wrapper .menu-wrapper .menu li {
    margin: 0 15px;
}
.header .header-wrapper .phones-wrapper {
    position: relative;
    margin-left: auto;
}
.header .header-wrapper .phones-icon {
    background-color: #E0E0E0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header .header-wrapper .phones-dropdown {
    position: absolute;
    display: none;
}
.header .header-wrapper .phones-wrapper:hover .phones-dropdown {
    display: block;
    top: 100%;
    right: 0;
    background-color: #F2F2F2;
    width: 180px;
    border-radius: 10px;
}
.phones-dropdown .phone-item {
    padding: 25px;
}
.header .header-wrapper .lang-wrapper {
    margin-left: 50px;
}
.mobile-menu-toggler {
    display: none;
}
.mobile-menu-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: #fff;
    padding: 15px;
}
.mobile-menu-wrapper.active {
    display: block;
}
.mobile-menu-wrapper .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu-wrapper .contacts-phones a {
    display: block;
}
.mobile-phones {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mobile-phones .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mobile-phones .mobile-phones-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
}
.mobile-phones.active {
    display: block;
}
@media (max-width: 991px) {
    .header .header-wrapper .menu-wrapper {
        display: none;
    }
    .header .header-wrapper .lang-wrapper {
        display: none;
    }
    .mobile-menu-toggler {
        display: block;
    }
}
/*Home*/
/*Slider*/
.home-slider .swiper-slide {
    height: 80Vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*Footer*/
footer {
    background-color: #787878;
}
/*Pagination*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
.pagination .page-numbers svg {
    height: 25px;
}
/*Vacancy*/
.vacancy-inner {
    height: 600px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.vacancy-title {
    background-color: #fff;
}
/*Calc*/
.calc {
    padding: 50px 0;
}
.calc .container {
    /*padding: 50px;*/
    /*background-color: #fff;*/
}
.input__container.input__file p {
	font-size: 1em;
}
.menu__list .menu-item {
	margin-bottom: 12px;
}
.menu__list .menu-item:last-child {
	margin-bottom: 0;
}

/* page shareholders */

.shareholders {
  background-color: #fff;
  position: relative;
  padding: 160px 0;
}
@media only screen and (max-width: 1024px) {
  .shareholders {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  .shareholders {
    padding: 64px 0;
  }
}
.shareholders .section__text {
  top: 196px;
  right: -15px;
}
.shareholders .h2-title {
  margin-bottom: 160px;
}
@media only screen and (max-width: 1500px) {
  .shareholders .h2-title {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .shareholders .h2-title {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .shareholders .h2-title {
    margin-bottom: 32px;
  }
}

.shareholders__list .h3-title {
  font-size: 64px;
  transition: color 0.3s;
  padding-right: 25px;
}
@media only screen and (max-width: 1500px) {
  .shareholders__list .h3-title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1000px) {
  .shareholders__list .h3-title {
    font-size: 20px;
  }
}

.shareholders__list .h3-title:hover {
  color: #E8E100;
}

.shareholders__item {
	display: flex;
	align-items: center;
  	margin-bottom: 100px;
}
.shareholders__item:last-child {
  	margin-bottom: 0;
}

.shareholders__list .shareholders__logo {
	width: 100%;
	height: 100%;
}

.shareholders__list .shareholders__link {
	display: flex;
	min-width: 200px;
    max-width: 200px;
    width: 100%;
	margin-right: 40px;
}

@media only screen and (max-width: 1500px) {
	.shareholders__item {
		margin-bottom: 96px;
	}
}
@media only screen and (max-width: 767px) {
	.shareholders__item {
		margin-bottom: 46px;
		flex-direction: column;
		align-items: flex-start;
	}
	.shareholders__list .shareholders__link {
		margin-bottom: 32px;
	}
}

/* page about */
.about {
  background-color: #fff;
  position: relative;
  padding: 160px 0;
}
@media only screen and (max-width: 1024px) {
  .about {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 64px 0;
  }
}
.about .section__text {
  top: 196px;
  right: -15px;
}
.about .h2-title {
  margin-bottom: 160px;
}
@media only screen and (max-width: 1500px) {
  .about .h2-title {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .about .h2-title {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .about .h2-title {
    margin-bottom: 32px;
  }
}

.about .about__description p:not(:last-child) {
	margin-bottom: 15px;
}

.modal-form .input__file label {
	max-width: 100%;
}