.main-page {
  padding: 180px 0 170px 0;
  position: relative;
  background: url(../img/key/main-page-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.main-page h1 {
  font-family: "MazzardH Medium";
  font-size: 68px;
  line-height: 74px;
  color: #fff;
  margin-bottom: 90px;
}
.main-page h2 {
  font-family: "Roboto Regular";
  font-size: 27px;
  line-height: 33px;
  color: #fff;
  margin-bottom: 70px;
}
.main-page .main-page__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 61, 0.7);
  z-index: 1;
}
.main-page .main-page__bg-mobile {
  display: none;
}

.main-page__wrap {
  position: relative;
  z-index: 2;
}
.main-page__wrap .main-page__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 800px;
}
.main-page__wrap .main-page__list .main-page__list-item {
  display: flex;
  align-items: center;
  width: 380px;
  max-width: 100%;
  margin-bottom: 17px;
}
.main-page__wrap .main-page__list .main-page__list-item img {
  width: 40px;
  height: 40px;
}
.main-page__wrap .main-page__list .main-page__list-item p {
  font-family: "MazzardH Medium";
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-transform: uppercase;
  margin-left: 16px;
}

.sale {
  padding: 40px 0 60px 0;
}

.sale__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px 12px 0;
  background: linear-gradient(150deg, rgb(255, 0, 255) 0%, rgb(67, 104, 183) 100%);
}
.sale__wrap .sale__content {
  display: flex;
  flex-wrap: wrap;
}
.sale__wrap .sale__content .sale__content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 8px;
  min-width: 180px;
}
.sale__wrap .sale__content .sale__content-item .sale__content-item__image {
  border-radius: 50%;
  margin-bottom: 8px;
  position: relative;
}
.sale__wrap .sale__content .sale__content-item .sale__content-item__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffdc00;
}
.sale__wrap .sale__content .sale__content-item .sale__content-item__image img {
  z-index: 2;
  position: relative;
  border-radius: 50%;
}
.sale__wrap .sale__content .sale__content-item .title {
  font-family: "Roboto Bold";
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.sale__wrap .sale__content .sale__content-item .price {
  font-family: "MazzardH Medium";
  font-size: 32px;
  line-height: 38px;
  color: #ffdc00;
  font-weight: 600;
}
.sale__wrap .sale__content .sale__content-item .price span {
  font-family: "Roboto Bold";
}
.sale__wrap .sale__arrow {
  width: 50px;
  height: 50px;
}
.sale__wrap .button {
  display: none;
}

.goods {
  padding: 60px 0 30px 0;
  background-color: #f9f9fa;
}
.goods h2 {
  margin-bottom: 50px;
}

.goods__item {
  background: linear-gradient(90deg, rgb(51, 89, 137) 0%, rgb(113, 153, 195) 100%);
  padding: 36px 44px;
  margin-bottom: 30px;
}
.goods__item .goods__item-title {
  font-family: "MazzardH Medium";
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.goods__item .goods__item-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.goods__item .goods__item-content .goods__item-content__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 80px 0 14px 0;
  border-radius: 12px;
  background-color: #fff;
}
.goods__item .goods__item-content .goods__item-content__card .title {
  font-family: "Roboto Regular";
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
}
.goods__item .goods__item-content .goods__item-content__card .button {
  font-size: 16px;
  line-height: 22px;
  margin-top: auto;
  padding: 8px 20px 6px 20px;
  width: 190px;
}

.brands {
  padding: 70px 0 90px 0;
}
.brands h2 {
  width: 1150px;
  max-width: 100%;
  margin: 0 auto 50px auto;
}

.brands__wrap-outer {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.brands__wrap-inner {
  display: block;
  width: 4240px;
  max-width: none;
  position: absolute;
  overflow: hidden;
  -webkit-animation: marquee 20s linear infinite;
          animation: marquee 20s linear infinite;
}

.brands__wrap {
  width: 50%;
  float: left;
  display: inline-block;
  padding: 0;
}
.brands__wrap.mobile {
  display: inline-block;
}
.brands__wrap .brands__item {
  display: inline-block;
  vertical-align: top;
  width: 170px;
  margin: 0 8px;
}
.brands__wrap .brands__item img {
  height: 80px;
  margin: 0 auto;
}
.brands__wrap .brands__item p {
  text-align: center;
}

@-webkit-keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -2120px;
  }
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -2120px;
  }
}
.key {
  background-color: #52729b;
  overflow: hidden;
}

