.evma_header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: #fff;
  height: 120px;
}
.evma_header_section .evma_header {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 16px;
  padding: 8px 16px;
}
.evma_header_section .evma_header .evma_header_logo {
  margin-right: 32px;
}
.evma_header_section .evma_header .evma_header_logo img {
  max-width: 120px;
}
.evma_header_section .evma_header .evma_header_items {
  display: flex;
}
.evma_header_section .evma_header ul {
  padding: 16px;
  display: flex;
  list-style: none;
  margin: 0;
}
.evma_header_section .evma_header ul li {
  list-style: none;
  margin-right: 24px;
  margin-bottom: 0;
}
.evma_header_section .evma_header ul li a {
  color: black;
  font-weight: bold;
  text-decoration: none;
  list-style: none;
  display: block;
  margin-bottom: 0;
}

.evma_content_section {
  margin-top: 140px;
}

.evma_hero_section {
  height: calc(100vh - 120px);
  width: calc(100% - 32px);
  margin-left: 16px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: linear-gradient(135deg, hsl(220, 75%, 25%) 0%, hsl(215, 80%, 45%) 50%, hsl(205, 90%, 60%) 100%);
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}
.evma_hero_section h1 {
  font-size: 60px;
  line-height: 72px;
  color: white;
  font-weight: bold;
}
.evma_hero_section h4 {
  font-size: 24px;
  line-height: 28px;
  color: white;
  font-weight: normal;
}
.evma_hero_section img {
  border-radius: 12px;
}
.evma_hero_section .evma_hero_section_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.features_section {
  margin-bottom: 100px;
}
.features_section .col-md-4 {
  margin-bottom: 30px;
}
.features_section .evma_card {
  height: 100%;
}

.contact_section {
  background: linear-gradient(135deg, hsl(234, 12%, 97%), hsl(0, 0%, 100%));
  padding-top: 64px;
  padding-bottom: 64px;
}

footer {
  padding: 32px;
  background: hsl(220, 13%, 18%);
}
footer p {
  text-align: center;
  color: white;
  font-weight: bold;
}

.evma_section_title {
  text-align: center;
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 36px;
}
.evma_section_title .evma_section_title_subtitle {
  color: hsl(220, 75%, 25%);
}

.evma_card {
  border-radius: 8px;
  border: 1px solid hsl(234, 12%, 91%);
  padding: 24px;
  margin-bottom: 24px;
}
.evma_card h5 {
  margin-bottom: 24px;
  font-weight: bold;
}
.evma_card p {
  color: hsl(220, 9%, 46%);
  margin-bottom: 0;
}
.evma_card.white {
  background: white;
}
.evma_card.gradient {
  background: linear-gradient(135deg, hsl(220, 75%, 25%) 0%, hsl(215, 80%, 45%) 50%, hsl(205, 90%, 60%) 100%);
}
.evma_card.gradient h5, .evma_card.gradient p {
  color: white;
}

.evma_button {
  display: inline-flex;
  background: white;
  border-radius: 8px;
  padding: 6px 12px;
  border: 1px solid hsl(234, 12%, 91%);
  color: black;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.about_section {
  padding: 64px 0;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 992px) {
  .evma_hero_section h1 {
    font-size: 40px;
    line-height: 52px;
  }
  .evma_hero_section h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 776px) {
  .evma_hero_section {
    height: auto;
    min-height: calc(100vh - 80px);
    width: calc(100% - 32px);
    margin-left: 16px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: linear-gradient(135deg, hsl(220, 75%, 25%) 0%, hsl(215, 80%, 45%) 50%, hsl(205, 90%, 60%) 100%);
    display: flex;
    align-items: center;
    margin-bottom: 120px;
  }
  .evma_hero_section .evma_hero_section_content {
    margin-bottom: 30px;
  }
  .evma_section_title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  .evma_header_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 16px;
    height: 65px;
    background: white;
  }
  .evma_header_section .evma_header {
    display: flex;
    justify-content: space-between;
    border-radius: 0;
    padding: 0;
  }
  .evma_header_section .evma_header .evma_header_logo {
    margin-right: 32px;
  }
  .evma_header_section .evma_header .evma_header_logo img {
    max-width: 80px;
  }
  .evma_header_section .evma_header .evma_header_items {
    display: flex;
  }
  .evma_header_section .evma_header .evma_header_menu {
    position: fixed;
    top: 60px;
    left: 0;
    height: 0;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    pointer-events: none;
    overflow: hidden;
    padding: 0 15px;
  }
  .evma_header_section .evma_header .evma_header_menu li {
    margin-bottom: 15px;
  }
  .evma_header_section .evma_header .evma_header_menu li:first-child {
    margin-top: 20px;
  }
  .evma_header_section .evma_header .evma_header_menu.active {
    height: calc(100vh - 60px);
    pointer-events: auto;
    opacity: 1;
  }
  .evma_header_section .evma_header .evma_header_hamburger {
    cursor: pointer;
  }
  .evma_header_section .evma_header .evma_header_hamburger span {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: black;
    margin-bottom: 4px;
    display: block;
  }
  .evma_header_section .evma_header .evma_header_hamburger span:first-child {
    width: 20px;
  }
  .evma_header_section .evma_header .evma_header_hamburger span:nth-child(2) {
    width: 25px;
  }
  .evma_header_section .evma_header .evma_header_hamburger span:last-child {
    margin-bottom: 0;
  }
  .evma_content_section {
    margin-top: 80px;
  }
}
body.scrolled .evma_header_section {
  background: #fff; /* solid background when scrolling */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/*# sourceMappingURL=styles.css.map */
