html{
  scroll-behavior: smooth;
}
.hero {
  padding: 32px 0;
}

.hero__container {
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__label {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 125% */
  text-transform: uppercase;
}

.hero__title {
  color: #000;
  font-family: "Times New Roman";
  font-size: clamp(28px, 6vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero__row {}

.hero__img {
  width: fit-content;
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__info {
  color: #797676;
  font-family: "Times New Roman";
  font-size: 11.625px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  /* 103.226% */
}

.hero__text {
  color: #202020;
  font-family: "Times New Roman";
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 142.105% */
}

.hero__btn {
  border-radius: 12px;
  background: #EDEDED;
  border: none;
  padding: 14px;
  width: fit-content;
  margin: 0 auto;
}

.hero__btn span {
  display: inline-block;
  color: #FFF;
  font-family: "Times New Roman";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 120% */
  text-transform: uppercase;
  border-radius: 8px;
  background: #005499;
  padding: 16px 108px;
}

@keyframes breathing {
  0%, 100% {
    box-shadow: 0 0 20px rgba(15, 99, 161, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(15, 99, 161, 0.7);
  }
}

@keyframes pulsing-border {
  0%, 100% {
    border: 2px solid rgba(15, 99, 161, 0.3);
    box-shadow: 
      0 0 0 0px rgba(15, 99, 161, 0.4),
      0 0 0 0px rgba(15, 99, 161, 0.2);
  }
  50% {
    border: 2px solid rgba(15, 99, 161, 0.6);
    box-shadow: 
      0 0 0 10px rgba(15, 99, 161, 0.2),
      0 0 0 20px rgba(15, 99, 161, 0.1);
  }
}

.link-btn {
  display: block;
  width: 100%;
  max-width: 450px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color:#fff!important;
  margin: 20px auto;
  padding: 14px 10px;
  font-size: 24px;
  background-color: #0f63a1;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(15, 99, 161, 0.3);
  animation: breathing 3s ease-in-out infinite, pulsing-border 2s ease-in-out infinite;
}


.hero__subtitle {
  color: #000;
  font-family: "Times New Roman";
  font-size: 16.625px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 144.361% */
  text-transform: uppercase;
}

.hero__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}

.hero__list li p {
  color: #383F4E;
  font-family: "Source Sans 3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
}

.hero__text_italic {
  color: #202020;
  font-family: "Times New Roman";
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  line-height: 27px;
  /* 142.105% */
  border-left: 4px solid #0072F0;
  padding-left: 16px;
}

.form {
  border-radius: 24px;
  border: 1px solid #CECECE;
  background: #FFF;
  box-shadow: 0px 0px 18.3px 0px rgba(18, 26, 43, 0.20);
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
}

.form__title {
  color: #FFF;
  font-family: "Times New Roman";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 85.714% */
  text-transform: uppercase;
  border-radius: 24px 24px 0px 0px;
  background: #141534;
  padding: 32px;
  text-align: center;
  line-height: 1.3;
}

.form__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 32px;
}

@media (max-width: 992px) {
  .form__column {
    padding: 0 16px;
  }
}

.form__inp {
  border-radius: 2px;
  border: 1px solid #636363;
  background: #FFF;
  box-shadow: 0px 0px 6px 0px rgba(18, 26, 43, 0.20);
  color: #797676;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 16.8px */
  width: 100%;
  padding: 10px 12px;
}

.form__btn {
  border-radius: 6px;
  background: #141534;
  margin-top: 8px;
  color: #FFF;
  font-family: "Times New Roman";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 150% */
  text-transform: uppercase;
  padding: 12px 0;

}

.comment {
  margin-bottom: 32px;
}

.hero__container {}

.comment__content {}

.comment__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width:576px) {
  .comment__column {
    /* display: none; */
  }
}

.comment__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comment__row.justify-center {
  justify-content: center;
  gap: 40px;
}
@media (max-width:576px) {
  .comment__row.justify-center {
  gap: 16px;
  }
}

.comment__title {
  color: #000;
  font-family: "Times New Roman";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 109.091% */
  text-transform: uppercase;
}
@media (max-width:576px) {
  .comment__title {
  font-size: 16px;
  }
}


.comment__line {
  background: #E7E9ED;
  height: 4px;
  width: 100%;
}

.comment__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment__column-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.comment__title-italic {
  color: #000;
  font-family: "Times New Roman";
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  line-height: 24px;
  /* 109.091% */
  text-transform: uppercase;
}
@media (max-width:576px) {
  .comment__title-italic {
  font-size: 16px;
  }
}

.comment__subtitle {
  color: #000;
  font-family: "Times New Roman";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.comment__block {
  margin-top: 40px;
}

.comment__inp {
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 0px 3px 0px #003978;
  border: none;
  padding: 16px;
  width: 100%;
  resize: none;
  height: 180px;
}

.comment__block-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.comment__block-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment__block-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment__inp_inp {
  height: 52px;
  padding: 12px 16px;
}

.comment__card {
  display: flex;
  gap: 16px;
}

.comment__img {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 350px) {
  .comment__img {
    width: 32px;
    height: 32px;
  }
}

.comment__subcolumn {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.comment__subitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment__name {
  color: #003978;
font-family: "Source Sans 3";
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 16px; /* 100% */
}

.comment__text a{
  color: #0072F0;
font-family: "Source Sans 3";
font-size: 18px;
font-weight: 700;
line-height: 28px;
text-decoration-line: underline;

}

.comment__text {
  color: #383F4E;
font-family: "Source Sans 3";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
}

.comment__row-sub {
  display: flex;
  align-items: center;
  gap: 4px;
}

.comment__like {
  color: #003978;
font-family: "Source Sans 3";
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 16px; /* 114.286% */
}

.popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 99999;
  background: #0000003f;
  width: 100%;
  max-width: 600px;
  /* display: none; */
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.popup__content {
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
background: #FFF;
display: flex;
flex-direction: column;
align-items: center;
gap: 24px;
padding: 40px 20px;
position: relative;

}
.popup__close {
  position: absolute;
  top: 40px;
  right: 34px;
  background: none;
  border: none;
}

@media(max-width:767px){
  .popup__close {
    top: 24px;
    right: 20px;
  }
}
.popup__title {
  color: #000;
text-align: center;
font-family: "Times New Roman";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
max-width: 440px;
}

@media(max-width:767px){
  .popup__title{
    color: #000;
text-align: center;
font-family: "Times New Roman";
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: normal;
max-width: 350px;
  }
}
.popup__price {
  color: #7EC272;
text-align: center;
font-family: "Times New Roman";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.popup__link {
  color: #000;
text-align: center;
font-family: "Times New Roman";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
max-width: 440px;
width: 100%;
display: inline-block;
border-radius: 2px;
border: 3px solid #000;
padding: 16px 0;
}

.form button {
  transition: all .2s linear;
}

@media (hover: hover) {
  .form button:hover  {
    scale: 1.03;
  }
}

@media (hover: none) {
  .form button:active  {
    scale: 1.03;
  }
}
