@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
/* ОБНУЛЕНИЕ И БАЗОВЫЕ СТИЛИ */
html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
}
body.lock {
  overflow: hidden;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* СКРОЛЛБАР */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #111a23;
}

::-webkit-scrollbar-thumb {
  background-color: #d1ccc0;
}

/* ОБЩИЕ КЛАССЫ */
.wrap {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

.title {
  color: #000;
  font-size: 48px;
  margin-bottom: 30px;
}

.logo__block {
  display: block;
  max-width: 250px;
}
.logo__img {
  position: relative;
  z-index: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* HEADER */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  padding: 10px 0;
}
.header_block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_burger {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
}
.header_burger span {
  background: #000;
  position: absolute;
  width: 100%;
  height: 2px;
  top: 9px;
  left: 0;
  transition: 0.3s ease;
}
.header_burger::before, .header_burger::after {
  content: "";
  background: #000;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: 0.3s ease;
}
.header_burger::before {
  top: 0;
}
.header_burger::after {
  bottom: 0;
}
@media (max-width: 850px) {
  .header_burger {
    display: block;
    position: relative;
    z-index: 10;
  }
}
.header_burger.active span {
  transform: scale(0);
}
.header_burger.active::before {
  top: 9px;
  transform: rotate(45deg);
}
.header_burger.active::after {
  bottom: 9px;
  transform: rotate(-45deg);
}
.header__language-selector {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__language-item {
  position: relative;
  display: inline-block;
}
.header__language-button {
  background: none;
  border: none;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(17, 26, 35, 0.45);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  color: #000;
  list-style: none;
  padding: 10px 0;
  border-radius: 5px;
}
.header__language-option {
  padding: 10px 20px;
}
.header__language-option:hover {
  background-color: #000000;
}
.header__language-option a {
  color: #000;
  text-decoration: none;
}
.header__language-item:hover .header__language-dropdown {
  display: block;
}

/* NAVIGATION */
.nav {
  transition: 0.5s ease;
}
@media (max-width: 850px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.87);
  }
}
.nav_list {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 850px) {
  .nav_list {
    min-height: 100vh;
    justify-content: center;
    flex-direction: column;
  }
}
.nav_link {
  color: #000;
  font-size: 16px;
  transition: 0.3s ease;
}
.nav_link:hover {
  color: #007bff;
}
@media (max-width: 850px) {
  .nav_link {
    font-size: 18px;
  }
}
.nav_login {
  color: #000;
  font-size: 16px;
  background: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #007bff;
  transition: 0.3s ease;
}
.nav_login:hover {
  background: transparent;
  color: #007bff;
}
@media (max-width: 850px) {
  .nav_login {
    font-size: 18px;
  }
}
.nav.active {
  right: 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("../img/hero.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin-bottom: 100px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 123, 255, 0.5);
}
.hero__content {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 4px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 20px 15px;
  }
}
.hero__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero__description {
  margin: 0 auto 30px auto;
  max-width: 770px;
  font-size: 1.2rem;
}
.hero__button {
  display: inline-block;
  padding: 13px 35px;
  font-size: 1rem;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}
.hero__button:hover {
  background-color: #1f8bff;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__description {
    font-size: 1rem;
  }
  .hero__button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* ABOUT */
.about {
  text-align: center;
  padding-top: 105px;
  margin: -105px 0 100px 0;
}
.about__text {
  font-size: 1rem;
  color: #000;
}

/* SERVICES */
.services {
  padding-top: 105px;
  margin: -105px 0 150px 0;
}
.services__title {
  text-align: center;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 850px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 670px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__item {
  background-color: #f5f5f5;
  min-height: 400px;
  transition: transform 0.2s;
  cursor: pointer;
}
.services__item-iblock {
  margin-bottom: 10px;
  overflow: hidden;
  max-height: 255px;
}
.services__item-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transition: 0.3s ease;
}
.services__item:hover .services__item-img {
  transform: scale(1.1);
}
.services__item-content {
  padding: 10px;
}
.services__item-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
  display: flex;
  gap: 10px;
}
.services__item-text {
  font-size: 1rem;
  color: #000;
}