.key__wrap {
  position: relative;
  padding: 165px 0 160px 0;
}
.key__wrap .key__item {
  position: absolute;
  display: flex;
  align-items: center;
}
.key__wrap .key__item .key__item-icon {
  position: relative;
}
.key__wrap .key__item .key__item-icon img {
  width: 100%;
}
.key__wrap .key__item .key__item-icon p {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  font-family: "MazzardH Medium";
  font-size: 30px;
  line-height: 36px;
  color: #f7931e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.key__wrap .key__item .key__item-text {
  font-family: "Roboto Bold";
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.key__wrap .key__item.item-1 {
  top: 15px;
  left: 270px;
}
.key__wrap .key__item.item-1 .key__item-icon p {
  top: 47px;
  left: 125px;
}
.key__wrap .key__item.item-1 .key__item-text {
  max-width: 410px;
  margin-left: 40px;
}
.key__wrap .key__item.item-2 {
  flex-direction: column;
  right: -10px;
  top: 80px;
}
.key__wrap .key__item.item-2 .key__item-icon p {
  top: 113px;
  left: 54px;
}
.key__wrap .key__item.item-2 .key__item-text {
  max-width: 265px;
  margin-top: 40px;
  margin-left: 30px;
}
.key__wrap .key__item.item-3 {
  flex-direction: column;
  right: -10px;
  bottom: 230px;
}
.key__wrap .key__item.item-3 .key__item-icon p {
  top: 113px;
  left: 61px;
}
.key__wrap .key__item.item-3 .key__item-text {
  max-width: 265px;
  margin-top: 40px;
  margin-left: 30px;
}
.key__wrap .key__item.item-4 {
  right: 290px;
  bottom: -20px;
}
.key__wrap .key__item.item-4 .key__item-icon {
  width: 210px;
}
.key__wrap .key__item.item-4 .key__item-icon p {
  top: 73px;
  left: 181px;
}
.key__wrap .key__item.item-4 .key__item-text {
  max-width: 265px;
  margin-left: 30px;
  margin-bottom: 15px;
}
.key__wrap .key__item.item-5 {
  flex-direction: column;
  left: -20px;
  bottom: 90px;
}
.key__wrap .key__item.item-5 .key__item-icon p {
  top: 124px;
  left: 54px;
}
.key__wrap .key__item.item-5 .key__item-text {
  max-width: 285px;
  margin-top: 40px;
  margin-left: 30px;
}
.key__wrap .key__item.item-6 {
  flex-direction: column;
  left: 20px;
  top: 250px;
}
.key__wrap .key__item.item-6 .key__item-icon p {
  top: 135px;
  left: 45px;
}
.key__wrap .key__item.item-6 .key__item-text {
  max-width: 225px;
  margin-top: 40px;
}

.key__main {
  display: flex;
  justify-content: center;
  position: relative;
  width: 590px;
  max-width: 100%;
  margin: 0 auto;
}
.key__main img {
  transition: all 2.5s ease-out;
  transform: rotate(-40deg);
  z-index: 1;
  position: relative;
}
.key__main img.active {
  transform: rotate(0deg);
}
.key__main .key__main-inner {
  position: absolute;
  top: 35px;
  left: 45px;
  width: 520px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  background-color: #335989;
}
.key__main .key__main-inner .title {
  font-family: "MazzardH Medium";
  font-size: 90px;
  line-height: 96px;
  color: #fff;
  margin-bottom: 20px;
  margin-left: 35px;
}
.key__main .key__main-inner .subtitle {
  font-family: "MazzardH Medium";
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  text-transform: uppercase;
  margin-left: -40px;
}

.why {
  padding: 80px 0 60px 0;
}
.why h2 {
  margin-bottom: 60px;
}

.why__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.why__wrap .why__item {
  border: 7px solid #e6ebf1;
  padding: 30px 10px 16px 14px;
  margin-bottom: 40px;
  max-width: 100%;
  position: relative;
  border-radius: 22px;
}
.why__wrap .why__item .why__item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: #fff;
}
.why__wrap .why__item .title {
  font-family: "Roboto Bold";
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 8px;
}
.why__wrap .why__item .text {
  font-family: "Roboto Regular";
  font-size: 18px;
  line-height: 24px;
}
.why__wrap .why__item.small {
  width: 250px;
}
.why__wrap .why__item.small .why__item-icon {
  top: -36px;
  left: 14px;
}
.why__wrap .why__item.big {
  width: 345px;
}
.why__wrap .why__item.big .why__item-icon {
  top: -36px;
  left: 14px;
}

