@font-face {
  font-family: "Montserrat";
  src: url("/h25a7501f-media/h25a7501f-fonts/h25a7501f-montserrat_extrabold.woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/h25a7501f-media/h25a7501f-fonts/h25a7501f-montserrat_bold.woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/h25a7501f-media/h25a7501f-fonts/h25a7501f-roboto_regular.woff2");
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/h25a7501f-media/h25a7501f-fonts/h25a7501f-opensans_extrabold.woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/h25a7501f-media/h25a7501f-fonts/h25a7501f-opensans_regular.woff2");
  font-weight: 400;
  font-display: swap;
}

/* ===== Переменные ===== */
:root {
  --container-width: 1236px;
  --container-step: 24px;
  --container-step-tablet: 26px;
  --container-step-mobile: 24px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
	--black-text: #181818;
	--bg: #efefef;
	--white: #fff;
	--text-gray: #bdbdbd;
	--color-card: #151459;
	--button: #eb3737;
	--stoke: #e7e7e7;

  --font-family: "Open Sans", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Roboto", sans-serif;
}

/* ===== Базовые ===== */
body {
  margin: 0;
  background: var(--bg);
}

.h25a7501f-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .h25a7501f-container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .h25a7501f-container {
    padding: 0 var(--container-step-mobile);
  }
}

h1 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 46px;
  line-height: 96%;
  color: var(--white);
  margin: 0px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 43px;
    line-height: 104.5%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 40px;
    line-height: 113%;
    text-align: center;
  }
}

h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  color: var(--black-text);
  margin: 0px;
}

h3 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  color: var(--black-text);
  margin: 0px;
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--black-text);
  margin: 0px;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: unset;
}

img{
  max-width: 100%;
  min-width: 0px;
}

section {
  margin-bottom: 70px;
}

.h25a7501f-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}





.h25a7501f-header{
  padding: 24px 0px;
  background: #171717;
  border-bottom: 1px solid #171717;
}

.h25a7501f-header__container{
  flex-direction: row;
  justify-content: space-between;
}

.h25a7501f-header__nav-list{
  flex-direction: row;
  align-items: center;
  gap: 40px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}



.h25a7501f-hero{
  padding: 103px 0px;
  background: url("/h25a7501f-media/h25a7501f-images/h25a7501f-hero_bg.png");
  background-position: center;
  background-size: cover;
}

.h25a7501f-hero__content{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 11px;
  max-width: 592px;
  width: 100%;
}

.h25a7501f-hero__title{
  color: var(--white);
}

.h25a7501f-hero__description{
  color: var(--white);
}

.h25a7501f-hero__features{
  flex-direction: row;
  align-items: center;
  gap: 8px;
  max-width: 406px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.h25a7501f-hero__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 14px;
  line-height: 114%;
  color: var(--white);
  border: 1px solid #dfd4a5;
  border-radius: 33px;
  background: linear-gradient(143deg, #ff4e4e 0%, #ed723e 79.69%);
  justify-content: center;
  height: 30px;
  width: 100%;
  max-width: 130px;
      box-sizing: border-box;
}






.h25a7501f-offers__list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.h25a7501f-offers__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 45px 0 rgba(190, 190, 190, 0.79);
  background: var(--white);
  border: 1px solid var(--stoke);
  border-radius: 33px;
  padding: 35px 16px 16px;
  position: relative;
}

.h25a7501f-offers__item__header{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


.h25a7501f-offers__rating {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 125%;
  text-align: center;
  color: var(--black-text);
}

.h25a7501f-offers__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  height: 100%;
}

.h25a7501f-offers__description {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  color: var(--black-text);
  display: block;
}

.h25a7501f-offers__features {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--black-text);
  padding-left: 20px;
  list-style: disc;
}

