/* Плавная прокрутка по якорям */
html {
  scroll-behavior: smooth;
}

/* Шрифты Cygre из папки fonts */
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-ThinIt.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-LightIt.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-RegularIt.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-Book.ttf") format("truetype");
  font-weight: 450;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-BookIt.ttf") format("truetype");
  font-weight: 450;
  font-style: italic;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-MediumIt.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-SemiBoldIt.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-BoldIt.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-ExtraBoldIt.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Cygre";
  src: url("../fonts/Cygre-BlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

.wrapper {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 30px;
  @media (max-width: 700px) {
    flex-direction: column;
    gap: 20px;
  }
}

.headerContacts {
  display: flex;
  align-items: center;
  gap: 20px;
  @media (max-width: 975px) {
    flex-direction: column;
  }
}

.headerContacts-line {
  height: 30px;
  width: 1px;
  background-color: #c8d2df;
  @media (max-width: 975px) {
    display: none;
  }
}

.headerContactsWrapper{
  display: flex;
  gap: 30px;
}

.headerContacts_phoneBlock {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.headerContacts_phoneBlock-text {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #61666f;
}

.headerContacts_phoneBlock-phone {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #373b42;
}

.headerContacts-btn {
  cursor: pointer;
  border-radius: 61px;
  padding: 20px 50px;
  background: #2b78fc;
  font-family: "Cygre SemiBold", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 120%;
  color: #fff;
}
/* HEADER */

/* FOOTER */
.footer {
  border-radius: 25px 25px 0 0;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  padding: 56px 24px 0 24px;
}

.footerTop {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 22px;
  @media (max-width: 600px) {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}

.footerLogo {
  max-width: 110px;
  @media (max-width: 600px) {
    max-width: none;
  }
}

.footerTop-list {
  display: flex;
  align-items: center;
  gap: 20px;
  @media (max-width: 1000px) {
    flex-direction: column;
    align-items: start;
  }
  @media (max-width: 600px) {
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

.footerTop-listWrapper {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.footerTop-item {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.footerTop-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  @media (max-width: 768px) {
    flex-direction: column;
    text-align: center;
  }
}

.footerTop-contactEmail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (max-width: 600px) {
    flex-direction: row;
  }
}

.footerTop-contactEmail-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footerTop-contactEmail-email {
  font-family: "Cygre", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 120%;
  color: #000;
}

.footerBot {
  border-radius: 25px 25px 0 0;
  background: #fff;
  padding: 20px;
  max-width: 80%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  justify-content: center;
  @media (max-width: 768px) {
    flex-wrap: wrap;
  }
}

.footerBot-copyrite {
  font-family: "Cygre", sans-serif;
  font-weight: 350;
  font-size: 12px;
  line-height: 100%;
  color: #161918;
}

.footerBot-link {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #91969f;
}
/* FOOTER */

/* CONTENT */
.mainSection {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.tableСontents {
  top: 10px;
  max-width: 230px;
  width: 100%;
  @media screen and (max-width: 975px) {
    display: none;
  }
}

.tableContentsTitle {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #2b78fc;
  padding-top: 20px;
  margin-bottom: 52px;
}

.tableСontents-list {
  position: sticky;
  top: 20px;
}

.tableСontents-sublist {
  display: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  list-style: none;
}
.tableСontents-group.expanded .tableСontents-sublist {
  display: block;
}

.tableСontents-item {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #373b42;
  margin-bottom: 10px;
}
.tableСontents-item a {
  color: #373b42;
}

.tableСontents-item.active {
  border-left: 4px solid #2b78fc;
  padding-left: 2px;
}
.tableСontents-item.small.active {
  border-left: 4px solid #2b78fc;
  padding-left: 6px;
}

.small {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #373b42;
  margin-bottom: 5px;
  padding-left: 10px;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 680px;
  width: 100%;
  margin-bottom: 60px;
}

.articleTg {
  display: flex;
  align-items: center;
}
.articleTg svg{
  @media (max-width: 600px) {
    display: none;
  }
}
.articleTg img {
  margin-right: 20px;
}

.articleTg-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: auto;
}

.articleTg-title {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #373b42;
}

.articleTg-count {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #000;
}

.articleViews {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #000;
}

.article-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 129%;
  color: #373b42;
}

.article-image {
  width: 100%;
  object-fit: cover;
}

.article-text {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: #000;
}

.article-quot {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: #000;
  padding-left: 10px;
  border-left: 4px solid #2b78fc;
}

.information {
  max-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  @media (max-width: 700px) {
    display: none;
  }
}
.mobileMenuOverlay .information{
  @media (max-width: 700px) {
    display: flex;
  }
}
.mobileMenuOverlay .tableСontents{
  @media (max-width: 700px) {
    display: flex;
  }
}

.informationImage {
  border-radius: 25px;
  background: #f5f7fa;
  padding: 18px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.informationImage-name {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #373b42;
  margin-bottom: 13px;
}

.informationImage-image {
}

.informationText {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  text-align: center;
  color: #000;
}
.informationText a {
  color: #2b78fc;
}

.informationSticky {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.informationSticky-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 15px;
  background: #eaf2ff;
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  color: #000;
}
.informationSticky-item:hover {
  background-color: #BFD7FE;
}
.informationSticky-item svg {
  flex-shrink: 0;
}
.article-h2 {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #000;
}
.article-h3 {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 130%;
  color: #000;
}
.article-h4 {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: #000;
}
.article-list {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  color: #000;
  padding-left: 30px;
}
.article-list-item {
  list-style: disc;
}
.banner {
  position: relative;
}
.bannerBtn {
  position: absolute;
  font-family: "Cygre", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  border-radius: 61px;
  padding: 20px 50px;
  background: #2b78fc;
}
.article-source {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: rgba(0, 0, 0, 0.6);
}
.article-boldQuot {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 120%;
  color: #000;
  position: relative;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}
.article-boldQuot:before {
  content: "";
  display: block;
  width: 17px;
  left: -30px;
  height: 15px;
  position: absolute;
  background-image: url("../image/quot.png");
}
.article-boldQuot:after {
  content: "";
  display: block;
  width: 17px;
  right: -30px;
  bottom: 3px;
  height: 15px;
  position: absolute;
  background-image: url("../image/quot.png");
}
.articleTelegram {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  @media (max-width: 600px) {
    flex-direction: column;
    text-align: center;
  }
}

.articleTelegramLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  @media (max-width: 600px) {
    flex-direction: column;
  }
}

.articleTellegramWrapperName-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  color: #2b78fc;
}

.articleTellegramWrapperName-subtitle {
  font-family: "Cygre", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  color: #000;
}
/* CONTENT */

/* POPUP */
.backPopup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.42);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.backPopup.is-hidden {
  display: none;
}

.popupBody {
  background: #e4f2fd;
  border-radius: 30px;
  max-width: 430px;
  width: 100%;
  padding: 40px 37px 64px 37px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popupBody-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.popupBody-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}

.popupBody-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popupBody-input {
  border-radius: 150px;
  background: #f5f7fa;
  padding: 20px 30px;
  font-family: "Cygre", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #161918;
}

.popupBody-btn {
  cursor: pointer;
  border-radius: 61px;
  padding: 17px;
  width: 100%;
  background: #2b78fc;
  font-family: "Cygre", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 120%;
  color: #fff;
  text-align: center;
}
/* POPUP */

/* POPUP LEAD — «Хотите начать продавать банкротство» */
.backPopupLead {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.42);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.backPopupLead.is-hidden {
  display: none;
}

.popupLeadBody {
  background: #e4f2fd;
  border-radius: 30px;
  max-width: 550px;
  width: 100%;
  padding: 65px 45px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.popupLeadBody-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #373b42;
  padding: 4px;
  line-height: 0;
  cursor: pointer;
}

.popupLeadBody-close:hover {
  color: #000;
}

.popupLeadBody-header {
  display: flex;
  align-items: flex-start;
  gap: 33px;
  margin-bottom: 30px;
}

.popupLeadBody-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.popupLeadBody-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.popupLeadBody-title {
  font-family: "Cygre SemiBold", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  color: #000;
}

.popupLeadBody-subtitle {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  text-align: center;
  color: #000;
  margin: 0 0 24px 0;
}

.popupLeadBody-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
}

.popupLeadBody-input {
  border-radius: 150px;
  background: #f5f7fa;
  padding: 20px 30px;
  font-family: "Cygre", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #161918;
  border: none;
}

.popupLeadBody-input::placeholder {
  color: #61666f;
}

.popupLeadBody-btn {
  cursor: pointer;
  border-radius: 61px;
  padding: 17px;
  width: 100%;
  background: #2b78fc;
  font-family: "Cygre", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 120%;
  color: #fff;
  text-align: center;
  border: none;
}

.popupLeadBody-btn:hover {
  background: #4f8eff;
}
/* POPUP LEAD */

/* MOBILE MENU (кнопка сверху, открывает/закрывает панель) */
.mobileMenuTrigger {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 10000;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #2b78fc;
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(43, 120, 252, 0.4);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mobileMenuTrigger:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(43, 120, 252, 0.5);
}
.mobileMenuTrigger .mobileMenuTrigger-icon {
  width: 24px;
  height: 24px;
  position: absolute;
}
.mobileMenuTrigger .mobileMenuTrigger-icon--close {
  display: none;
}
.mobileMenuTrigger.is-open .mobileMenuTrigger-icon--open {
  display: none;
}
.mobileMenuTrigger.is-open .mobileMenuTrigger-icon--close {
  display: block;
}

@media screen and (max-width: 975px) {
  .mobileMenuTrigger {
    display: flex;
  }
}

.mobileMenuOverlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.mobileMenuOverlay.is-hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.mobileMenuOverlay:not(.is-hidden) {
  visibility: visible;
}

.mobileMenuPanel {
  width: 100%;
  max-height: 80vh;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 24px 20px 32px;
  overflow-y: auto;
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
}
.mobileMenuOverlay.is-hidden .mobileMenuPanel {
  transform: translateY(100%);
}

.mobileMenuContent {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobileMenuContent .information,
.mobileMenuContent .tableСontents {
  max-width: 100%;
  width: 100%;
}

.mobileMenuContent .informationSticky {
  position: static;
}
.mobileMenuContent .tableСontents-list {
  position: static;
}
/* MOBILE MENU */

/* BANNER */
.firstBanner {
  border-radius: 25px;
  background-color: #eff1fe;
  padding: 44px 90px 24px 90px;
  background-image: url("../image/firstBanner.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 40px bottom;
  @media (max-width: 600px) {
    background-image: none;
    padding: 30px;
  }
}

.firstBannerWrapper{
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: auto;
  align-items: center;
  max-width: 280px;
  width: 100%;
  @media (max-width: 600px) {
    max-width: none;
  }
}

.firstBanner-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #000;
}

.firstBannerBtn {
  cursor: pointer;
  padding: 17px 30px;
  font-family: "Cygre SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  background: #2b78fc;
  border-radius: 61px;
}
/* BANNER */
/* BANNER */
.secondBanner {
  border-radius: 25px;
  padding: 44px 37px 30px 37px;
  background-color: #eff1fe;
  background-image: url("../image/secondBanner.png");
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: 450px bottom;
}

.secondBannerWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 390px;
  width: 100%;
  @media (max-width: 600px) {
    text-align: center;
    align-items: center;
  }
}

.secondBanner-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #000;
}