.managers {
  margin: 0 auto 50px auto;
  width: 800px;
  max-width: 100%;
  background: linear-gradient(60deg, rgb(51, 89, 137) 0%, rgb(113, 153, 195) 100%);
}
.managers h2 {
  font-size: 30px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 0 10px 0;
}
.managers .managers__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0 40px 0;
}
.managers .managers__content .managers__content-lead {
  font-family: "Roboto Regular";
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
.managers .managers__content .managers__content-people {
  display: flex;
  margin-top: 30px;
}
.managers .managers__content .managers__content-item {
  border-radius: 15px 15px 0 0;
  width: 300px;
  margin: 0 13px;
}
.managers .managers__content .managers__content-item .managers__content-item__header {
  border-radius: 15px 15px 0 0;
  padding: 10px 20px 5px 20px;
  background-color: #fff;
}
.managers .managers__content .managers__content-item .managers__content-item__header .name {
  font-family: "Roboto Bold";
  font-size: 21px;
  line-height: 27px;
  color: #335989;
}
.managers .managers__content .managers__content-item .managers__content-item__header .position {
  font-family: "Roboto Regular";
  font-size: 14px;
  line-height: 20px;
}
.managers .managers__content .managers__content-item .managers__content-item__contacts {
  margin-top: 2px;
  padding: 12px 20px;
  background: linear-gradient(60deg, rgb(113, 153, 195) 0%, rgb(51, 89, 137) 100%);
}
.managers .managers__content .managers__content-item .managers__content-item__contacts a {
  font-family: "Roboto Regular";
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  display: flex;
  align-items: center;
}
.managers .managers__content .managers__content-item .managers__content-item__contacts a:first-child {
  margin-bottom: 15px;
}
.managers .managers__content .managers__content-item .managers__content-item__contacts a img {
  margin-right: 12px;
}

:root {
  --animate-delay: 0.5s;
}

@media screen and (max-width: 1100px) {
  .sale__wrap {
    flex-direction: column;
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px;
  }
  .sale__wrap .sale__content {
    justify-content: center;
  }
  .sale__wrap .sale__content .sale__content-item {
    margin-bottom: 30px;
  }
  .sale__wrap .sale__content .sale__content-item .price {
    font-size: 24px;
    line-height: 30px;
  }
  .sale__wrap .sale__arrow {
    display: none;
  }
  .sale__wrap .button {
    display: block;
    color: #335989;
    width: 240px;
    background-color: #fece01;
  }
  .goods__item .goods__item-content {
    justify-content: space-evenly;
  }
  .goods__item .goods__item-content .goods__item-content__card {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .main-page {
    padding: 85px 0 30px 0;
    background: #264367;
  }
  .main-page .main-page__bg-mobile {
    display: block;
  }
  .main-page .main-page__bg-mobile img {
    width: 100%;
  }
  .main-page .main-page__shadow {
    display: none;
  }
  .main-page h1 {
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    margin: 25px 0 30px 0;
  }
  .main-page h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .main-page__wrap .main-page__list {
    flex-direction: column;
    align-items: center;
  }
  .main-page__wrap .main-page__list .main-page__list-item {
    width: 270px;
  }
  .main-page__wrap .main-page__list .main-page__list-item img {
    width: 24px;
    height: 24px;
  }
  .main-page__wrap .main-page__list .main-page__list-item p {
    font-size: 20px;
    line-height: 26px;
  }
  .sale {
    padding: 30px 0;
  }
  .sale__wrap {
    width: 400px;
    padding: 12px 6px;
  }
  .sale__wrap .sale__content .sale__content-item {
    min-width: auto;
    width: 120px;
  }
  .sale__wrap .sale__content .sale__content-item .title {
    text-align: center;
  }
  .goods {
    padding: 30px 0;
  }
  .goods h2 {
    margin-bottom: 30px;
  }
  .goods__item {
    padding: 20px 25px;
  }
  .goods__item .goods__item-title {
    font-size: 18px;
    line-height: 24px;
  }
  .goods__item .goods__item-content .goods__item-content__card {
    padding: 60px 0 14px 0;
  }
  .goods__item .goods__item-content .goods__item-content__card .title {
    font-size: 18px;
    line-height: 24px;
  }
  .goods__item .goods__item-content .goods__item-content__card .title br {
    display: none;
  }
  .brands {
    padding: 30px 0;
  }
  .key__wrap {
    display: flex;
    flex-direction: column;
    padding: 40px 0 40px 0;
  }
  .key__wrap .key__item {
    position: unset;
    flex-direction: row !important;
    justify-content: center;
    margin-bottom: 30px;
  }
  .key__wrap .key__item .key__item-text {
    font-family: "Roboto Regular";
    font-size: 18px;
    line-height: 24px;
    width: 260px;
    max-width: none !important;
    margin: 0 0 0 16px !important;
  }
  .key__wrap .key__item .key__item-icon {
    width: 120px !important;
  }
  .key__wrap .key__item .key__item-icon p {
    top: unset !important;
    left: 40px !important;
    bottom: -12px !important;
  }
  .key__wrap .key__item.item-1 {
    order: 2;
  }
  .key__wrap .key__item.item-2 {
    order: 3;
  }
  .key__wrap .key__item.item-3 {
    order: 4;
  }
  .key__wrap .key__item.item-4 {
    order: 5;
  }
  .key__wrap .key__item.item-5 {
    order: 6;
  }
  .key__wrap .key__item.item-6 {
    order: 7;
  }
  .key__main {
    order: 1;
    width: 320px;
    margin-bottom: 40px;
  }
  .key__main .key__main-inner {
    width: 280px;
    height: 280px;
    top: 20px;
    left: 26px;
  }
  .key__main .key__main-inner .title {
    font-size: 44px;
    line-height: 47px;
    margin-bottom: 12px;
  }
  .key__main .key__main-inner .subtitle {
    font-size: 28px;
    line-height: 32px;
    max-width: 190px;
    margin: 0;
  }
  .why {
    padding: 30px 0 10px 0;
  }
  .why__wrap {
    flex-direction: column;
    align-items: center;
  }
  .why__wrap .why__item.small {
    width: 345px;
  }
  .managers h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .managers .managers__content {
    padding: 20px 0 15px 0px;
  }
  .managers .managers__content .managers__content-lead {
    font-size: 16px;
    line-height: 22px;
  }
  .managers .managers__content .managers__content-people {
    flex-direction: column;
  }
  .managers .managers__content .managers__content-people .managers__content-item {
    width: 340px;
    max-width: 100%;
    margin: 0 0 20px 0;
  }
  .managers .managers__content .managers__content-people .managers__content-item .managers__content-item__contacts a {
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (max-width: 400px) {
  .key__wrap .key__item .key__item-icon {
    width: 90px !important;
    min-width: 90px;
  }
  .key__wrap .key__item .key__item-icon p {
    font-size: 24px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    left: 30px !important;
  }
  .key__wrap .key__item .key__item-text {
    font-size: 16px;
    line-height: 22px;
  }
  .managers .managers__content .managers__content-people .managers__content-item {
    width: 290px;
  }
}
@media screen and (max-width: 340px) {
  .key__main .key__main-inner {
    width: 250px;
    height: 250px;
  }
  .key__main .key__main-inner .title {
    font-size: 38px;
    line-height: 41px;
  }
  .key__main .key__main-inner .subtitle {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 0 40px;
  }
}/*# sourceMappingURL=style-key.css.map */