/* PRODUCTS */
.products {
  padding: 100px 0;
  background-color: #e2e2e2;
}
.products__title {
  text-align: center;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.products__more {
  display: inline-block;
  background-color: #0056b3;
  border: 1px solid #0056b3;
  color: #fff;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.3s ease;
}
.products__more-block {
  text-align: center;
}
.products__more:hover {
  color: #0056b3;
  background-color: transparent;
}

/* PRODUCT CARD */
.product-card {
  background-color: #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card__title {
  color: #000;
  font-size: 22px;
  margin-bottom: 10px;
}
.product-card__description {
  color: #505050;
  font-size: 14px;
  margin-bottom: 15px;
}
.product-card__details {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__price {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.product-card__button {
  display: inline-block;
  text-align: center;
  background-color: #0056b3;
  border: 1px solid #0056b3;
  color: #fff;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.3s ease;
}
.product-card__button:hover {
  color: #0056b3;
  background-color: transparent;
}

/* CERTIFICATES */
.certificates {
  margin: 105px 0;
}
.certificates__title {
  text-align: center;
}
.certificates__content {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .certificates__content {
    flex-direction: column;
    align-items: center;
  }
}
.certificates__link {
  display: inline-block;
  max-width: 400px;
  max-height: 565px;
  overflow: hidden;
}
.certificates__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contacts {
  padding: 100px 0;
  background-color: #e2e2e2;
}
.contacts__title {
  text-align: center;
}
.contacts__wrapper {
  display: flex;
  background-color: #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .contacts__wrapper {
    flex-direction: column;
  }
}
.contacts__info {
  flex: 1 1 50%;
  padding: 20px;
  color: #000;
}
.contacts__info-block {
  margin-bottom: 25px;
}
.contacts__info-block:last-of-type {
  margin-bottom: 0;
}
.contacts__info-heading {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.contacts__info-text {
  color: #505050;
  line-height: 1.6;
}
.contacts__info-text a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contacts__info-text a:hover {
  color: #007bff;
}
.contacts__info-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #007bff;
  transition: color 0.3s ease;
}
.contacts__info-link:hover {
  color: #1f8bff;
}
.contacts__socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  margin-bottom: 30px;
}
.contacts__socials-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.contacts__socials-link:hover {
  background-color: #007bff;
}
.contacts__button {
  display: inline-block;
  background-color: #007bff;
  border: 1px solid #007bff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.contacts__button:hover {
  background-color: transparent;
  color: #007bff;
}
.contacts__map {
  flex: 1 1 50%;
  min-height: 550px;
}
@media (max-width: 992px) {
  .contacts__map {
    min-height: 400px;
  }
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg);
}

