body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #2B2B2D;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 0 0 60px 60px;
}

.hero-head {
  display: flex;
  gap: 26px;
  align-items: center;
}

.hero-logo img {
  width: 100%;
  height: auto;
  max-width: 207px;
}

.hero-tagline {
  padding-left: 14px;
  position: relative;
  font-weight: 500;
}

.hero-tagline::before {
  content: "";
  display: block;
  width: 2px;
  background-color: #65748A;
  height: 57px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

.hero-main {
  padding-top: 80px;
  display: flex;
  gap: 20px;
}

.hero-main-content {
  flex-grow: 1;
}

.hero-title {
  margin: 0;
  font-size: 41px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "MTS Wide", sans-serif;
}

.hero-title-top span {
  font-size: 33px;
  display: block;
}

.hero-title-bottom {
  color: #C1262E;
  font-size: 34px;
  text-transform: none;
}

.hero-sub-title {
  position: relative;
  padding-left: 42px;
  font-family: "MTS Wide", sans-serif;
  font-weight: 700;
  font-size: 23px;
  margin-top: 56px;
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.12;
}

.hero-sub-title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/hero-sub-title-icon.png) center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero-button {
  max-width: 558px;
}

.hero-button .button {
  width: 100%;
}

.hero-main-side {
  flex-shrink: 0;
}

.hero-numbers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 24px 20px;
  box-sizing: border-box;
  border-radius: 5px;
}

.hero-numbers-item {
  text-align: center;
  font-weight: 700;
}

.hero-numbers-icon {
  margin-bottom: 13px;
}

.hero-numbers-icon img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.hero-numbers-label {
  margin-bottom: 4px;
  font-size: 14px;
}

.hero-numbers-value {
  font-size: 20px;
  font-family: "MTS Wide", sans-serif;
}

.hero-bottom {
  margin-top: 26px;
}

.hero-features {
  display: flex;
  background-color: #A2A1A8;
  padding: 10px 16px;
  border-radius: 10px;
  gap: 10px;
  box-sizing: border-box;
}

.hero-features-item {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-basis: calc((100% - 20px) / 3);
  box-sizing: border-box;
}

.hero-features-image {
  flex-shrink: 0;
}

.hero-features-image img {
  width: 92px;
  height: 92px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 5px;
}

.hero-features-content {
  font-family: "MTS Wide", sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.button {
  display: inline-flex;
  background: linear-gradient(135deg, rgb(193, 38, 46) 30%, rgb(139, 0, 7) 100%);
  height: 60px;
  border-radius: 5px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  box-sizing: border-box;
  outline: none;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: "MTS Wide", sans-serif;
  line-height: 1.1;
}

.section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.section.section-overflow-hidden {
  overflow: hidden;
}

.section.section-bg {
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(35deg, rgba(189, 189, 189, 0.7) 0%, rgb(242, 242, 242) 100%);
}

.section:last-child {
  margin-bottom: 0;
}

.section.section-alt-image .section-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.section-col {
  flex-basis: calc((100% - 20px) / 2);
}

.section-header {
  margin-bottom: 24px;
}

.section-title {
  font-family: "MTS Wide", sans-serif;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.section-title span {
  color: #C1262E;
}

.section-content {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.section-content b {
  font-weight: 700;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #2B2B2D;
}

.section-list-item {
  display: flex;
  gap: 18px;
}

.section-list-item:not(:last-child) {
  margin-bottom: 24px;
}

.section-list-icon {
  flex-shrink: 0;
  display: flex;
}

.section-list-icon img {
  width: 31px;
  height: 31px;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-list-text-title {
  color: #C1262E;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-button {
  margin-top: 30px;
}

.section-button .button {
  width: 100%;
}

.section-image {
  text-align: center;
  position: relative;
}

.section-image img {
  max-width: 100%;
  height: auto;
}

.section-slider .swiper {
  overflow: visible;
}

.section-slider .swiper-slide {
  height: auto;
}

.section-slider-item {
  overflow: hidden;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-slider-image {
  position: relative;
  padding-bottom: 74%;
}

.section-slider-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section-slider-content {
  flex-grow: 1;
  padding: 30px 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.section-slider-number {
  font-size: 36px;
  font-weight: 700;
  color: #C1262E;
  font-family: "MTS Wide", sans-serif;
  margin-bottom: 24px;
}

.section-slider-title {
  font-family: "MTS Wide", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  min-height: 76px;
}

.section-slider-text {
  font-size: 18px;
  font-weight: 500;
  flex-grow: 1;
}

.section-slider-link {
  font-weight: 700;
  font-size: 20px;
}

.section-slider-link a {
  color: currentColor;
  text-decoration: none;
}

.section-image-text {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 6;
  color: #fff;
  text-shadow: -1px 2px 6px 0 rgba(0, 0, 0, 0.8);
}

.section-header-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.section-header-left {
  flex-grow: 1;
}

.section-header-right {
  flex-shrink: 0;
}

.section-slider-control {
  display: flex;
  gap: 10px;
  align-items: center;
}

.section-slider-button {
  cursor: pointer;
  display: flex;
}

.section-slider-button svg {
  width: 40px;
  height: 40px;
}

.section-slider-button.swiper-button-disabled {
  opacity: 0.5;
}

.section-slider-button-next {
  transform: scale(-1, 1);
}

.footer {
  background-color: #2B2B2D;
  color: #fff;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-text {
  font-family: "MTS Wide", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.footer-text p {
  margin: 0;
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }

  .section.section-alt-image {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1200px) {
  .hero-features-image img {
    width: 60px;
    height: 60px;
  }

  .hero-features-content {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .mobile-hidden {
    display: none !important;
  }

  .hero .container {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-bg {
    border-radius: 0 0 30px 30px;
  }

  .hero-head {
    gap: 10px;
  }

  .hero-logo img {
    max-width: 144px;
  }

  .hero-tagline::before {
    height: 26px;
  }

  .hero-tagline {
    font-size: 13px;
  }

  .hero-main {
    display: block;
    padding-top: 70px;
  }

  .hero-title {
    font-size: 25px;
  }

  .hero-title-top span {
    font-size: 25px;
    display: inline;
  }

  .hero-title-bottom {
    font-size: 20px;
    margin-top: 20px;
  }

  .hero-sub-title::before {
    width: 20px;
    height: 20px;
    transform: none;
    top: 5px;
  }

  .hero-sub-title {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 30px;
    font-size: 18px;
  }

  .hero-button {
    max-width: 100%;
  }

  .hero-numbers {
    flex-direction: row;
    gap: 10px;
    background: transparent;
    padding: 0;
  }

  .hero-numbers-item {
    flex-basis: calc((100% - 20px) / 3);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 14px 8px;
    box-sizing: border-box;
  }

  .hero-numbers-label {
    font-size: 12px;
  }

  .hero-numbers-value {
    font-size: 18px;
  }

  .hero-bottom {
    margin-top: 20px;
  }

  .hero-features {
    flex-direction: column;
    background: transparent;
    padding: 0;
  }

  .hero-features-item {
    flex-basis: auto;
    background-color: #A2A1A8;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    gap: 22px;
  }

  .hero-features-image img {
    width: 92px;
    height: 92px;
  }

  .hero-features-content {
    font-size: 18px;
  }

  .section {
    margin-top: 45px;
    margin-bottom: 45px;
  }

  .section.section-alt-image .section-image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .section.section-alt-image .section-button {
    margin-top: 0;
  }

  .section-row {
    display: block;
  }

  .section-title {
    font-size: 25px;
  }
}