.h25a7501f-offers__btn {
  width: 100%;
  border-radius: 36px;
  background: var(--button);
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  color: var(--white);
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h25a7501f-offers__item__top{
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 207px;
    width: 100%;
    height: 32px;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 14px;
    line-height: 114%;
    color: var(--white);
    border: 1px solid #dfd4a5;
    border-radius: 33px;
    background: linear-gradient(143deg, #ff4e4e 0%, #ed723e 79.69%);
    position: absolute;
    top: 0px;
    transform: translateY(-50%);
}





.h25a7501f-advantages__list{
    flex-direction: row;
    gap: 24px;
}

.h25a7501f-advantages__item {
    flex: 1;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    border: 1px solid var(--stoke);
    border-radius: 33px;
    box-shadow: 0 0 45px 0 rgba(190, 190, 190, 0.79);
    background: var(--white);
    justify-content: start;
}

.h25a7501f-advantages__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}















.h25a7501f-faq__list{
  gap: 8px;
}

.h25a7501f-faq__item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: 1px solid var(--stoke);
    border-radius: 20px;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: 0 0 45px 0 rgba(190, 190, 190, 0.79);
    background: var(--white);
    align-items: center;
    position: relative;
}

.h25a7501f-faq__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.h25a7501f-faq__toggle {
    padding: 0px;
    border: 0px;
    background: none;
}

.h25a7501f-faq__toggle::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.h25a7501f-faq__icon {
    min-width: 24px;
    min-height: 24px;
}

.h25a7501f-faq__icon{
  transform: rotate(180deg);
}

.h25a7501f-active .h25a7501f-faq__icon{
  transform: rotate(0deg);
}







.h25a7501f-footer{
  padding: 24px 0px;
  background: #171717;
}

.h25a7501f-footer__content{
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 16px;
}

.h25a7501f-footer__logo{
  height: 31px;
}

.h25a7501f-footer__contact-list{
  gap: 10px;
}

.h25a7501f-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: var(--white);
  max-width: 447px;
  width: 100%;
}

.h25a7501f-footer__icon{
    min-width: 24px;
    min-height: 24px;
}

.h25a7501f-footer__links{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.h25a7501f-footer__heading{
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 125%;
  color: var(--white);
}

.h25a7501f-footer__nav-list{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  gap: 16px;
}

.h25a7501f-footer__copyright{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #e4e4e4;
}


@media screen and (max-width: 990px) {
  .h25a7501f-advantages__list{
    flex-direction: column;
  }

  .h25a7501f-offers__list{
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .h25a7501f-header__nav{
    display: none;
  }

  .h25a7501f-hero{
    padding: 16px 0px;
    margin-bottom: 12px;
    background: url("/h25a7501f-media/h25a7501f-images/h25a7501f-hero_bg-mobile.png");
    background-size: cover;
    background-position: center;
  }

  .h25a7501f-hero__features{
    margin: auto;
  }

  .h25a7501f-hero__description{
    display: none;
  }

  .h25a7501f-offers__list{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .h25a7501f-offers__item__header{
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .h25a7501f-offers__features{
    display: none;
  }

  .h25a7501f-offers__container h2{
    font-size: 16px;
  }
}

.h25a7501f-policy_section{
  margin: 70px 0px;
}

.h25a7501f-policy_section h1{
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 40px;
  line-height: 113%;
  color: var(--black-text);
}

.h25a7501f-policy_container{
  gap: 24px;
}

.h25a7501f-policy_block{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.h25a7501f-policy_block ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--black-text);
  padding-left: 20px;
  list-style: disc;
}

/* ===== Burger ===== */
.h25a7501f-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0px;
}

.h25a7501f-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #EB3737;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Animation to cross ===== */
.h25a7501f-header__burger.h25a7501f-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.h25a7501f-header__burger.h25a7501f-active span:nth-child(2) {
  opacity: 0;
}

.h25a7501f-header__burger.h25a7501f-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile nav ===== */
@media screen and (max-width: 644px) {
  .h25a7501f-header__burger {
    display: flex;
  }

  .h25a7501f-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #171717;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .h25a7501f-header__nav.h25a7501f-active {
    right: 0;
  }

  .h25a7501f-header__nav-list {
    flex-direction: column;
    gap: 30px;
    font-size: 20px;
  }
}