.secondBanner-btn {
  cursor: pointer;
  padding: 17px 20px;
  font-family: "Cygre SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  background: #2b78fc;
  border-radius: 61px;
  max-width: 206px;
}
/* BANNER */
/* BANNER */
.thirdBanner {
  border-radius: 25px;
  padding: 44px 37px 30px 37px;
  background-color: #eff1fe;
  background-image: url("../image/thirdBanner.png");
  background-repeat: no-repeat;
  background-size: 150px;
  background-position: 450px 25px;
}

.thirdBannerWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 400px;
  width: 100%;
  @media (max-width: 600px) {
    align-items: center;
    text-align: center;
  }
}

.thirdBanner-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #000;
}

.thirdBanner-btn {
  cursor: pointer;
  padding: 17px 20px;
  font-family: "Cygre SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  background: #2b78fc;
  border-radius: 61px;
  max-width: 206px;
}
/* BANNER */

/* BANNER */
.fourBanner {
  padding: 43px 28px 46px 28px;
  background-color: #eff1fe;
  border-radius: 25px;
  background-image: url("../image/fourBanner.png");
  background-repeat: no-repeat;
  background-position: 20px center;
  @media (max-width: 1000px) {
    background-image: none;
  }
}

.fourBannerWrapper {
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
  max-width: 475px;
  margin-left: auto;
  @media (max-width: 860px) {
    margin-left: unset;
    gap: 20px;
  }
}

