.main-footer {
  padding: 16rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.main-footer h2 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .main-footer {
    padding: 6rem 1.5rem;
  }
}

.useful-docs-section {
  display: flex;
  align-items: start;
  gap: 4rem;
  margin-bottom: 5rem;
}
.useful-docs-column {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .useful-docs-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .useful-docs-column {
    width: 100%;
  }
}

.useful-doc {
  gap: 15px;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 400;
  text-decoration: none;
  transition: all 150ms;
  cursor: pointer;
}
.useful-doc:hover {
  color: white;
  opacity: 75%;
}
.useful-doc:active {
  opacity: 50%;
}

.main-footer-content a {
  color: white;
  font-weight: 400;
  text-decoration: underline;
}
.main-footer-content {
  color: white;
  font-size: 0.75rem;
  font-weight: 200;
  letter-spacing: 0.06rem;
}

.accordions {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.accordions-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.accordion {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  transition: all 150ms;
  margin-top: 0.5rem;
  height: 4rem;
  overflow: hidden;
}
.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1c1c1c;
  padding: 1.25rem 3rem;
  height: 4rem;
  color: white;
}
.accordion-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-bottom: 1rem;
  font-weight: 300;
  background-color: #1c1c1c;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2rem;
}
.accordion-content p {
  font-size: 0.9rem;
}
.accordion > .accordion-button > img {
  transition: all 150ms;
}
.accordion-active > .accordion-button > img {
  transform: rotate(180deg);
}
.accordion-steps {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  margin-top: 1rem;
  width: 100%;
}
.accordion-step {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
  font-weight: 300;
  flex: 1;
}
.accordion-step a {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: mBank;
}
.accordion-app-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.accordion-cta {
  margin-top: 1rem;
  font-size: 1rem;
  display: inline-block;
  border-radius: 200px;
  font-family: mBank;
  font-style: normal;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  background-color: #ae0000;
  color: white;
  transition: all 150ms;
  text-align: center;
}
.accordion-cta:hover {
  background-color: #8a0000;
  color: white;
}
@media screen and (max-width: 768px) {
  .accordion-cta {
    padding: 0.5rem 1rem;
  }
  .accordion-button {
    padding: 1.25rem 1.5rem;
  }
  .accordion-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .accordion-app-download {
    align-self: start;
    flex-direction: column;
    align-items: start;
  }
}

@media screen and (max-width: 1024px) {
  .accordion-steps {
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .accordion-step {
    width: 100%;
  }
}

.text-responsive {
  text-align: start;
}

.main-banner-image {
  display: none;
  height: 350px;
  width: 100%;
  position: absolute;
  top: 81px;
  left: 0;
  z-index: 0;
  object-position: bottom;
}

.main-banner-image-small {
  display: block;
  height: 350px;
  width: 100%;
  position: static;
  margin-top: -30px;
  left: 0;
  z-index: 0;
  object-position: bottom;
}

.main-banner-image-small.lp {
  height: 260px;
}

.main-banner-image.lp {
  height: 450px;
}

.main-section {
  height: 100%;
  top: 25px;
  padding-bottom: 1rem;
}

.frame {
  padding-top: 30px;
  padding-left: 30px;
  background-size: 100% 245px;
  width: 367.72px;
  height: 240px;
}

.frame.orange {
  background-image: url("../../assets/img/orange-frame.svg");
}

.frame.blue {
  background-image: url("../../assets/img/blue-frame.svg");
}

.frame.green {
  background-image: url("../../assets/img/green-frame.svg");
}

.frame.red {
  background-image: url("../../assets/img/red-frame.svg");
}

.icon {
  width: 55px;
  height: 38px;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 100px;
  top: 83.605px;
  left: 11px;
  z-index: 1;
}

@media screen and (min-width: 380px) {
  .icon-wrapper {
    left: 4px;
  }
}

@media screen and (min-width: 400px) {
  .icon-wrapper {
    left: -8px;
  }
}

.icon-wrapper.orange {
  background-color: #ff8600;
}

.icon-wrapper.blue {
  background-color: #0065b1;
}

.icon-wrapper.green {
  background-color: #008e20;
}

.icon-wrapper.red {
  background-color: #ae0000;
}

.frame-font {
  font-size: 60px;
  font-family: mBank;
  font-weight: 600;
}

.font-wrapper {
  padding-left: 72px;
  padding-top: 80px;
}

.font-wrapper.small {
  padding-top: 42px;
}

.font-wrapper.left-padding {
  padding-left: 70px;
}

.missions {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.task-container {
  background-color: #1c1c1c;
  padding: 32px;
  width: 100%;
  border-radius: 32px;
  max-width: 679px;
  margin-top: -40px;
}

.custom-modal-background {
  width: auto;
  border: none;
  overflow-y: auto;
  max-height: 70vh;
  padding: 24px 40px;
  padding-top: 70px;
  background-color: #1c1c1c;
}

.modal {
  padding-right: 0px !important;
}

.modal.blur {
  backdrop-filter: blur(16px);
}

.custom-modal-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 28px;
}

@media (min-width: 992px) {
  .main-section {
    height: 450px;
    top: 25px;
    position: relative;
    padding-bottom: 0;
  }

  .custom-modal-close {
    position: absolute;
    top: 120px;
    right: 140px;
    font-size: 28px;
  }

  .modal.blur {
    backdrop-filter: blur(8px);
  }
}

.custom-modal-close.orange {
  color: #ff8600;
}

.custom-modal-close.blue {
  color: #0065b1;
}

.custom-modal-close.green {
  color: #008e20;
}

.custom-modal-close.red {
  color: #ae0000;
}

.tasks-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -36px;
  gap: 1rem;
  padding-bottom: 12px;
}

