/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss (1) ***!
  \*****************************************************************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: #f6f8fa;
}
@media (max-width: 1024px) {
  body {
    background: #ffffff;
  }
}

section {
  padding: 100px 0;
}

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

a {
  text-decoration: none;
}

a,
a:active {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  transition: 0.3s;
}

p {
  margin: 0;
}

svg path,
svg circle,
svg line,
svg polyline {
  transition: 0.3s;
}

img {
  max-width: 100%;
}

.container {
  width: 1280px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1360px) {
  .container {
    width: 980px;
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}

.hidden {
  overflow: hidden !important;
}

hr {
  height: 1px;
  border: 0;
  border-bottom: 1px solid #000000;
  margin: 0;
  width: 100%;
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: normal;
  color: #000000;
  font-weight: 500;
  font-size: 13px;
  line-height: 94%;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  gap: 10px;
}

.main {
  overflow: hidden;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox__checkmark {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 4px;
  transition: 0.3s;
  flex-shrink: 0;
}

.checkbox__checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: 0.3s;
  left: 7px;
  top: 4px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox input:checked ~ .checkbox__checkmark {
  background-color: #000000;
}

.checkbox input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .breadcrumbs {
    gap: 8px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  background: #2a4579;
  padding: 4px 10px;
  transition: all 0.2s ease-out;
}
.btn:hover {
  opacity: 0.9;
}

.footer {
  margin-top: auto;
}

.sidebar {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 30px 10px 0;
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
}

.sidebar__logo {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
  width: 164px;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  width: 100%;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 5px;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
  border-top: 1px solid #e1e1e1;
}
.sidebar__link:first-child {
  border-top: none;
}
.sidebar__link .icon {
  color: #b4b4b4;
}
.sidebar__link:hover, .sidebar__link--active {
  color: #2a4579;
}
.sidebar__link:hover .icon, .sidebar__link--active .icon {
  color: #2a4579;
}

.sidebar__link-text {
  flex: 1;
}

.sidebar__footer {
  margin-top: auto;
  display: flex;
  position: fixed;
  top: calc(100dvh - 40px);
  left: 0;
  left: 20px;
}

.sidebar__auth {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #000000;
  transition: all 0.3s ease;
}
.sidebar__auth .icon {
  color: #b4b4b4;
}
.sidebar__auth:hover {
  color: #2a4579;
}
.sidebar__auth:hover .icon {
  color: #2a4579;
}

.sidebar-mobile {
  display: none;
  width: 100%;
  position: relative;
  z-index: 20;
}
@media (max-width: 1024px) {
  .sidebar-mobile {
    display: block;
  }
}

.sidebar-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sidebar-mobile__header {
    margin-bottom: 20px;
  }
}

.sidebar-mobile__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .sidebar-mobile__logo {
    display: none;
  }
}
.sidebar-mobile__logo img {
  width: 130px;
  height: auto;
}

.sidebar-mobile__dropdown-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.sidebar-mobile__dropdown {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 30px;
  border-radius: 99px;
  background: #f6f8fa;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}
.sidebar-mobile__dropdown:hover {
  background: #e6ebf1;
}

.sidebar-mobile__dropdown.is-open .sidebar-mobile__dropdown-arrow .icon {
  transform: rotate(180deg);
}

.sidebar-mobile__dropdown-current {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.sidebar-mobile__dropdown-current .icon {
  color: #2a4579;
}

.sidebar-mobile__dropdown-text {
  font-weight: 700;
  font-size: 16px;
  color: #2a4579;
  font-family: "Roboto", sans-serif;
}

.sidebar-mobile__dropdown-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-mobile__dropdown-arrow .icon {
  color: #000000;
  transition: transform 0.3s ease;
}

.sidebar-mobile__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #f6f8fa;
  border-radius: 30px;
  padding: 8px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.sidebar-mobile__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sidebar-mobile__menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
}
.sidebar-mobile__menu-item .icon {
  color: #b4b4b4;
  flex-shrink: 0;
}
.sidebar-mobile__menu-item span {
  flex: 1;
}
.sidebar-mobile__menu-item:hover {
  background: rgba(42, 69, 121, 0.1);
}

.sidebar-mobile__menu-item--active {
  color: #2a4579;
  font-weight: 700;
}
.sidebar-mobile__menu-item--active .icon {
  color: #2a4579;
}

.support-link {
  position: fixed;
  bottom: 70px;
  right: 70px;
  z-index: 1000;
  width: 80px;
  height: 80px;
  transition: all 0.2s ease-out;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
}
@media (max-width: 1024px) {
  .support-link {
    bottom: 20px;
    right: 20px;
  }
}
.support-link:hover {
  transform: translateY(-5px);
}

.textarea-wrapper {
  width: 100%;
  max-width: 1024px;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .textarea-wrapper {
    margin-bottom: 90px;
  }
}

.textarea {
  position: relative;
  height: 183px;
  width: 100%;
  margin-bottom: 20px;
}
.textarea::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 15px;
  right: 15px;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 30%);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
  z-index: 5;
}