.fourBanner-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 130%;
  text-transform: uppercase;
  color: #000;
  @media (max-width: 860px) {
    text-align: center;
  }
}

.fourBannerBottom {
  display: flex;
  align-items: center;
  gap: 24px;
  @media (max-width: 860px) {
    gap: 20px;
    flex-direction: column;
  }
}

.fourBanner-text {
  display: flex;
  gap: 15px;
  align-items: center;
  @media (max-width: 380px) {
    gap: 20px;
    flex-direction: column;
  }
}

.fourBanner-text-one {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 130%;
  color: #000;
}

.fourBanner-text-two {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #000;
  max-width: 190px;
  width: 100%;
}

.fourBanner-btn {
  cursor: pointer;
  background: #2b78fc;
  font-family: "Cygre SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  padding: 17px 20px;
  border-radius: 61px;
}
/* BANNER */
/* BANNER */
.fiveBanner {
  border-radius: 25px;
  padding: 44px 37px 30px 37px;
  background-color: #eff1fe;
  background-image: url("../image/fiveBanner.png");
  background-repeat: no-repeat;
  background-size: 300px;
  background-position: 385px -15px;
}

.fiveBannerWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 400px;
  width: 100%;
}

.fiveBanner-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #000;
}

.fiveBanner-btn {
  cursor: pointer;
  padding: 17px 20px;
  font-family: "Cygre SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  background: #2b78fc;
  border-radius: 61px;
  max-width: 206px;
}
/* BANNER */
/* BANNER */
.articleLastBanner {
  background-color: #eff1fe;
  padding: 24px;
  border-radius: 25px;
  position: relative;
  background-image: url("../image/case.png");
  background-repeat: no-repeat;
  background-position: 275px bottom;
  display: flex;
  justify-content: space-between;
  align-items: end;
  @media (max-width: 600px) {
    background-image: none;
  }
}

.articleLastBannerWrapper {
  max-width: 260px;
}

.articleLastBanner-title {
  font-family: "Cygre", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #000;
  margin-bottom: 60px;
}

.articleLastBanner-subtitle {
  font-family: "Cygre", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.articleLastBanner-arrow {
  position: absolute;
  right: 120px;
  top: 60px;
}

.articleLastBannerBtn {
  margin-bottom: 15px;
  font-family: "Cygre", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  border-radius: 61px;
  padding: 16px;
  background: #2b78fc;
}
/* BANNER */

button:hover{
  transition: 0.3s;
  background: #4f8eff;
}