:root {
  /* Colors
      -------------------------- */
  --background: #ffffff;
  --hero-background: #fff2e3;
  --section-background: #fff9f2;
  --theme-red: #c2272d;
  --theme-hover: #000;
  --color-header: #1b1f61;
  --color-body: #2d274e;
  --accents-1: #e6f6f0;
  --accents-2: #faf5e8;
  --accents-3: #dee6fd;
  --accents-4: #eae1fb;
  --accents-5: #fae8f1;
  --accents-6: #fde7de;
  --accents-7: #09094f;
  --accents-8: #9563f7;

  /* Link
      -------------------------- */
  --link-color: var(--acceents-7);
  --link-hover-color: var(--theme-red);

  /* Border
      -------------------------- */
  --border-width-base: 1px;
  --border-style-base: solid;
  --border-color-base: var(--accents-7);
  --border-color-hover: var(--color-header);
  --border-radius-base: 8px;
  --border-radius-small: 4px;
  --border-radius-circle: 100%;

  /* Box-shadow
      -------------------------- */
  --box-shadow-base: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  --box-shadow-dark: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.12);

  /* Icon
      -------------------------- */
  --icon-color: var(--color-header);
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
optgroup,
select,
textarea {
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-header);
  font-family: "Poppins", ui-serif, Georgia, Cambria, "Times New Roman", Times,
    serif;
}

img {
  width: 100%;
}

h1 {
  padding: 0 !important;
  margin: 0;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 56px;
  line-height: 62px !important;
  letter-spacing: -2.4px !important;
}

img {
  pointer-events: none;
  vertical-align: middle;
  border-style: none;
}

p {
  padding: 0 !important;
  margin: 10px 0;
  font-family: "Poppins", "Arial", sans-serif !important;
  font-style: normal !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px !important;
  letter-spacing: -0.3px !important;
  color: var(--color-body);
}

h2 {
  font-size: 36px !important;
  line-height: 44px !important;
  letter-spacing: -1.5px !important;
  font-weight: 600 !important;
}

h2,
h3 {
  padding: 0 !important;
  margin: 20px 0;
  font-style: normal !important;
}

h3 {
  font-size: 22px !important;
  line-height: 30px !important;
  letter-spacing: -0.55px !important;
  font-weight: 500;
}

.platform-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-contact {
  font-size: 16px;
  font-weight: 400 !important;
  margin: 0 50px;
}

.platform-logo {
  margin: 10px;
}

@media (max-width: 768px) {
  .platform-logo {
    width: 70px;
    height: 70px;
  }

  .nav-contact {
    margin: 5px;
  }
}

.header-contact {
  margin-left: 30px;
}

.gradient-text {
  background-image: linear-gradient(to right, #a405ef, #b920d5, #dc30c6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hide the full address by default */
.full-address {
  display: none;
}

/* Show full address for larger screens */
@media (min-width: 769px) {
  .full-address {
    display: inline;
  }
}

@media (max-width: 768px) {
  /* Vertically align the elements for smaller screens */
  .nav-contact .nav-platform-link,
  .nav-contact .header-contact {
    display: block; /* Stack elements vertically */
    margin: 0 0 8px 0; /* Add some space between them for better visual separation */
  }
}

.nav-platform-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(to right, #a405ef, #b920d5, #dc30c6);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0% 100%;
  transition: background-size 0.3s;
}

.nav-platform-link:hover {
  background-size: 100% 2px;
}

.platform-section {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .platform-section {
    margin-top: 20px;
  }
}

.platform-color-section {
  background-color: var(--section-background);
  padding-bottom: 60px;
}

.platform-button.align-right-button {
  margin-left: auto;
}

.platform-button {
  text-decoration: none !important;
  width: 220px;
  background: #c2272d;
  border: none;
  border-radius: 5px;
  color: white;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: linear 0.25s;
  transition: linear 0.25s;
  cursor: pointer;
}

.platform-button:hover {
  color: white;
  background: black;
}

.nav-section {
  height: auto;
  background-color: var(--hero-background);
  border-bottom: 2px solid white;
}

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

.hero-bg {
  position: relative;
  background-color: var(--hero-background);
  z-index: 2;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: calc(100% + 100px);
  height: 100px;
  background-color: var(--hero-background);
  transform: skewY(-2deg);
  z-index: -1;
}

.hero {
  margin: 40px 10px;
  align-items: center;
}

.platform-title {
  margin: 30px 0;
}

@media (max-width: 768px) {
  .platform-title {
    margin: 15px 0;
    font-size: 40px;
  }
}

.hero-description {
  margin: 20px 0;
}

.hero-description-text {
  margin-top: 40px;
  font-weight: 600;
  color: #c2272d;
}

.hero-action {
  margin: 20px 0 0 0;
}

.image-button {
  margin: 10px 0 0 0;
}

@media (max-width: 768px) {
  .image-button {
    width: 61%;
    margin: 30px 0 0 0;
  }
}

.text-center {
  align-items: center;
  justify-content: center;
}

.red-text {
  color: var(--theme-red);
}

.service-list-item {
  height: 500px;
  margin: 25px;
  padding: 10px 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column; /* Stacks the items vertically */
  justify-content: space-between; /* Distributes space between items */
  align-items: center; /* Horizontally centers all items */
  text-align: center; /* Centers the text inside h3 and p */
}

.service-title {
  min-height: 60px;
}

.service-description {
  min-height: 130px;
}

.reason-description p {
  min-height: 130px;
}

.course-img {
  min-height: 220px;
  width: 80%;
  display: flex;
  align-items: center; /* Vertically centers the image */
  justify-content: center; /* Horizontally centers the image */
}

.color-square-1 {
  background-color: var(--accents-1);
}

.color-square-2 {
  background-color: var(--accents-2);
}

.color-square-3 {
  background-color: var(--accents-3);
}

.color-square-4 {
  background-color: var(--accents-4);
}

.color-square-5 {
  background-color: var(--accents-5);
}

.color-square-6 {
  background-color: var(--accents-6);
}

.white-square {
  background-color: #fff;
}

.reason-list-item {
  width: auto;
  margin: 20px 10px;
  padding: 10px 30px;
  border-radius: 15px;
}

.platform-marketing {
  width: 80%;
}

.marketing-img {
  width: 200px;
  height: auto;
  margin-left: 5%;
  margin-top: 10%;
}

.service-action {
  color: var(--accents-7);
  text-decoration: none;
  -webkit-transition: linear 0.25s;
  transition: linear 0.25s;
  cursor: pointer;
}

.service-action:hover {
  color: var(--accents-8);
  text-decoration: none;
}

.platform-link {
  color: var(--accents-7);
  text-decoration: none;
  -webkit-transition: linear 0.25s;
  transition: linear 0.25s;
  cursor: pointer;
}

.platform-link:hover {
  color: var(--accents-8);
  text-decoration: none;
}

.fa-platform {
  margin-right: 10px;
}

.platform-image-link {
  display: inline-block;
  position: relative;
  padding: 2px;
  overflow: hidden;
  -webkit-transition: linear 0.25s;
  transition: linear 0.25s;
  cursor: pointer;
}

.platform-image-link:hover {
  box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}

.platform-section-header {
  width: 80%;
  margin: 0 auto;
}

.section_five .section_title {
  color: #fff !important;
}