/* IPO CARDS */
.ipo-cards {
  padding: 80px 0;
  background-color: rgba(245, 245, 245, 0.02);
}
.ipo-cards__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
}
.ipo-cards__subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #000;
  font-size: 1.1rem;
  line-height: 1.6;
}
.ipo-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .ipo-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .ipo-cards__grid {
    grid-template-columns: 1fr;
  }
}
.ipo-cards__item {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.ipo-cards__item:hover {
  transform: translateY(-5px);
}
.ipo-cards__image {
  position: relative;
  padding-bottom: 40%;
  overflow: hidden;
}
.ipo-cards__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.ipo-cards__image:hover img {
  transform: scale(1.05);
}
.ipo-cards__content {
  padding: 25px;
}
.ipo-cards__content h3 {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.ipo-cards__content p {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* IPO CARDS */
.ipo-cards {
  padding: 80px 0;
  background-color: rgba(245, 245, 245, 0.02);
}
.ipo-cards__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
}
.ipo-cards__subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #000;
  font-size: 1.1rem;
  line-height: 1.6;
}
.ipo-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .ipo-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ipo-cards__grid {
    grid-template-columns: 1fr;
  }
}
.ipo-cards__item {
  padding: 25px;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.ipo-cards__item:hover {
  transform: translateY(-5px);
}
.ipo-cards__icon {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
  background: rgba(245, 245, 245, 0.02);
  color: #007bff;
  transition: all 0.3s ease;
}
.ipo-cards__icon i {
  transition: transform 0.3s ease;
}
.ipo-cards__icon:hover i {
  transform: scale(1.1);
}
.ipo-cards__content {
  padding: 0;
}
.ipo-cards__content h3 {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.ipo-cards__content p {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* FOOTER */
.footer {
  background: url("https://images.unsplash.com/photo-1593715776487-edee9d123f24?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center/cover;
  color: #000;
  padding: 50px 0 10px 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
}
.footer_content {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 50px;
}
.footer_logo-block {
  margin-bottom: 20px;
}
.footer_contacts h3, .footer_social h3 {
  margin-bottom: 20px;
}
.footer_contacts-list, .footer_social-list {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
.footer_social-item a {
  color: #000;
}
.footer_desc {
  font-size: 16px;
  color: #000;
  max-width: 350px;
}
.footer_copyright {
  position: relative;
  text-align: center;
}

/* SIGNUP FORM */
.signUp {
  padding: 100px 0 50px 0;
  background-color: #f5f5f5;
}
.signUp__title {
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}
.signUp__form {
  max-width: 800px;
  margin: 0 auto;
}
.signUp__content {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 50px;
  background-color: #e2e2e2;
  border-radius: 8px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .signUp__content {
    padding: 20px 20px;
  }
}
.signUp__formGroup {
  margin-bottom: 15px;
}
.signUp__label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #000;
}
.signUp__input, .signUp__select {
  width: 100%;
  padding: 10px;
  border: 1px solid #6c757d;
  border-radius: 4px;
  font-size: 16px;
  color: #000;
}
.signUp__input:focus, .signUp__select:focus {
  outline: none;
  border-color: #007bff;
}
.signUp__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 12 12'%3E%3Cpath d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
.signUp__step {
  max-width: 800px;
  margin: 0 auto;
}
.signUp__stepTitle {
  margin-bottom: 20px;
  font-size: 18px;
  color: #000;
}
.signUp__navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.signUp__nextButton, .signUp__prevButton, .signUp__button {
  border-radius: 5px;
  padding: 10px 30px;
  background-color: #007bff;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.signUp__nextButton:hover, .signUp__prevButton:hover, .signUp__button:hover {
  background-color: #0056b3;
}
.signUp__nextButton {
  display: block;
  margin-left: auto;
}
.signUp__prevButton {
  background-color: #6c757d;
}
.signUp__prevButton:hover {
  background-color: #5a6268;
}
.signUp__agreement {
  margin-bottom: 20px;
}
.signUp__checkboxGroup {
  display: flex;
  align-items: center;
}
.signUp__checkbox {
  margin-right: 10px;
}
.signUp__checkboxLabel {
  font-size: 14px;
}
.signUp__pdfLink {
  background: none;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
  margin-left: 5px;
}
.signUp__pdfLink:hover {
  color: #0056b3;
}
.signUp__pdfOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.signUp__pdfContainer {
  background-color: #000;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  height: 80%;
  position: relative;
}
.signUp__pdfClose {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
.signUp__pdfFrame {
  width: 100%;
  height: calc(100% - 40px);
  border: none;
}
.signUp__error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* IPO СТРАНИЦА */
.ipo-hero {
  background: linear-gradient(rgba(0, 123, 255, 0.7)), url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 200px 0;
  text-align: center;
  color: #000;
}
.ipo-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.ipo-hero__subtitle {
  font-size: 24px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

.ipo-info {
  padding: 60px 0;
  background-color: #f5f5f5;
  color: #000;
}
.ipo-info__content h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.ipo-info__content h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  font-family: "Montserrat", sans-serif;
}
.ipo-info__content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}
.ipo-info__content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.ipo-info__content ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-family: "Open Sans", sans-serif;
}
.ipo-info__content ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
}
.ipo-info__lists {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.ipo-info__list {
  width: 100%;
  background: #dcdcdc;
  border-radius: 5px;
  overflow: hidden;
  padding: 0;
}
.ipo-info__list-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: start;
}
.ipo-info__list-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #000;
}
.ipo-info__list-header:hover {
  background-color: rgba(245, 245, 245, 0.05);
}
.ipo-info__list-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.ipo-info__list-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}
.ipo-info__list-content ul {
  padding: 0 0 20px 20px;
}
.ipo-info__list.active .ipo-info__list-icon {
  transform: rotate(45deg);
}
.ipo-info__list.active .ipo-info__list-content {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}
.ipo-info__cta {
  text-align: center;
}
.ipo-info__cta .ipo-info__start {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: color;
}
.ipo-info__cta .button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.ipo-info__cta .button:hover {
  background-color: #1f8bff;
}
.ipo-info__calculator {
  max-width: 1000px;
  margin: 80px auto 0 auto;
}
.ipo-info__calculator h3 {
  text-align: center;
  margin-bottom: 25px;
}
.ipo-info .calculator .calculate__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.ipo-info .calculator__input {
  margin-bottom: 20px;
}
.ipo-info .calculator__input label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #555;
}
.ipo-info .calculator__input input,
.ipo-info .calculator__input select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  color: #333;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ipo-info .calculator__input input:focus,
.ipo-info .calculator__input select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}
.ipo-info .calculator .checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.ipo-info .calculator .checkbox-group input {
  width: 18px;
  height: 18px;
}
.ipo-info .calculator .calculate-button {
  width: 100%;
  padding: 14px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}
.ipo-info .calculator .calculate-button:hover {
  background: #0056b3;
}
.ipo-info .calculator__result {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.ipo-info .calculator__result .result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}
.ipo-info .calculator__result .result-row:last-child {
  border-bottom: none;
}
.ipo-info .calculator__result .result-label {
  font-weight: 500;
}
.ipo-info .calculator__result .result-value {
  font-weight: bold;
  color: #007bff;
  font-size: 18px;
}
.ipo-info .calculator__result .result-value.highlight {
  color: #28a745;
  font-size: 22px;
}
.ipo-info .calculator__result .table-wrapper {
  margin-top: 30px;
  overflow-x: auto;
}
.ipo-info .calculator__result .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.ipo-info .calculator__result .table-wrapper th,
.ipo-info .calculator__result .table-wrapper td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.ipo-info .calculator__result .table-wrapper thead {
  background-color: #f2f2f2;
  font-weight: 600;
}
.ipo-info .calculator__result .table-wrapper .number {
  text-align: right;
}/*# sourceMappingURL=style.css.map */