.textarea__field {
  width: 100%;
  height: 100%;
  border: 1px solid #b4b4b4;
  border-radius: 20px;
  padding: 20px 20px 60px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.2s ease-out;
  background: #ffffff;
  resize: none;
}
.textarea__field::placeholder {
  color: #666666;
}
.textarea__field:focus {
  border-color: #2a4579;
}

.textarea__actions {
  z-index: 10;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.textarea__link {
  width: 34px;
  height: 34px;
  background: #ffffff;
  color: #2a4579;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a4579;
  transition: all 0.2s ease-out;
}
.textarea__link:hover {
  background: #2a4579;
  color: #ffffff;
}

.textarea__send {
  margin-left: auto;
  width: 34px;
  height: 34px;
  background: #2a4579;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.textarea__send:hover {
  opacity: 0.8;
}

.textarea-links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.textarea-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #2a4579;
  padding: 8px 20px;
  border: 1px solid #2a4579;
  font-weight: 400;
  font-size: 14px;
  border-radius: 99px;
  justify-content: center;
}
@media (max-width: 767px) {
  .textarea-link {
    flex-grow: 1;
    font-size: 16px;
  }
}
.textarea-link:hover {
  background: #2a4579;
  color: #ffffff;
}

.message {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .message {
    margin-bottom: 20px;
  }
}

.message__input {
  margin-bottom: 20px;
  display: flex;
}

.message__input-field {
  width: 100%;
  height: 40px;
  max-width: 320px;
  border: 1px solid #f8f8f8;
  background: #f8f8f8;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  color: #000000;
  margin-left: auto;
}
@media (max-width: 767px) {
  .message__input-field {
    max-width: 100%;
  }
}

.message__text {
  font-size: 14px;
  line-height: 130%;
  color: #000000;
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 20px 40px 20px 20px;
  background: #ffffff;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .message__text {
    padding: 0;
    box-shadow: none;
    line-height: 140%;
  }
}

.message__text-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .message__text-close {
    display: none;
  }
}

.message__actions {
  display: flex;
  gap: 10px;
}

.message__action {
  padding: 10px 20px;
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  color: #000000;
  gap: 10px;
  font-size: 14px;
}
.message__action .icon {
  color: #2a4579;
}
.message__action:hover {
  color: #2a4579;
  box-shadow: 0 0 27px 0 rgba(42, 69, 121, 0.1);
}

.history {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.history__title {
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 767px) {
  .history__title {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

.history__item {
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  justify-content: space-between;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 767px) {
  .history__item {
    font-size: 14px;
    padding: 15px 0;
  }
}
.history__item:hover {
  color: #2a4579;
}
.history__item .icon {
  color: #666666;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .history__item .icon {
    width: 10px;
    height: 10px;
  }
}
.history__item .icon:hover {
  color: #000000;
}

.history__item-preview {
  max-width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comparisson-table-wrapper {
  width: 100%;
  max-width: 1024px;
  overflow-x: auto;
  margin-bottom: 40px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 15px 0 0;
}
.comparisson-table-wrapper::-webkit-scrollbar {
  height: 12px;
}
.comparisson-table-wrapper::-webkit-scrollbar-track {
  background: #f6f8fa;
  border-radius: 6px;
}
.comparisson-table-wrapper::-webkit-scrollbar-thumb {
  background: #2a4579;
  border-radius: 6px;
}
.comparisson-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #1d2f53;
}

.comparisson-table {
  width: 1022px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.comparisson-table__header {
  display: flex;
  padding: 0 15px;
}

.comparisson-table__header-item {
  padding: 0 20px 16px;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  text-align: left;
  flex: 1;
}
.comparisson-table__header-item:first-child {
  flex: 2;
  padding-left: 0;
  padding-right: 40px;
}
.comparisson-table__header-item:nth-child(3) {
  flex: 1.5;
}
.comparisson-table__header-item:nth-child(5) {
  flex: 1.5;
}

.comparisson-table__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 15px 15px;
}

.comparisson-table__row {
  display: flex;
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.05);
}

.comparisson-table__cell {
  padding: 16px 20px;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  display: flex;
  align-items: center;
  flex: 1;
}
.comparisson-table__cell:first-child {
  flex: 2;
}
.comparisson-table__cell:nth-child(3) {
  flex: 1.5;
}
.comparisson-table__cell:nth-child(5) {
  flex: 1.5;
}

.comparisson-table__radio {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparisson-table__radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #2a4579;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease-out;
}
.comparisson-table__radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #2a4579;
  border-radius: 50%;
}

