/*Form Styles*/

.form-container {
  max-width: 498px;
}
.form-wrapper form input[type="text"],
.form-wrapper form input[type="email"],
.form-wrapper form input[type="tel"] {
  background-color: #151b31;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  border-color: #383636;
}

.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  color: #fff !important;
}

/* Header Menu */
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #d1d5db;
    cursor: pointer;
    transition: color .25s ease, transform .25s ease;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.has-submenu {
    position: relative;
}

.nav-arrow {
    transition: transform .25s ease;
}

.has-submenu:hover .nav-arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;

    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    padding: 8px 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .25s ease, transform .25s ease;
    z-index: 50;
}

.submenu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #e5e7eb;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.has-submenu.open .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

.has-submenu.open .nav-arrow {
    transform: rotate(180deg);
}


/* Lang Switcher */

.lang-switcher {
  position: relative;
  width: 120px;
  height: 36px;
  flex-shrink: 0;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(10px);
  transition: 0.2s;
  color: #fff;
  font-size: 14px;
  width: 112px;
}
.lang-current:hover {
  background: rgba(255, 255, 255, 0.12);
}
.lang-current img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;

  background: rgba(20, 20, 35, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 0;

  min-width: 160px;
  min-height: 44px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;

  z-index: 2000;
}

.lang-dropdown.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: #ddd;
  text-decoration: none;
  transition: 0.15s;
  font-size: 14px;
}
.lang-dropdown a:hover {
  background: rgba(99, 102, 241, 0.25);
  color: white;
}
.lang-dropdown img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

#mobileMenu {
  z-index: 9999;
}

.mobile-left-wrapper {
  height: 48px;
  min-width: 120px; 
  flex-shrink: 0;
}

.nav-link {
  @apply text-gray-300 hover:text-white hover:scale-105 transition-all duration-300 font-medium;
}

.mobile-link {
  @apply text-gray-200 text-lg font-medium py-2 px-2 rounded-md hover:bg-slate-800/60 transition-all;
}

/* Steps */
.dashed-line:after {
  content: "";
  position: absolute;
  top: 18%;
  left: 60%;
  width: calc(100% - 10%);
  height: 0;
  border-top: 3px dashed #282f53;
}

.dashed-line:last-child:after {
  content: none;
}

.sp-top {
  top: -150px;
}

.sp-button {
  width: 25%;
}

@media (max-width: 1024px) {
  .dashed-line:after {
    display: none;
  }
  .sp-button {
    width: 80%;
  }
}

/* ===== CALCULATOR MODAL (TEMP NAMESPACE) ===== */
.calc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;
}

.calc-modal.is-open {
  display: flex;
}

.calc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 30, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.calc-modal__content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 498px;
  margin: 0 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.65);
}

.calc-modal__close {
  position: absolute;
  top: 6px;
  right: 9px;

  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  cursor: pointer;

  opacity: 0.8;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 99;
}

.calc-modal__close:hover {
  opacity: 1;
  transform: scale(1.1);
}

body.calc-modal-open {
  overflow: hidden;
}


/*Modal Styles*/
.modal-overlay {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
}

.modal {
	background: #282f53;
	border-radius: 10px;
	width: 450px;
	padding: 30px;
	text-align: center;
	position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal .close-btn {
	position: absolute;
	top: 6px;
	right: 16px;
	font-size: 36px;
	cursor: pointer;
	color: #ffffffd6;
	z-index: 2;
}

.content-popup__banner {
	margin: 0 auto 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 300px;
}

.content-popup__banner img {
	max-height: 200px;
}

.content-popup__countdown-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 20px 0;
}

.content-popup__countdown-row .time {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	height: 36px;
	width: 42px;
	border-radius: 4px;
	background-color: #ffffffd6;
	color: #4f46e5;
}

.content-popup__footer {
	padding-top: 24px;
}

.content-popup__cta {
	display: block;
	max-width: 280px;
	margin: 0 auto;
	padding: 14px 24px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
}

.content-popup__countdown-row .separator {
	color: #ffffffd6;
}

