:root {
	--services-icon-width: 30px;
	--services-icon-margin: 10px;
}

.marquee {
	position: relative;
	overflow: hidden;
}

.marquee image {
	width: 360px;
}

.marquee .track {
	white-space: nowrap;
	animation: marquee 350s linear infinite;
}

.marquee .track-2 {
	white-space: nowrap;
	animation: marquee-left 350s linear infinite;
}

.hero {
	width: 100%;
	height: 410px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: url(../src/bg.png) center center / cover no-repeat;
	position: relative;
	overflow: hidden;
}

.hero-content {
	max-width: 700px;
}

.hero-content h1,
.hero-content .description,
.hero-content button {
	margin-bottom: 20px;
	z-index: 1;
	position: relative;
}

.description {
	font-weight: 400;
}

.hero-content h1 {
	font-size: 2rem;
	font-weight: bold;
}

.typed-cursor {
	color: var(--accents);
}

.button-arrow {
	margin-left: 5px;
	font-size: 20px;
}

.solution-card {
	background-image: url(../src/bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	height: 150px;
	margin-top: 48px;
	border-radius: var(--border-radius);
}

.solution-card-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.solution-card-content h3 {
	font-weight: bold;
}

.container.services-list {
	text-align: center;
}

.row.services-list {
	text-align: start;
}

.services-item {
	display: flex;
	flex-direction: column;
}

.services-item:last-child p {
	margin-bottom: 0;
}

.services-header {
	display: flex;
}

.services-header p {
	margin-bottom: 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
}

.services-header .bi {
	color: var(--primary);
    min-width: var(--services-icon-width);
    height: var(--services-icon-width);
    font-size: 25px;
    text-align: end;
    margin-right: var(--services-icon-margin);
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-description {
	font-size: 16px;
	margin-left: calc(var(--services-icon-width) + var(--services-icon-margin));
	text-align: start;
}

.round1,
.round2,
.round3,
.logo {
	position: absolute;
	height: 1000px;
	left: 40%;
	bottom: -72%;
}

.round1 {
	animation: spin 200s linear infinite;
}

.round2 {
	animation: spin-rev 170s linear infinite;
}

.round3 {
	animation: spin 130s linear infinite;
}

.programms-card {
	background-image: url(../src/eagle-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 200px;
	margin-top: 48px;
	margin-bottom: 48px;
	border-radius: var(--border-radius);
}

.programms-description {
	font-size: 24px;
	width: 286px;
	font-weight: 400;
}

.modal-seminar {
	pointer-events: none;
}

.modal-seminar-dialog {
	height: 100%;
	max-width: 100%;
	margin: 0;
}

.modal-seminar-content {
	height: 380px;
	width: 250px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	background-image: url(../src/modal-background.png);
	color: var(--white);
	border-radius: var(--border-radius);
}

.modal-seminar-content p {
	margin: 0;
}

.modal-seminar-content hr {
	margin: 5px;
	border-width: 1px;
	border-color: var(--white);
	opacity: 100%;
	margin-left: 0;
}

.modal-seminar-header {
	font-size: 26px;
}

.modal-seminar-description {
	font-size: 24px;
}

.modal-seminar-description.date {
	line-height: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.modal-seminar-body {
	display: flex;
	flex-direction: column;
}

.modal-seminar-close-button {
	align-self: end;
	background-color: transparent;
	border: none;
	padding: 0;
	font-size: 20px;
}

.modal-seminar-close-button::before {
	color: var(--white);
}

.modal-seminar-text-wrapper {
	margin-bottom: 125px;
	width: 138px;
	font-weight: 600;
}

.modal-seminar-button:hover {
	color: var(--white) !important;
}

.container:has(.table-card) {
	padding: 0;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-10746px);
	}
}

@keyframes marquee-left {
	from {
		transform: translateX(-10484px);
	}

	to {
		transform: translateX(0px);
	}
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes spin-rev {
	100% {
		transform: rotate(-360deg);
	}
}

@media only screen and (max-width: 1024px) {
  :root {
	  --preheader-seminar-height: 48px;
  }

  .hero-content h1 {
    font-size: 26px !important;
  }

  .services-list {
    padding: 15px;
	border: none;
	border-radius: 0;
  }

  .services-item p {
	text-align: left;
  }

  .services-header p {
	  margin-bottom: 5px !important;
  }

  p.services-description {
	  margin-bottom: 16px !important;
  }

  .solution-card-content {
    justify-content: space-evenly !important;
    flex-direction: column !important;
    text-align: left;
    align-items: start !important;
    padding: 0 !important;
  }

  .programms-card {
    background-image: url(../src/bg.png) !important;
  }

  .programms-card .solution-card-content {
    font-size: 18px;
  }

  .programms-description {
    font-size: 16px !important;
    text-align: start;
    width: 100% !important;
  }

  .blue-card .container {
	padding: 0;
  }

  .header {
	font-size: 18px;
  }

  .mobile-left {
	  text-align: left;
  }

  .solution-card {
	margin-top: 15px;
  }

  .programms-card {
	margin-top: 30px;
	margin-bottom: 30px;
  }

  .preheader-seminar {
	  height: var(--preheader-seminar-height);
	  background-color: var(--primary);
  }

  .preheader-seminar section {
	  height: 100%;
  }

  .preheader-seminar .container {
	display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
  }

  .preheader-seminar span {
	margin-left: 15px;
  }

  .nav-section {
	  top: var(--preheader-seminar-height);
  }

  main {
	  padding-top: calc(var(--header-height) + var(--preheader-seminar-height));
  }

  section:has(.services-list) {
	  padding: 0;
  }
}