.comparisson-table__product-name {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.comparisson-table__rating {
  display: flex;
  gap: 1px;
  align-items: center;
}

.comparisson-table__rating-item {
  display: flex;
  color: #d0d0d0;
  transition: all 0.2s ease-out;
}
.comparisson-table__rating-item.active {
  color: #ffb52b;
}

.page-wrapper {
  display: flex;
  min-height: calc(100vh - 40px);
  padding: 20px;
}
@media (max-width: 1024px) {
  .page-wrapper {
    flex-direction: column;
    padding: 20px 15px;
  }
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: calc(100vh - 40px);
  background: #ffffff;
  border: 1px solid #dce8f4;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .main-content {
    min-height: calc(100vh - 72px);
    background: transparent;
    border: none;
    padding: 0;
    justify-content: flex-start;
    min-height: auto;
  }
}

.main-content__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  justify-content: center;
  gap: 20px;
}

.main-content__title {
  font-weight: 700;
  font-size: 40px;
  color: #000000;
  font-family: "Roboto", sans-serif;
  text-align: center;
  margin: 0;
}
@media (max-width: 1024px) {
  .main-content__title {
    font-size: 24px;
  }
}

.main-content__description {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #393939;
}

.catalog {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  max-width: 1024px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .catalog {
    margin-bottom: 20px;
  }
}

.product {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(20% - 13px);
  padding: 10px;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .product {
    width: calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}
.product:hover {
  border-color: #2a4579;
}
.product:hover .product__description {
  color: #2a4579;
}

.comparisson__btn {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 8px;
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.05);
  gap: 10px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-out;
  color: #000000;
  background: #ffffff;
  font-size: 12px;
  border-radius: 10px;
}
.comparisson__btn:hover {
  color: #2a4579;
}
.comparisson__btn .icon {
  color: #2a4579;
  flex-shrink: 0;
}
.comparisson__btn.active {
  background: #2a4579;
  color: #ffffff;
}
.comparisson__btn.active .icon {
  color: #ffffff;
}

.product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin-bottom: 7px;
}
.product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product__name {
  font-weight: 400;
  font-size: 16px;
  color: #757575;
  opacity: 0.9;
  margin-bottom: 8px;
}

.product__description {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-bottom: 12px;
  transition: all 0.2s ease-out;
}
@media (max-width: 1023px) {
  .product__description {
    font-size: 14px;
  }
}

.product__rating {
  display: flex;
  gap: 1px;
  margin-bottom: 12px;
}

.product__rating-item {
  display: flex;
  color: #d0d0d0;
  transition: all 0.2s ease-out;
}
.product__rating-item.active {
  color: #ffb52b;
}

.product__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .product__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .product__actions .btn {
    width: 100%;
  }
}

.product__price {
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

.recommendations {
  display: flex;
  flex-direction: column;
  max-width: 1024px;
  width: 100%;
}
.recommendations ul,
.recommendations p,
.recommendations ol {
  font-weight: 400;
  font-size: 15px;
  line-height: 173%;
  color: #393939;
  list-style-type: disc;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .recommendations ul,
  .recommendations p,
  .recommendations ol {
    font-size: 13px;
    line-height: 180%;
  }
}

.recommendations__title {
  font-weight: 700;
  font-size: 24px;
  color: #393939;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .recommendations__title {
    font-size: 20px;
  }
}