@media (max-width: 767px) {

	.modal {
		width: calc(100vw - 20px);
		max-height: 92vh;
		overflow: hidden; 
		padding: 20px;
		display: flex;
		flex-direction: column;
	}

  .content-popup__banner {
		max-width: 220px;
		margin-bottom: 12px;
	}

	.content-popup__banner img {
		max-height: 140px;
	}

	.modal p,
	.content-popup__countdown-row {
		flex-shrink: 0;
	}

	.modal p {
		max-height: 28vh;
		overflow-y: auto;
		padding-right: 6px;
	}

	.content-popup__footer {
		margin-top: auto;
		padding-top: 16px;
		padding-bottom: env(safe-area-inset-bottom);
	}
}

/* User Steps */
.step-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
}
.step-item {
  position: relative;
}

.step-item::after {
    content: "";
    position: absolute;
    top: 77px;
    left: 11%;
    width: 95%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #6f2dbd 0%,
        #a855f7 50%,
        #6f2dbd 100%
    );
    z-index: 1;
}

.step-item::before {
    content: "";
    position: absolute;
    top: 75px;
    left: 11%;
    width: 95%;
    height: 6px;
    background: linear-gradient(
        90deg,
        rgba(168, 85, 247, 0.8),
        rgba(168, 85, 247, 0.3),
        rgba(168, 85, 247, 0.8)
    );
    filter: blur(8px);
    z-index: 0;
}
.step-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    display: block;
    position: relative;
    margin-left: 10px;
    margin-bottom: 14px;
    margin-top: 7px;
}

.step-number {
  line-height: 65px;
    margin-bottom: 0;
  font-size: 64px;
    position: relative;
    text-shadow:
        0 0 6px rgba(74, 222, 128, 0.6),
        0 0 14px rgba(74, 222, 128, 0.4),
        0 0 28px rgba(74, 222, 128, 0.2);
}

@media (max-width: 767px) {
    .step-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

  .step-item::after, .step-item::before {
    display: none;
  }

  .step-dot {
    display: none;
  }
}

/* Comparison */

.comparison-section {
    padding-top: 60px;
    padding-bottom: 40px;
}

.page-comparison.comparison-section {
  padding-top: 50px;
}

.comparison-table {
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.25);
    overflow: hidden;
}

.comparison-head,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
}

.page-comparison .comparison-row {
  grid-template-columns: 1fr 1fr;
}

.comparison-head {
    padding: 1.5rem;
    font-weight: 700;
    background: rgba(168, 85, 247, 0.08);
    color: #8b5cf6;
}

.comparison-row {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.comparison-row:hover {
    background: rgba(168, 85, 247, 0.05);
}

.label {
    font-weight: 500;
}

.check {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.check--yes {
    background-image: url('/images/tick.svg');
}

.check--no {
    background-image: url('/images/none.svg');
}

/* RTL support */
.comparison-section.rtl {
    direction: rtl;
}

.comparison-section.rtl .comparison-head,
.comparison-section.rtl .comparison-row {
    text-align: right;
}

/* Documentation */
.sidebar-navigation {
  position: fixed;
  right: 7%;
  top: 10%;
}


.reviews-section {
    margin-top: 100px;
    margin-bottom: 140px;
}

@media(max-width: 767px) {
  .comparison-section {
        padding-top: 40px;
        padding-bottom: 100px;
        margin-top: 0;
  }
  
  .reviews-section{
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .sidebar-navigation {
    position: relative;
    width: 100%;
    left: 0;
    margin-top: 10px;
  }
  
  .page-comparison .comparison-row {
    grid-template-columns: 2fr;
  }
}

/* Career Page */

.job-content .job-intro {
  margin: 10px 0;
}

.job-content ul {
  list-style: none;
  padding-left: 1.25rem;
}

.job-content ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  color: #d1d5db;
}

.job-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
}

.job-content .job-cta {
  color: #8b5cf6;
  text-decoration: underline;
  padding-left: 20px;
  margin-top: 20px;
  display: block;
}

@media (max-width: 768px) {
  .job-header {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 0.75rem;
  }

  .job-header .job-toggle {
    width: 100%;
  }
}

/* Reviews Block */

.reviews-cards {
  display: flex;
  flex-direction: column;
}

.review-first-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3rem;
}