.tasks-container.pt {
  padding-top: 0rem;
}

@media (min-width: 992px) {
  .tasks-container {
    display: flex;
    padding-top: 24px;
    margin-top: 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .tasks-container.pt {
    padding-top: 2.5rem;
  }
}

.money-task {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  padding: 18px;
}

.money-task.small-padding {
  padding: 8px;
}

.money-task.text {
  font-size: 48px;
  padding: 0px;
  padding: 16px 8px;
}

.savings {
  gap: 40px;
}

@media (min-width: 992px) {
  .savings {
    gap: 100px;
  }
}

.money-task.text-small {
  font-size: 34px;
  padding: 0px;
  padding: 16px 2px;
}

.money-task-upper-text {
  font-size: 30px;
  font-family: mBank;
  line-height: 120%;
}

.money-task-upper-text.small {
  font-size: 22px;
}

.money-task-upper-text.red {
  color: #ae0000;
}

.money-task-upper-text.light-red {
  color: #e90a0a;
  font-size: 20px;
}

@media (min-width: 992px) {
  .money-task-upper-text.light-red {
    font-size: 15px;
  }
}

.money-task-upper-text.orange {
  color: #ff8600;
}

.money-task-upper-text.blue {
  color: #0065b1;
}

.money-task-upper-text.green {
  color: #008520;
}

.money-task-number {
  font-size: 53px;
  color: transparent;
  padding: 0px;
  padding-bottom: 10px;
  font-weight: 800;
  font-family: mBank;
}

.money-task-number.red {
  -webkit-text-stroke: 2px #ae0000;
  stroke: 2px #ae0000;
}

.money-task-number.orange {
  -webkit-text-stroke: 2px #ff8600;
  stroke: 2px #ff8600;
}

.money-task-number.blue {
  -webkit-text-stroke: 2px #0065b1;
  stroke: 2px #0065b1;
}

.money-task-number.green {
  -webkit-text-stroke: 2px #008520;
  stroke: 2px #008520;
}

.money-task.red {
  background-color: #ae0000;
  box-shadow: 0px 6px 30px #ae000099;
}

.money-task.light-red {
  background-color: #e90a0a;
  box-shadow: 0px 6px 30px #e90a0a80;
}

.money-task.orange {
  background-color: #ff8600;
  box-shadow: 0px 6px 30px #ff860099;
}

.money-task.blue {
  background-color: #0065b1;
  box-shadow: 0px 6px 30px #0065b199;
}

.money-task.green {
  background-color: #008520;
  box-shadow: 0px 6px 30px #00852099;
}

.card-width {
  max-width: 504px;
}

.fib {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: mBank;
  font-style: normal;
  font-weight: 600;
  padding: 0.666667em 1.2em;
  width: 100%;
  border: 1px solid #e80a09;
  background: #0f0f0f 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 15px #e80a0959;
}

.fib.border-blue {
  box-shadow: 0px 3px 15px #0065b159;
  border: 1px solid #0065b1;
}

.fib.border-green {
  box-shadow: 0px 3px 15px #00852099;
  border: 1px solid #008520;
}

.skills-text {
  font-size: 34px;
  font-weight: 600;
  font-family: mBank;
  line-height: 120%;
}

.custom-modal-background.red {
  border: 2px solid #ae0000;
  box-shadow: 0px 6px 30px #ae000099;
}

.custom-modal-background.blue {
  border: 2px solid #0065b1;
  box-shadow: 0px 6px 30px #0065b199;
}

.custom-modal-background.orange {
  border: 2px solid #ff8600;
  box-shadow: 0px 6px 30px #ff860099;
}

.custom-modal-background.green {
  border: 2px solid #008520;
  box-shadow: 0px 6px 30px #00852099;
}

@media (min-width: 992px) {
  .skills-text {
    font-size: 40px;
    font-weight: 600;
    font-family: mBank;
    line-height: 120%;
  }

  .main-banner-image {
    display: block;
    top: 108px;
  }

  .main-banner-image-small {
    display: none;
    top: 108px;
  }

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

  .custom-modal-background {
    background-color: transparent;
    background-size: cover;
    width: 1060px;
    height: 624px;
    overflow-y: unset;
    padding-top: 160px;
    padding-bottom: 140px;
    padding-left: 140px;
    padding-right: 140px;
    border: none;
    background-repeat: round;
    min-height: 650px;
  }

  .custom-modal-background.small-padding {
    padding-top: 120px;
  }

  .custom-modal-background.medium-padding {
    padding-top: 140px;
  }

  .custom-modal-background.red {
    background-image: url("../../assets/img/red-frame.svg");
    border: none !important;
    box-shadow: none !important;
  }

  .custom-modal-background.light-red {
    background-image: url("../../assets/img/light-red-frame.svg");
    border: none !important;
    box-shadow: none !important;
  }

  .custom-modal-background.blue {
    background-image: url("../../assets/img/blue-frame.svg");
    border: none !important;
    box-shadow: none !important;
  }

  .custom-modal-background.orange {
    background-image: url("../../assets/img/orange-frame.svg");
    border: none !important;
    box-shadow: none !important;
  }

  .custom-modal-background.green {
    background-image: url("../../assets/img/green-frame.svg");
    border: none !important;
    box-shadow: none !important;
  }

  .custom-modal-size {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 720px;
    height: 100%;
  }

  .task-container {
    width: min-content;
    flex-grow: 1;
    margin-left: -28px;
    margin-top: 0;
  }

  .negative-margin {
    margin-top: -20px;
  }
}

.free-benefits-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 50%;
}
.free-benefit-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  font-size: 0.75rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
  background-color: #333333;
  z-index: 10;
  padding: 1.5em;
  width: 280px;
  pointer-events: none;
  opacity: 0%;
  transition: all 150ms;
}
.free-benefit-tooltip-wrapper {
  display: inline-block;
  position: relative;
}
.free-benefit-tooltip-wrapper:hover > button + span {
  opacity: 100%;
}
@media screen and (max-width: 640px) {
  .free-benefits-column {
    width: 100%;
  }
}
.free-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 300;
  color: white;
  position: relative;
  padding: 1.5em 1.5em 1.3em 1.5em;
  background-size: 100% 100%;
  width: 100%;
}
.free-benefit-red {
  background-image: url("../../assets/img/red-box-details.png");
}
.free-benefit-orange {
  background-image: url("../../assets/img/orange-box-details.png");
}
.free-benefit-blue {
  background-image: url("../../assets/img/blue-box-details.png");
}
.free-benefit-green {
  background-image: url("../../assets/img/green-box-details.png");
}
.free-benefit p {
  line-height: 15px;
  font-size: 0.9rem;
  position: relative;
}
.free-benefits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
}
.free-benefits-section h2 {
  font-size: 3rem;
  text-align: center;
  max-width: 50vw;
  margin-bottom: 3rem;
}
.free-benefits-content > .zero-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  position: relative;
}
.free-benefits-content > .zero-image-wrapper > .zero-image-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scaleY(1.15);
  right: 0;
  width: 60%;
  z-index: 1;
}
.free-benefits-content > .zero-image-wrapper > .zero-image {
  width: 70%;
  filter: contrast(0) brightness(2);
  z-index: 2;
}
.free-benefits-section-wrapper {
  position: relative;
}
.free-benefits-section-wrapper > .background {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 300px) {
  .free-benefits-content > .zero-image-wrapper > img {
    width: 100%;
  }
  .free-benefit p {
    font-size: 0.75rem;
    line-height: 14px;
  }
}
@media screen and (min-width: 300px) and (max-width: 440px) {
  .free-benefit p {
    font-size: 0.75rem;
    line-height: 15px;
  }
}
@media screen and (min-width: 440px) and (max-width: 580px) {
  .free-benefit {
    width: 100%;
  }
  .free-benefit p {
    font-size: 0.75rem;
    line-height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .free-benefits-section h2 {
    font-size: 2rem;
    max-width: 100%;
  }
  .free-benefits-content > .zero-image-wrapper {
    width: 70%;
  }
}

.free-benefits-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .free-benefits-section-wrapper > .background {
    display: none;
  }
  .free-benefits-content > .zero-image-wrapper > .zero-image-bg {
    display: none;
  }
  .free-benefits-content {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

.the-section {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.skill-slide {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.skill-slide.img {
  padding-bottom: 26px;
  width: 221px;
  height: 221px;
}

.free-benefits-content-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 992px) {
  .fib {
    width: 83.333333%;
    max-width: 220px;
  }
  .skill {
    transform: scale(0.7);
    transition: ease 0.3s;
  }
  .swiper-slide-next {
    transform: scale(1);
    transition: ease 0.3s;
  }
  .swiper-container {
    padding-right: 60px;
    padding-left: 60px;
  }
  .free-benefits-content-modal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.task-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  max-width: 241px;
}

.swiper-container-cards {
  width: 100%;
}

@media (min-width: 992px) {
  .swiper-container-cards {
    width: 50%;
    flex-shrink: 0;
    margin-right: -80px;
  }
}

.cards-selector {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.cards-selector button {
  color: white;
  font-family: mBank;
  font-size: 1.3rem;
  transition: all 150ms;
  padding-bottom: 14px;
  border-bottom: 2px solid transparent;
}
.cards-selector button.active {
  border-bottom: 2px solid #0065b1;
  color: #0065b1;
}
.cards-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.cards-section-details {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
}
.cards-section-cta {
  margin-top: 1rem;
  font-size: 1rem;
  display: inline-block;
  border-radius: 200px;
  font-family: mBank;
  font-style: normal;
  font-weight: 600;
  padding: 0.7rem 4rem;
  background-color: #ae0000;
  color: white;
  transition: all 150ms;
  text-align: center;
  align-self: center;
}
.cards-section-cta:hover {
  color: white;
  background-color: #8a0000;
}
.card-content {
  display: none;
}
.card-content.active {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.card-content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.card-content-wrapper img {
  display: none;
  width: 35%;
  object-fit: contain;
}
.card-content-wrapper img.active {
  display: block;
}
.card-content a {
  margin-top: 2rem;
}

.multicurrencies-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.multicurrencies-content-wrapper img {
  width: 55%;
  object-fit: contain;
}

.multicurrencies-content-header {
  line-height: 117%;
  font-size: 26px;
  font-family: mBank;
  margin-bottom: 16px;
}

.multicurrencies-content-subHeader {
  line-height: 117%;
  font-size: 16px;
  font-family: mBank-regular;
}

.multicurrencies-desc-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  gap: 26px;
}

.multicurrencies-percent {
  font-family: mBank;
  font-size: 92px;
  line-height: normal;
}

.multicurrencies-percent.red {
  color: #e70a0a;
}

.multicurrencies-pre-percent {
  font-family: mBank;
  font-size: 36px;
  color: #0065b1;
  margin-bottom: 22px;
}

.multicurrencies-percent.blue {
  color: #0065b1;
}

.multicurrencies-description {
  line-height: 117%;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .card-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .card-content-wrapper img {
    width: 80%;
  }
  .cards-section-cta {
    width: 100%;
  }
  .cards-selector {
    margin-bottom: 2rem;
  }
  .multicurrencies-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .multicurrencies-content-wrapper img {
    width: 80%;
  }
  .multicurrencies-pre-percent {
    font-size: 28px;
    margin-bottom: 22px;
  }
}

@media screen and (max-width: 426px) {
  .multicurrencies-content {
    padding-left: 12px;
    padding-right: 12px;
  }
  .multicurrencies-percent {
    font-size: 78px;
  }
  .multicurrencies-description {
    font-size: 18px;
  }
  .multicurrencies-pre-percent {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.cta {
  font-size: 1rem;
  display: inline-block;
  border-radius: 200px;
  font-family: mBank;
  font-style: normal;
  font-weight: 600;
  padding: 0.666667em 1.2em;
  width: 83.333333%;
  max-width: 240px;
  cursor: pointer;
}

.cta,
.cta:hover {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cta.bg-red {
  background: #ae0000;
}

.cta.bg-red:hover {
  background: #850000;
}

.cta.bg-red.inverted {
  color: #b5b5b5;
  border: 1px solid #b5b5b5;
  background: transparent;
}

.cta.bg-red.inverted:hover {
  color: #fff;
  background: #850000;
  border: 1px solid transparent;
}

.cta:disabled,
.cta[disabled] {
  background: #6e6e6e;
  color: #fff;
  pointer-events: none;
}

header .cta {
  width: 145px;
  font-size: 0.8rem;
}

@media (min-width: 576px) {
  header .cta {
    width: 254px;
    font-size: 1rem;
  }
}

header .secondary-nav .cta {
  font-size: 0.777778rem;
}

.over-modal-header {
  font-size: 26px;
  font-family: mBank;
  line-height: 120%;
}

.over-modal-header.small {
  font-size: 16px;
}

.over-modal-header.red {
  color: #ae0000;
}

.over-modal-header.light-red {
  color: #e90a0a;
}

.over-modal-header.orange {
  color: #ff8600;
}

.over-modal-header.blue {
  color: #0065b1;
}

.over-modal-header.green {
  color: #008e20;
}

.custom-bullet {
  list-style-type: none;
}

.custom-bullet::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ae0000;
  margin-right: 10px;
}

.custom-bullet.red::before {
  background-color: #ae0000;
}

.custom-bullet.blue::before {
  background-color: #0065b1;
}

.custom-bullet.orange::before {
  background-color: #ff8600;
}

.custom-bullet.green::before {
  background-color: #008e20;
}

.createAccModal-close {
  top: 10px;
}

.createAccModal-button {
  margin-top: 10px;
}

.allegro-button {
  margin-top: 20px;
}

.allegro-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 992px) {
  .createAccModal-close {
    top: 120px;
  }

  .createAccModal-button {
    margin-top: 0px;
  }

  .allegro-container {
    margin-top: -26px;
  }

  .allegro-button {
    margin-top: 26px;
  }
}

.skills-subtitle {
  font-size: 20px;
  font-family: Montserrat;
  line-height: 120%;
}

.extra-bonus-font {
  font-size: 14px;
  font-family: Montserrat;
  line-height: 120%;
  font-weight: 200;
}

.bar-wrapper {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.gray-bar {
  background-color: #333333;
  width: 80%;
  height: 6px;
}

.color-bar {
  position: relative;
  background-color: #e80a09;
  width: 20%;
  height: 6px;
}

.color-bar::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  background-color: #0f0f0f;
  top: 2px;
  right: 4px;
  transform-origin: bottom right;
  transform: rotate(45deg);
}

.color-bar.blue {
  background-color: #0065b1;
}

.color-bar.blue::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  background-color: #0f0f0f;
  top: 2px;
  right: 4px;
  transform-origin: bottom right;
  transform: rotate(45deg);
}
