@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
body {
  font-family: "Poppins", system-ui;
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.container {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.main {
  flex: 1 1 auto;
}

.logo {
  display: block;
  width: 126px;
  height: 54px;
}

.button {
  display: flex;
  min-height: 58px;
  padding: 14px 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: #2C3878;
  font-size: 0.875rem;
}
.button:hover {
  background-color: #5d6abd;
}

.button_white {
  background-color: #FFF;
  color: #3C3C3C;
  border: 1px solid #3C3C3C;
  transition: all 0.5s ease;
}
.button_white:hover {
  color: #FFF;
}

.title {
  font-size: 4.5rem;
  line-height: 140%;
  font-weight: 700;
}

.title_second {
  font-size: 3.5rem;
}

.records {
  padding: 40px 48px;
  background-color: #2C3878;
  color: #FFF;
  text-align: center;
}
.records__item:not(:last-child) {
  margin-bottom: 57px;
}
.records__digit {
  font-size: 3.25rem;
  line-height: 160%;
}
.records__text {
  font-size: 1rem;
  line-height: 160%;
}

.headline {
  position: relative;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 500;
  text-transform: uppercase;
}
.headline::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #000;
}

.subtitle {
  font-size: 2.25rem;
  line-height: 170%;
  font-weight: 600;
}

.subtitle_white {
  color: #FFF;
}

.person {
  padding: 17px 20px;
  display: flex;
  align-items: center;
  background-color: #FFF;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.person__img {
  max-width: 51px;
  margin-right: 20px;
}
.person__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.person__info {
  font-size: 1.125rem;
}
.person__name {
  line-height: 140%;
  font-weight: 600;
  color: #000;
}
.person__text {
  line-height: 160%;
  color: #9C9C9C;
}

/*HEADER*/
.header {
  padding: 40px 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__navigation {
  display: flex;
  align-items: center;
}
.header__menu {
  margin-right: 74px;
}

.menu__list {
  display: flex;
  transition: all 0.5s ease;
}
.menu__item:not(:last-child) {
  margin-right: 74px;
}
.menu__link {
  font-size: 1rem;
  line-height: 140%;
  color: #333333;
}
.menu__link:hover {
  text-decoration: underline;
}
.menu__link_active {
  font-weight: 600;
}

@media (max-width: 1024px) {
  .header__menu {
    margin-right: 35px;
  }
  .menu__item:not(:last-child) {
    margin-right: 35px;
  }
  .header__button {
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .menu__list {
    display: none;
  }
  .header__button {
    margin-right: 60px;
  }
  .menu__burger {
    display: block;
    position: absolute;
    top: 50px;
    right: 15px;
    width: 40px;
    height: 30px;
    z-index: 5;
    transition: all 0.5s ease;
  }
  .menu__burger span {
    position: absolute;
    background-color: #2C3878;
    left: 0;
    top: 15px;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease 0s;
  }
  .menu__burger::before,
  .menu__burger::after {
    content: "";
    background-color: #2C3878;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .menu__burger::before {
    top: 0;
  }
  .menu__burger::after {
    bottom: 0;
  }
  .menu__burger_active span {
    transform: scale(0);
  }
  .menu__burger_active::before {
    background-color: #fff;
    transform: rotate(45deg);
    top: 19px;
  }
  .menu__burger_active::after {
    background-color: #fff;
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .menu__list_active {
    position: absolute;
    z-index: 4;
    display: block;
    overflow: auto;
    top: 0;
    left: 0;
    background-color: #2C3878;
    width: 100vw;
    height: 100vh;
    padding-top: 100px;
    text-align: center;
    transition: all 0.5s ease;
  }
  .menu__list_active .menu__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .menu__list_active .menu__link {
    font-size: 2.5rem;
    color: #fff;
  }
}
@media (max-width: 480px) {
  .header__button {
    display: none;
  }
}
/*HOME*/
/*MAIN*/
/*iINFO-BLOCK*/
.info-block {
  padding: 97px 0 80px;
}
.info-block__container {
  position: relative;
}
.info-block__title {
  max-width: 9.45em;
  margin-bottom: 46px;
}
.info-block__title::after {
  content: "";
  position: absolute;
  top: 46px;
  right: 15px;
  width: 683px;
  height: 2px;
  background-color: #000;
}
.info-block__img {
  position: relative;
  width: 100%;
  min-height: 500px;
}
.info-block__img img {
  width: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-block__records {
  position: absolute;
  top: -209px;
  right: 142px;
}

@media (max-width: 1200px) {
  .info-block__title::after {
    width: 510px;
  }
  .info-block__records {
    right: 120px;
  }
  .records {
    padding: 25px 20px;
  }
  .records__digit {
    font-size: 2.625rem;
  }
}
@media (max-width: 1024px) {
  .info-block__title::after {
    width: 410px;
  }
  .title {
    font-size: 3.5rem;
  }
  .info-block__records {
    right: 50px;
    top: -150px;
  }
  .records__item:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 830px) {
  .info-block {
    padding: 80px 0 40px;
  }
  .info-block__title::after {
    width: 300px;
  }
  .info-block__records {
    top: -20px;
  }
  .records {
    display: flex;
  }
  .records__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .records__digit {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .info-block {
    padding: 40px 0;
  }
  .info-block__title {
    max-width: 100%;
    text-align: center;
  }
  .info-block__title::after {
    display: none;
  }
  .info-block__img {
    min-height: 400px;
  }
  .info-block__img img {
    min-height: 400px;
  }
  .records__digit {
    font-size: 1.75rem;
  }
  .records__text {
    font-size: 0.875rem;
  }
}
@media (max-width: 600px) {
  .title {
    font-size: 2.875rem;
  }
  .info-block__records {
    position: static;
    margin-top: 20px;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 2.625rem;
  }
  .info-block__img {
    min-height: 300px;
  }
  .info-block__img img {
    min-height: 300px;
  }
  .records__digit {
    font-size: 1.375rem;
  }
}
@media (max-width: 360px) {
  .title {
    font-size: 2.25rem;
  }
  .info-block__img {
    min-height: 250px;
  }
  .info-block__img img {
    min-height: 250px;
  }
  .records {
    flex-direction: column;
  }
  .records__item:not(:last-child) {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .records__digit {
    font-size: 1.5rem;
  }
}
/*HOME-ABOUT*/
.home-about {
  padding: 80px 0;
}
.home-about__headline::after {
  top: 50%;
  left: 60px;
}
.home-about__title {
  margin-top: 20px;
  margin-bottom: 60px;
}
.home-about__items {
  display: flex;
}
.home-about__img {
  position: relative;
  flex: 0 1 74%;
  margin-right: 50px;
}
.home-about__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-about__person {
  position: absolute;
  top: 27px;
  right: -161px;
}
.home-about__content {
  padding-top: 187px;
  flex: 0 1 22%;
}
.home-about__text {
  margin-bottom: 40px;
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}
.home-about__button {
  max-width: 142px;
  font-size: 0.875rem;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .home-about__img {
    flex: 0 1 64%;
  }
  .home-about__content {
    padding-top: 100px;
    flex: 0 1 32%;
  }
  .home-about__person {
    top: 10px;
  }
  .person {
    padding: 10px;
  }
  .person__info {
    font-size: 1rem;
  }
}
@media (max-width: 880px) {
  .home-about__items {
    flex-direction: column;
  }
  .home-about__img {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .home-about__person {
    right: -10px;
  }
  .home-about__content {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .home-about {
    padding: 40px 0;
  }
  .person__img {
    max-width: 40px;
  }
  .person__info {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .subtitle {
    font-size: 1.75rem;
    line-height: 140%;
  }
  .home-about__img {
    min-height: 300px;
  }
  .home-about__img img {
    min-height: 300px;
  }
  .home-about__person {
    display: none;
  }
}
@media (max-width: 360px) {
  .home-about__img {
    min-height: 250px;
  }
  .home-about__img img {
    min-height: 250px;
  }
}
/*HOME-SERVICE*/
.home-service {
  padding: 80px 0;
}
.home-service__headline::after {
  left: 75px;
  top: 50%;
}
.home-service__title {
  margin-top: 20px;
  margin-bottom: 24px;
}
.home-service__text {
  margin-bottom: 88px;
  max-width: 26em;
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}
.home-service__img {
  position: relative;
  padding-left: 124px;
  width: 100%;
}
.home-service__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-service__list-benefits {
  position: absolute;
  top: -80px;
  left: 0;
}

.list-benefits {
  padding: 40px 40px 40px 0;
  width: 883px;
  background-color: #FFF;
}
.list-benefits__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-benefits__item:not(:last-child) {
  margin-bottom: 35px;
}
.list-benefits__body {
  display: flex;
  color: #333333;
}
.list-benefits__digit {
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  margin-right: 40px;
}
.list-benefits__title {
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
}
.list-benefits__link {
  transition: all 0.5s ease;
}
.list-benefits__link:hover {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .home-service__img {
    padding-left: 0;
  }
  .list-benefits {
    padding: 20px 20px 20px 0;
    width: 480px;
  }
  .list-benefits__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .list-benefits__digit {
    font-size: 1.25rem;
  }
  .list-benefits__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .home-service {
    padding: 40px 0;
  }
  .home-service__title {
    max-width: 100%;
  }
  .home-service__text {
    max-width: 100%;
    margin-bottom: 100px;
  }
  .list-benefits {
    padding: 10px 10px 10px 0;
    width: 290px;
  }
  .list-benefits__content {
    margin-right: 10px;
  }
  .list-benefits__title {
    font-size: 1rem;
  }
  .list-benefits__digit {
    margin-right: 20px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .home-service__text {
    margin-bottom: 40px;
  }
  .list-benefits {
    margin-bottom: 20px;
    position: static;
    width: 100%;
  }
  .list-benefits__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .home-service__img-pic {
    min-height: 250px;
  }
}
@media (max-width: 360px) {
  .home-service__img-pic {
    min-height: 180px;
  }
}
/*HOME-PRODUCT*/
.product {
  padding: 80px 0;
}
.product__headline {
  margin-bottom: 20px;
}
.product__headline::after {
  left: 85px;
  top: 50%;
}
.product__items {
  margin-bottom: 73px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product__title {
  max-width: 9.36em;
}
.product__text {
  max-width: 26.28em;
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
  font-weight: 400;
}
.product__list-benefits {
  width: 100%;
}

.list-benefits__text {
  font-size: 1.125rem;
  line-height: 160%;
  color: #333333;
}

@media (max-width: 1024px) {
  .product__text {
    max-width: 16.67em;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .product {
    padding: 40px 0;
  }
  .product__text {
    max-width: 100%;
  }
  .product__items {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .product__title {
    max-width: 100%;
    margin-bottom: 20px;
    align-self: start;
  }
  .list-benefits__text {
    font-size: 0.875rem;
  }
}
/*HOME-MATERIAL*/
.home-material {
  padding: 80px 0;
}
.home-material__headline::after {
  left: 90px;
  top: 50%;
}
.home-material__items {
  margin-top: 20px;
  position: relative;
  display: flex;
}
.home-material__item:first-child {
  margin-right: 80px;
}
.home-material__title {
  max-width: 9.67em;
  margin-bottom: 10px;
}
.home-material__text {
  max-width: 27.61em;
  margin-bottom: 23px;
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}
.home-material__button {
  max-width: 161px;
  font-size: 0.875rem;
}
.home-material__img {
  max-width: 342px;
  max-height: 392px;
}
.home-material__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-material__img-block {
  position: absolute;
  top: -98px;
  right: 0;
}

.img-block-material__img1 {
  max-width: 241px;
  max-height: 225px;
  margin-bottom: 40px;
}
.img-block-material__img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-block-material__img2 {
  max-width: 195px;
  max-height: 178px;
}
.img-block-material__img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1210px) {
  .home-material__item:first-child {
    margin-right: 30px;
  }
  .home-material__img {
    max-width: 300px;
    max-height: 344px;
  }
}
@media (max-width: 1120px) {
  .home-material__item:last-child {
    display: flex;
  }
  .home-material__img {
    margin-top: 20px;
    margin-right: 10px;
  }
  .home-material__img-block {
    position: static;
  }
  .img-block-material__img1 {
    margin-bottom: 10px;
  }
}
@media (max-width: 940px) {
  .home-material__items {
    flex-direction: column;
  }
  .home-material__item:first-child {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .home-material__item:last-child {
    justify-content: center;
  }
  .home-material__title {
    max-width: 100%;
  }
  .home-material__text {
    max-width: 100%;
  }
  .home-material__img {
    margin-right: 50px;
  }
}
@media (max-width: 768px) {
  .home-material {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .home-material__img {
    margin-top: 0;
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .home-material__item:last-child {
    flex-direction: column;
    align-items: center;
  }
  .home-material__img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .img-block-material {
    display: flex;
    align-items: center;
  }
  .img-block-material__img1 {
    margin-right: 10px;
  }
}
/*CONTACT US*/
.contact-us {
  padding: 38px 0;
  background-color: #2C3878;
}
.contact-us__items {
  display: flex;
  justify-content: space-between;
}
.contact-us__title {
  max-width: 17em;
}
.contact-us__text {
  margin-bottom: 20px;
  max-width: 24em;
  font-size: 1.125rem;
  line-height: 160%;
  color: #D9D9D9;
}
.contact-us__button {
  min-width: 142px;
  font-size: 0.875rem;
  padding: 14px 32px;
}

@media (max-width: 1024px) {
  .contact-us__items {
    flex-direction: column;
  }
  .contact-us__title {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .content-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contact-us__text {
    max-width: 100%;
    margin-right: 20px;
  }
  .contact-us__button {
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .content-contact {
    align-items: start;
    flex-direction: column;
  }
}
/*FOOTER*/
.footer {
  padding: 80px 0;
}
.footer__items {
  display: flex;
  justify-content: space-between;
}
.footer__item:first-child {
  margin-right: 20px;
}
.footer__item:last-child {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  margin-bottom: 10px;
}
.footer__title {
  max-width: 13.36em;
}
.footer__text {
  padding-left: 24px;
  margin-top: 32px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.125rem;
}
.footer__text::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #333333;
}
.footer__contact {
  padding: 15px 0;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #141414;
}
.footer__email::-moz-placeholder {
  font-size: 1rem;
  line-height: 160%;
  color: #D9D9D9;
}
.footer__email::placeholder {
  font-size: 1rem;
  line-height: 160%;
  color: #D9D9D9;
}
.footer__button {
  transition: all 0.5s ease;
}
.footer__button:hover {
  opacity: 0.5;
}
.footer__social {
  align-self: flex-end;
}

.social {
  max-width: 203px;
}
.social__text {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 160%;
  color: #333333;
}
.social__items {
  display: flex;
}
.social__item:hover {
  opacity: 0.5;
}
.social__item:not(:last-child) {
  margin-right: 33px;
}

@media (max-width: 1024px) {
  .footer__title {
    max-width: 9.72em;
  }
}
@media (max-width: 850px) {
  .footer {
    padding: 40px 0;
  }
  .footer__items {
    flex-direction: column;
  }
  .footer__title {
    max-width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }
  .footer__contact {
    max-width: 440px;
  }
  .footer__social {
    align-self: start;
  }
}
/*ABOUT US*/
/*aboutus-main*/
.aboutus-main {
  padding: 80px 0 50px;
}

.main-pagedop__title {
  text-align: center;
  margin-bottom: 36px;
}
.main-pagedop__text {
  margin: 0 auto;
  max-width: 32.33em;
  text-align: center;
  font-size: 1.125rem;
  line-height: 160%;
  margin-bottom: 86px;
}
.main-pagedop__img {
  width: 100%;
}
.main-pagedop__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .aboutus-main {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .main-pagedop__title {
    font-size: 2.875rem;
    margin-bottom: 28px;
  }
  .main-pagedop__text {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .main-pagedop__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .main-pagedop__text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .main-pagedop__img {
    min-height: 200px;
  }
  .main-pagedop__img img {
    min-height: 200px;
  }
}
@media (max-width: 360px) {
  .main-pagedop__img {
    min-height: 160px;
  }
  .main-pagedop__img img {
    min-height: 160px;
  }
}
/*aboutus-achievament*/
.aboutus-achievament {
  padding: 80px 0;
}
.aboutus-achievament__headline {
  margin-bottom: 20px;
}
.aboutus-achievament__headline::after {
  left: 120px;
  top: 50%;
}
.aboutus-achievament__title {
  margin-bottom: 56px;
  max-width: 20.5em;
}
.aboutus-achievament__items {
  display: flex;
}
.aboutus-achievament__img {
  margin-right: 59px;
}
.aboutus-achievament__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutus-achievament__records {
  max-width: 252px;
}

@media (max-width: 1024px) {
  .aboutus-achievament__img {
    margin-right: 20px;
  }
}
@media (max-width: 830px) {
  .aboutus-achievament {
    padding: 40px 0;
  }
  .aboutus-achievament__items {
    flex-direction: column;
  }
  .aboutus-achievament__img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .aboutus-achievament__records {
    max-width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .aboutus-achievament__title {
    margin-bottom: 30px;
  }
}
/*aboutus-service*/
.service {
  padding: 80px 0;
}
.service__headline {
  margin-bottom: 20px;
}
.service__headline::after {
  left: 74px;
  top: 50%;
}
.service__title {
  margin-bottom: 25px;
}
.service__text {
  margin-bottom: 40px;
  max-width: 26.17em;
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}

.why-we {
  display: flex;
}
.why-we__item {
  padding: 20px 27px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.why-we__item:not(:last-child) {
  margin-right: 18px;
}
.why-we__img {
  margin: 0 auto 20px;
  width: 63px;
  height: 63px;
}
.why-we__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-we__title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
}
.why-we__text {
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}

@media (max-width: 1024px) {
  .service__text {
    max-width: 100%;
  }
  .why-we {
    flex-wrap: wrap;
  }
}
@media (max-width: 830px) {
  .service {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .why-we__item {
    padding: 10px;
  }
  .why-we__title {
    font-size: 1.25rem;
  }
  .why-we__text {
    font-size: 1rem;
  }
}
/*SERVICE*/
.services-main {
  padding: 80px 0;
}

.service-achievament {
  padding: 80px 0;
}
.service-achievament__headline {
  margin-bottom: 40px;
}
.service-achievament__headline::after {
  left: 120px;
  top: 50%;
}
.service-achievament__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-achievament__item:not(:last-child) {
  margin-bottom: 40px;
}
.service-achievament__img {
  margin-right: 15px;
  flex: 0 1 62%;
}
.service-achievament__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-achievament__content {
  max-width: 334px;
}
.service-achievament__title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  color: #333333;
}
.service-achievament__text {
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}

@media (max-width: 1024px) {
  .services-main {
    padding: 40px 0;
  }
  .service-achievament {
    padding: 40px 0;
  }
  .service-achievament__img {
    flex: 0 1 52%;
  }
  .service-achievament__content {
    max-width: 47%;
  }
  .service-achievament__title {
    margin-bottom: 10px;
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .service-achievament__item {
    flex-direction: column;
  }
  .service-achievament__img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service-achievament__content {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .service-achievament {
    padding: 0 0 40px;
  }
  .service-achievament__title {
    font-size: 1.25rem;
  }
  .service-achievament__text {
    font-size: 1rem;
  }
}
/*TEAMS*/
/*teams-designer*/
.teams-main {
  padding: 80px 0;
}

.teams-designer {
  padding: 80px 0;
}
.teams-designer__headline {
  margin-bottom: 20px;
}
.teams-designer__headline::after {
  left: 90px;
  top: 50%;
}
.teams-designer__title {
  margin-bottom: 24px;
}
.teams-designer__text {
  margin-bottom: 80px;
  max-width: 26.17em;
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}
.teams-designer__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.teams-designer__item {
  position: relative;
  background: url(../img/teams/fon.jpg);
}
.teams-designer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teams-designer__content {
  width: 92%;
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  padding: 10px;
  background-color: #FFF;
}
.teams-designer__name {
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  color: #333333;
}
.teams-designer__position {
  font-size: 1rem;
  line-height: 160%;
  color: #9C9C9C;
}

@media (max-width: 1024px) {
  .teams-designer,
  .teams-main,
  .teams-service {
    padding: 40px 0;
  }
  .teams-designer__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .teams-designer__name {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .teams-designer__text {
    margin-bottom: 40px;
  }
  .teams-designer__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .teams-designer__name {
    font-size: 1.125rem;
  }
  .teams-designer__position {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .teams-designer__items {
    grid-template-columns: 1fr;
  }
  .teams-designer__item {
    margin: 0 auto;
    width: 80%;
  }
  .teams-designer__content {
    padding: 5px;
    bottom: 6px;
  }
}
/*CONTACT US*/
/*contactus-form*/
.contactus-main {
  padding: 80px 0;
}

.contactus-form {
  padding: 50px 0;
}
.contactus-form__name {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.contactus-form__first-name {
  flex: 0 1 49%;
  margin-right: 14px;
}
.contactus-form__label {
  margin-bottom: 10px;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 500;
  color: #333333;
}
.contactus-form__last-name {
  flex: 0 1 49%;
}
.contactus-form__email-input {
  margin-bottom: 20px;
}
.contactus-form__phone-input {
  margin-bottom: 20px;
}
.contactus-form__message {
  margin-bottom: 40px;
}
.contactus-form__button {
  margin: 0 auto;
}

.input-form {
  padding: 18px 32px;
  width: 100%;
  font-size: 1rem;
  line-height: 160%;
  border: 1px solid #9C9C9C;
}
.input-form::-moz-placeholder {
  color: #9C9C9C;
}
.input-form::placeholder {
  color: #9C9C9C;
}

.contactus-location {
  padding: 80px 0;
}
.contactus-location__headline {
  margin-bottom: 20px;
}
.contactus-location__headline::after {
  left: 90px;
  top: 50%;
}
.contactus-location__items {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.contactus-location__item {
  flex: 0 1 50%;
}
.contactus-location__item:not(:last-child) {
  margin-right: 60px;
}
.contactus-location__item-block {
  margin-bottom: 40px;
}
.contactus-location__title {
  margin-bottom: 24px;
}
.contactus-location__item-block-title {
  margin-bottom: 30px;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  color: #333333;
}
.contactus-location__item-block-text {
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}

@media (max-width: 1024px) {
  .contactus-main {
    padding: 40px 0;
  }
  .contactus-form__name {
    flex-direction: column;
  }
  .contactus-form__first-name {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .contactus-location__items {
    flex-direction: column;
  }
  .contactus-location__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .contactus-location__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .contactus-location__item-block:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .contactus-location,
  .contactus-form {
    padding: 40px 0;
  }
  .contactus-location__item:not(:first-child) {
    flex-direction: column;
  }
  .contactus-location__item:first-child {
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
  }
  .contactus-location__item:first-child .contactus-location__item-block:first-child {
    width: 100%;
  }
  .contactus-location__item-block:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .contactus-form__label {
    font-size: 1rem;
  }
  .input-form {
    padding: 15px;
    font-size: 1rem;
  }
  .contactus-location__item:first-child {
    flex-direction: column;
  }
}
/*PORTFOLIO*/
.portfolio-main {
  padding: 80px 0;
}

.portfolio {
  padding: 80px 0;
}
.portfolio__headline {
  margin-bottom: 40px;
}
.portfolio__headline::after {
  left: 100px;
  top: 50%;
}
.portfolio__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio__item:not(:last-child) {
  margin-bottom: 40px;
}
.portfolio__item-img {
  position: relative;
  margin-right: 20px;
}
.portfolio__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio__item-person {
  position: absolute;
  top: 26px;
  right: -161px;
}
.portfolio__item-info {
  padding-top: 40px;
}
.portfolio__item-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  color: #333333;
}
.portfolio__item-text {
  margin-bottom: 40px;
  max-width: 12.39em;
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}
.portfolio__item-button {
  max-width: 129px;
}
.portfolio__item_right .portfolio__item-img {
  order: 2;
}
.portfolio__item_right .portfolio__item-person {
  right: auto;
  left: -161px;
}
.portfolio__item_right .portfolio__item-text {
  margin-right: 20px;
}

@media (max-width: 1280px) {
  .portfolio__item-info {
    padding-top: 90px;
  }
  .portfolio__item-text {
    max-width: 20em;
  }
}
@media (max-width: 1024px) {
  .portfolio-main,
  .portfolio {
    padding: 40px 0;
  }
  .portfolio__item-person {
    right: 0;
  }
  .portfolio__item-info {
    padding-top: 0;
  }
  .portfolio__item-title {
    margin-bottom: 10px;
    font-size: 1.25rem;
  }
  .portfolio__item-text {
    margin-bottom: 20px;
    font-size: 1rem;
  }
  .portfolio__item_right .portfolio__item-person {
    left: 0;
  }
}
@media (max-width: 768px) {
  .portfolio__item {
    flex-direction: column;
  }
  .portfolio__item-img {
    margin-bottom: 20px;
    margin-right: 0;
    padding-right: 80px;
  }
  .portfolio__item-text {
    max-width: 100%;
  }
  .portfolio__item_right .portfolio__item-img {
    padding-left: 80px;
    padding-right: 0;
    order: 0;
  }
  .portfolio__item_right .portfolio__item-text {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .portfolio__item-img {
    padding-right: 0;
  }
  .portfolio__item-person {
    display: none;
  }
  .portfolio__item_right .portfolio__item-img {
    padding-left: 0;
  }
}
/*DESIGN*/
.design-main,
.design {
  padding: 80px 0;
}

.design__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.design__item:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.design__item-title {
  margin-bottom: 24px;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  color: #333333;
}
.design__item-text {
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}
.design__item-text p:not(:last-child) {
  margin-bottom: 30px;
}
.design__item-info {
  display: flex;
  justify-content: space-between;
}
.design__item-date {
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}
.design__item-dop {
  font-size: 1.125rem;
  line-height: 160%;
  color: #9C9C9C;
}
.design__item-img {
  overflow: hidden;
}
.design__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.design__item_big {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .design-main,
  .design {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  /*.design-main,
  .design {
  	padding-top: 30px;
  }
  .design__items {
  	grid-template-columns: 1fr;
  }
  .design__item-body {
  	margin-bottom: 30px;
  }
  .design__item_big {
  	grid-column: span 1;
  }*/
  .design__item_textsize {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .design-main,
  .design {
    padding-top: 30px;
  }
  .design__items {
    grid-template-columns: 1fr;
  }
  .design__item_textsize {
    grid-column: span 1;
  }
  .design__item-body {
    margin-bottom: 30px;
  }
  .design__item_big {
    grid-column: span 1;
  }
  .design__item-info {
    flex-direction: column;
  }
  .main-pagedop__img {
    min-height: 300px;
  }
  .main-pagedop__img img {
    min-height: 300px;
  }
  .design__item-img {
    text-align: center;
  }
  .design__item-img img {
    width: 80%;
  }
}
@media (max-width: 360px) {
  .main-pagedop__img {
    min-height: 250px;
  }
  .main-pagedop__img img {
    min-height: 250px;
  }
}