.review-card {
  max-width: 560px;
  min-height: 220px;
}

.review-card--offset {
  margin-left: 280px;
  position: relative;
  top: -20px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-rating {
  color: #7c3aed;
  letter-spacing: 2px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .review-first-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .reviews-title {
    order: -1;
    margin-bottom: 2rem;
  }

  .review-card {
    max-width: 100%;
  }

  .review-card--offset {
    margin-left: 0;
    margin-top: 2rem;
    top: 0;
  }
}

/* User Reviews */
.user-reviews-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.user-reviews-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.user-review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: flex-start;
}

.user-review-card.rc-3 {
  min-height: 233px;
}

.user-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border-color: #2563eb80;
  border-width: 1px;
}

.user-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-review-image {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .user-reviews-columns {
    grid-template-columns: 1fr;
  }
}

/* Contact */

iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.office-addresses {
  position: relative;
}

.office-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: start;
}

.office-item {
  padding-left: 20px;
  border-left: 2px solid rgba(139, 92, 246, 0.6);
}

@media (max-width: 768px) {
  .office-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .office-item {
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid rgba(139, 92, 246, 0.4);
    padding-bottom: 14px;
  }

  .office-title {
    text-align: center;
    margin-bottom: 10px;
  }

  iframe {
    width: 100%;
    height: 300px;
  }
}

/* Header Banner */
#topBanner {
  position: relative;
  z-index: 60;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#mainHeader {
  z-index: 50;
  min-height: 64px;
}

.header-banner {
  width: 100%;
  background: #4f46e5;
  color: #fff;
  padding: 0 24px;
}

.h-container {
  margin: 0 auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.h-container > div {
  flex: 1;
  padding: 0 10px;
  border-left: 1px solid #fff;
}

.h-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

.h-subtitle {
  font-size: 15px;
  opacity: 1;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
}

@media (max-width: 768px) {
  .header-banner {
    padding-left: 0;
    padding-right: 0;
  }
  .h-container {
    gap: 20px;
  }
  .h-container > div {
    border-top: none;
    padding: 0 0 0 10px;
  }
  .h-col-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .h-col-2 {
    grid-column: 2;
    grid-row: 2;
  }
  .h-title {
    font-size: 10px;
    line-height: 16px;
  }
  .h-subtitle {
    font-size: 9px;
    line-height: 13px;
  }
}


/* Tailwind Custom Styles */
.pt-32 {
  padding-top: 8rem;
}

.pb-28 {
  padding-bottom: 7rem;
}

.bg-primary-dark {
  background-color: #191d2f;
}

.bg-primary-dark-400 {
  background-color: #374172;
}

.text-primary-dark-500 {
  color: #838ec3;
}

.border-purple-600 {
  border-color: #7c3aed;
}

.border-purple-500 {
  border-color: #a7a4ff;
}

.bg-purple-600 {
  background-color: #6a65fe;
}


.video-iframe-fix {
  width: 100%;
  height: auto;
  min-height: 220px;
  aspect-ratio: 16 / 9;
}

.video-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 200px;
}


@supports (-webkit-touch-callout: none) {
  /* iOS Safari */
  .video-iframe-fix {
    height: auto;
  }
}

/* Slider */

.slider-container {
  max-width: 80rem;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .slider-container {
    max-width: 100%;
  }
}

/* Team Slider */
.team-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.team-slider__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.team-slider__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-slider__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.team-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.team-slider__arrow:active {
  transform: translateY(0);
}

.team-slider__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  display: block;
}

.team-slider__arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.team-slider__arrow--next::before {
  transform: rotate(45deg);
  margin-right: 2px;
}

.team-slider__wrapper {
  width: 100%;
}
.team-slider__swiper {
  overflow: hidden;
}

