* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

button {
  outline: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue Pro";
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

.container {
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .container {
    width: calc(100% - 30px);
  }
}

.main {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-bottom {
  background: url("../images/main-bg.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 32px;
  padding: 55px;
  height: 50vh;
  min-height: 400px;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .main-bottom {
    padding: 20px;
    height: 70vh;
    border-radius: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-bottom {
    padding: 30px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .main-bottom {
    padding: 40px;
  }
}
.main-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .main-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.main-feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}
@media screen and (max-width: 767px) {
  .main-feature-item {
    width: 100%;
    padding: 8px 15px;
    border-radius: 12px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .main-feature-item__icon {
    width: 20px;
    height: 20px;
  }
}
.main-feature-item__descr {
  font-size: 20px;
  color: #2F2F2F;
  line-height: 140%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .main-feature-item__descr {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-feature-item__descr {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .main-feature-item__descr {
    font-size: 18px;
  }
}
.main-content {
  margin-top: 40px;
  margin-bottom: 20px;
}
.main-content-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.25fr 40px 1fr;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 990px) {
  .main-content-block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media screen and (min-width: 991px) and (max-width: 1279px) {
  .main-content-block {
    gap: 20px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .main-content-block {
    gap: 30px;
  }
}
.main-content-right {
  margin-top: 15px;
}
@media screen and (max-width: 1440px) {
  .main-content-right {
    margin-top: 0;
  }
}
.main__title {
  font-size: 90px;
  color: #2F2F2F;
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .main__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main__title {
    font-size: 50px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .main__title {
    font-size: 70px;
  }
}
.main__button {
  width: 100%;
}
.main__descr {
  font-size: 28px;
  font-weight: 300;
  color: #2F2F2F;
  line-height: 140%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .main__descr {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main__descr {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .main__descr {
    font-size: 22px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .main__descr {
    font-size: 24px;
  }
}
.main__descr span {
  font-weight: 600;
}
.main__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 80px;
  border-radius: 12px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0 50px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(254, 76, 132)), color-stop(52%, rgb(255, 75, 130)), to(rgb(254, 76, 132)));
  background: linear-gradient(90deg, rgb(254, 76, 132) 0%, rgb(255, 75, 130) 52%, rgb(254, 76, 132) 100%);
  -webkit-box-shadow: inset 0 4px 20px 0 rgba(255, 255, 255, 0.5);
          box-shadow: inset 0 4px 20px 0 rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .main__button {
    height: 64px;
    padding: 0 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main__button {
    height: 72px;
    padding: 0 40px;
  }
}
.main__button span:first-child {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .main__button span:first-child {
    font-size: 17px;
  }
}
.main__button span:last-child {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .main__button span:last-child {
    font-size: 13px;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  padding-bottom: 20px;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .header {
    gap: 5px;
  }
}
.header-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 990px) {
  .header-rating {
    display: none;
  }
}
.header-rating-line {
  background: #0F1528;
  opacity: 0.2;
  width: 1px;
  height: 34px;
}
.header-rating__descr {
  font-size: 18px;
  font-weight: 300;
  color: #2F2F2F;
}
.header-rating__descr span {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 140px;
  }
}
.header-logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.header-logo-line {
  width: 1px;
  height: 34px;
  background: #0F1528;
  opacity: 0.2;
}
@media screen and (max-width: 990px) {
  .header-logo-line {
    display: none;
  }
}
.header-logo-text {
  max-width: 260px;
  color: #2F2F2F;
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width: 990px) {
  .header-logo-text {
    display: none;
  }
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .header-right {
    gap: 12px;
  }
}
.header-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-phone__link {
  font-size: 24px;
  font-weight: 600;
  color: #2F2F2F;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header-phone__link {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header-phone__link {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .header-phone__link {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .header-phone__link {
    font-size: 22px;
  }
}
.header-phone__link:hover {
  color: #B4D238;
}
.header-phone-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header-phone-text span {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #B4D238;
}
.header-phone-text__descr {
  font-size: 16px;
  font-weight: 300;
  color: #2F2F2F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header-phone-text__descr {
    font-size: 11px;
  }
}
.header-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header-social {
    margin-left: 12px;
  }
}
.header-social a:last-child {
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}