.feedback-inner {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: auto;
  padding: 20px 0;
}

.back-link {
  color: #000000;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  gap: 10px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .back-link {
    margin-bottom: 20px;
  }
}

.catalog-row {
  display: grid;
  gap: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .catalog-row {
    margin-top: 20px;
    gap: 15px;
  }
}

.d-grid {
  display: grid;
}

@media (min-width: 1025px) {
  .lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .sm-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .xs-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catalog-row a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  background: #2a4579;
  aspect-ratio: 1/1;
}
.catalog-row a:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 27px 0 rgba(42, 69, 121, 0.1);
}

.catalog-row picture {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-responsive {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.retina-img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.banner-title {
  padding: 10px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 767px) {
  .banner-title {
    font-size: 16px;
    padding: 12px 8px;
  }
}

.akrobat {
  font-family: "Roboto", sans-serif;
}

.p22 {
  font-size: 22px;
}
@media (max-width: 767px) {
  .p22 {
    font-size: 16px;
  }
}

.bold {
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.country-grid {
  display: grid;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .country-grid {
    gap: 15px;
    margin-top: 20px;
  }
}

.radius-medium {
  border-radius: 10px;
}

.overflow {
  overflow: hidden;
}

.animation {
  transition: all 0.3s ease;
}

.country-grid a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.country-grid a:hover {
  border-color: #2a4579;
  box-shadow: 0 0 27px 0 rgba(42, 69, 121, 0.1);
  transform: translateY(-5px);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  min-height: 200px;
  justify-content: center;
  gap: 15px;
  background: #2a4579;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .content {
    padding: 15px 10px;
    min-height: 180px;
    gap: 10px;
  }
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.d-block {
  display: block;
}

.p18 {
  font-size: 18px;
}
@media (max-width: 767px) {
  .p18 {
    font-size: 16px;
  }
}

.semiBold {
  font-weight: 600;
}

.country-grid .banner-title {
  padding: 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 767px) {
  .country-grid .banner-title {
    font-size: 16px;
  }
}

.stickers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  width: 100%;
}

.opt {
  font-size: 12px;
  color: #757575;
  font-weight: 400;
  line-height: 1.2;
  background: #ffd705;
  padding: 5px 10px;
  border-radius: 5px;
  color: #21467d;
}

.min_summ {
  font-size: 14px;
  color: #f5f8fa;
  font-weight: 600;
  line-height: 1.2;
}

.examples {
  width: 100%;
  max-width: 1024px;
}

.examples__title {
  font-weight: 700;
  font-size: 24px;
  color: #393939;
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .examples__title {
    font-size: 20px;
  }
}

.help-example-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .help-example-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }
}

.help-example-card__icon {
  flex-shrink: 0;
  color: #2a4579;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .help-example-card__icon {
    margin-top: 0;
  }
}

.help-example-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  max-width: 380px;
  margin-left: auto;
}

.help-example-card__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.help-example-card__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 173%;
  color: #393939;
  margin: 0;
  font-family: "Roboto", sans-serif;
  max-width: 379px;
}
@media (max-width: 767px) {
  .help-example-card__description {
    max-width: 100%;
  }
}

.examplses-faq {
  width: 100%;
  max-width: 1024px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .examplses-faq {
    margin-top: 20px;
  }
}

.help-faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
}
@media (max-width: 767px) {
  .help-faq-grid {
    flex-direction: column;
    gap: 40px;
  }
}

.help-faq-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 30px);
}
@media (max-width: 767px) {
  .help-faq-item {
    width: 100%;
    max-width: 100%;
  }
}

.help-faq-item__number {
  font-weight: 400;
  font-size: 64px;
  color: #dce8f4;
  font-family: "Roboto", sans-serif;
  margin: 0;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .help-faq-item__number {
    font-size: 60px;
  }
}

.help-faq-item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  font-family: "Roboto", sans-serif;
  margin-bottom: 15px;
}

.help-faq-item__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 173%;
  color: #393939;
  margin: 0;
  font-family: "Roboto", sans-serif;
  width: 100%;
  max-width: 379px;
}
@media (max-width: 767px) {
  .help-faq-item__description {
    max-width: 100%;
  }
}

/*# sourceMappingURL=main.css.map*/