.team-slider__slide {
  overflow: hidden;
}

.team-slider__image img {
  border-radius: 8px;
}

.team-slider__content {
  margin-top: 10px;
}

.team-slider__content .team-slider__name {
  color: #d1d5db;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-slider__content .team-slider__role {
  color: #8a8c8e;
}

@media (max-width: 639px) {
  .team-slider__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 12px;
  }

  .team-slider__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .team-slider__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }

  .team-slider__arrow {
    width: 36px;
    height: 36px;
  }
}

/* Partners Overview */

.blockleft {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-partner {
  display: flex;
  gap: 40px;
  margin-bottom: 140px;
}

.pie-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
}

.pie {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;

  background: conic-gradient(
    rgba(34, 197, 94, 0.7) 0deg 245deg,
    rgba(59, 130, 246, 0.7) 245deg 330deg,
    rgba(139, 92, 246, 0.7) 330deg 360deg
  );

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.45);
}

.blocklegend {
  font-size: 13px;
}

.blocklegend div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
  color: #9fbfc6;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
}

.dot--green {
  background: linear-gradient(
    to right,
    rgba(34, 197, 94, 0.6),
    rgba(16, 185, 129, 0.6)
  );
}

.dot--blue {
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.6),
    rgba(99, 102, 241, 0.6)
  );
}

.dot--violet {
  background: linear-gradient(
    to right,
    rgba(139, 92, 246, 0.6),
    rgba(168, 85, 247, 0.6)
  );
}

.blockleft,
.blockright {
  width: 50%;
}

@media (max-width: 768px) {
  .section-partner {
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 0 14px 14px 14px;
  }
  
  .partners-overview {
      margin-top: 0 !important;
  }

  .blockright {
    margin-top: 10px;
  }

  .blockleft,
  .blockright {
    width: 100%;
  }
  .pie {
    width: 135px;
    height: 120px;
  }

  .partner-title {
    font-size: 36px;
    line-height: 30px;
  }
}


/*  Investment Calculator*/

.calculator__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.calculator__controls {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.calculator__value {
  font-size: 28px;
  font-weight: 700;
  margin: 12px 0 16px;
  color: #fff;
}

.calculator__range {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(
    to right,
    #2c2f6b 0%,
    #2c2f6b 50%,
    #d9deef 50%,
    #d9deef 100%
  );
  outline: none;
}

.calculator__range::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #2c2f6b;
  cursor: pointer;
}

.calculator__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #2c2f6b;
  cursor: pointer;
}

.calculator__total {
  font-weight: 800;
  margin: 16px 0 40px;
  line-height: 1;
}

@media (max-width: 900px) {
  .calculator__wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
  }
  .calculator__controls {
    width: 100%;
  }
  .calculator__stats {
    justify-content: center;
  }
}

.footer-logo-section {
  width: 200px;
}
.footer-grid-menu {
  justify-items: flex-end;
}

@media (max-width: 768px) {
  .footer-grid-menu {
    justify-items: flex-start;
  }
}

/* Company Timeline */
.company-timeline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.company-timeline__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.company-timeline__list {
  position: relative;
}

.company-timeline__list::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #4f46e5; 
}

.company-timeline__item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.company-timeline__year {
  font-weight: 600;
  color: #4f46e5;
  font-size: 14px;
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}

.company-timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4f46e5;
  margin: 4px auto 0;
  position: relative;
  z-index: 2;
  left: -19px;
  top: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .company-timeline__list::before {
    left: 12px;
  }

  .company-timeline__item {
    grid-template-columns: 1fr;
    padding-left: 40px;
  }

  .company-timeline__year {
    text-align: left;
    font-size: 13px;
    margin-bottom: 6px;
  }

  .company-timeline__dot {
    position: absolute;
    left: 6px;
    top: 6px;
    margin: 0;
  }
  
  .open-modal-messenger-btn img {
      width: 29px !important;
  }
  .open-modal-messenger-btn {
      width: 155px;
  }
}


