/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --pricing-font: "Exo", sans-serif;
  ;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #040677;
  --accent-color: #698EDE;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #698EDE;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #698EDE;
}

.light-background {
  --background-color: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #090127;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .navmenu .btn-get-started {
    margin-left: 16px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .hero .hero-bg {
    display: none !important;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu .btn-get-started {
    display: none;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #090027;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .container .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
  color: white;
  text-align: center;
}

.section-title p {
  font-size: 30px;
  padding: 0;
  color: #BABABA;
  text-align: center;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.hero .hero-bg {
  position: absolute;
  margin-top: 200px;
  margin-left: 200px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  max-height: 840px;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #090027 58.09%, #0C0095 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  color: white;
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero p {
  color: white;
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-get-started {
  color: white !important;
  background: var(--accent-color);
  font-family: var(--heading-font) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  padding: 8px 28px 8px 28px !important;
  border-radius: 5px;
  transition: 0.5s;

  white-space: nowrap;

  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-schedule {
  font-size: 15px !important;
  font-family: var(--heading-font) !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: 0.5s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  padding: 8px 28px 8px 28px !important;
  border-radius: 5px;

  white-space: nowrap;

  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.btn-schedule:hover {
  color: var(--accent-color);
}

.btn-schedule:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-schedule {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero .hero-waves {
  display: block;
  position: absolute;
  width: 100%;
  height: 60px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #043640;
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #043640;
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #043640;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@media (max-width: 1199px) {

  .hero h1,
  .hero p {
    text-align: center;
  }

  .hero .actions {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Hero Footer Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  --background-color: #043640;
  --surface-color: #ffffff;
}

.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  padding: 30px 30px 25px 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
}

.stats .stats-item div {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.stats .stats-item div img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

.stats .stats-item span {
  font-size: 65px;
  display: block;
  font-weight: 700;
  color: white;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: white;
  font-family: var(--heading-font);
  font-size: 15px;
}

/*--------------------------------------------------------------
# Proposal/Applications Section
--------------------------------------------------------------*/
.proposal .features-item,
.applications .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.proposal .features-item+.features-item,
.applications .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {

  .proposal .features-item+.features-item,
  .applications .features-item+.features-item {
    margin-top: 40px;
  }
}

.proposal .features-item h3,
.applications .features-item h3 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 36px !important;
  color: #4B4B4B !important;
  margin-bottom: 45px;
}

.proposal .features-item ul,
.applications .features-item ul {
  list-style: none;
  padding: 0;
}

.proposal .features-item ul li,
.applications .features-item ul li {
  padding-bottom: 26px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #4B4B4B;
}

.proposal .features-item ul li:last-child,
.applications .features-item ul li:last-child {
  padding-bottom: 0;
}

.proposal .features-item ul i img,
.applications .features-item ul i img {
  padding-right: 16px;
}

.proposal .features-item p:last-child,
.applications .features-item p:last-child {
  margin-bottom: 0;
}

.applications .features-item p {
  font-size: 18px;
}

@media (max-width: 1199px) {

  .proposal .features-item h3,
  .applications .features-item h3 {
    font-size: 30px !important;
    text-align: center;
  }

  .proposal .features-item p,
  .applications .features-item p {
    text-align: justify;
  }

  .proposal .features-item .btn-get-started,
  .applications .features-item .btn-get-started {
    margin: 0 auto;
  }

  .proposal .features-item-image,
  .applications .features-item-image {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Integrations Section
--------------------------------------------------------------*/
.integrations {
  background: linear-gradient(180deg, #090027 58.09%, #0C0095 100%);
}

.integrations .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.integrations .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .integrations .features-item+.features-item {
    margin-top: 40px;
  }
}

.integrations .features-item h3 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 36px !important;
  color: white !important;
  margin-bottom: 45px;
}

.integrations .features-item ul {
  list-style: none;
  padding: 0;
}

.integrations .features-item ul li {
  padding-bottom: 26px;
  display: flex;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  color: white;
}

.integrations .features-item ul li div {
  display: flex;
  flex-direction: column;
}

.integrations .features-item ul li .emphasis {
  font-weight: 700;
  font-size: 20px;
}

.integrations .features-item ul li:last-child {
  padding-bottom: 0;
}

.integrations .features-item ul i img {
  margin-right: 24px;
}

.integrations .features-item p:last-child {
  margin-bottom: 0;
}

.integrations .features-item p {
  font-size: 18px;
}

@media (max-width: 1199px) {
  .integrations .features-item h3 {
    font-size: 30px !important;
    text-align: center;
  }

  .integrations .features-item p {
    text-align: justify;
  }

  .integrations .features-item .btn-get-started {
    margin: 0 auto;
  }

  .integrations .features-item-image {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .section-title h2 {
  color: var(--accent-color);
}

.pricing .section-title p {
  color: #959595;
}

.pricing .pricing-item {
  background-color: transparent;
  padding: 40px 40px;
  height: 100%;
  border: 1px solid #C6C6C6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.pricing .pricing-item .space {
  flex-grow: 1;
}

.pricing {
  margin-bottom: 0;
  padding-bottom: 0;
}

.pricing h3 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 24px;
  color: #4B4B4B;
  font-family: var(--pricing-font);
}

.pricing h3.off {
  color: #0C0095;
  margin-top: 32px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--pricing-font);
  margin-bottom: 0;
  color: #4B4B4B;
}

.pricing h4.off {
  color: #1A790F;
}

.pricing h4 sub {
  font-size: 15px;
  padding-right: 4px;
  bottom: 0;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 18px;
  font-weight: 400;
  color: #8C8C8C;
  min-height: 50px;
  font-family: var(--pricing-font);
}

.pricing .description.off {
  min-height: fit-content;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing .actions {
  display: flex;
  justify-content: center;
}

.pricing .highlight {
  font-weight: 700;
}

.pricing .subtitle {
  color: #8C8C8C !important;
}

.pricing .subtitle.off {
  min-height: 70px;
}

.pricing .discount {
  background: #698EDE;
  border-radius: 10px;
  font-weight: 400;
  font-size: 25px;
  text-align: center;
  color: #FFFFFF;
  padding: 10px 40px 10px 40px;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 1199px) {

  .pricing h3,
  .pricing h4,
  .pricing .description,
  .pricing .subtitle {
    text-align: center;
  }

  .pricing .subtitle.off {
    min-height: fit-content;
    margin-bottom: 20px;
  }

  .pricing .discount {
    font-size: 18px;
    padding: 5px 20px 5px 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  margin-top: 0;
  padding-top: 8px;
}

.contact .container {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 60px;
}

.contact h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  font-size: 36px !important;
  color: #333333 !important;
  margin-bottom: 45px;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact ul li {
  padding-bottom: 16px;
  display: flex;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.contact ul li div {
  display: flex;
  flex-direction: column;
}

.contact ul li .emphasis {
  font-weight: 700;
  font-size: 20px;
}

.contact ul li:last-child {
  padding-bottom: 0;
}

.contact ul i img {
  margin-right: 14px;
}

.contact p:last-child {
  margin-bottom: 0;
}

.contact p {
  font-size: 18px;
}

@media (max-width: 1199px) {
  .contact h3 {
    font-size: 30px !important;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Security Section
--------------------------------------------------------------*/
.security {
  --background-color: #eef8ff;
}

.security h3 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  max-width: 580px;
  font-size: 36px !important;
  color: #4B4B4B !important;
  margin-bottom: 45px;
}

.security ul {
  list-style: none;
  padding: 0;
}

.security ul li {
  padding-bottom: 24px;
  display: flex;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  color: #4B4B4B;
}

.security ul li div {
  display: flex;
  flex-direction: column;
}

.security ul li .emphasis {
  font-weight: 700;
  font-size: 20px;
}

.security ul li:last-child {
  padding-bottom: 0;
}

.security ul i img {
  margin-right: 14px;
}

.security p:last-child {
  margin-bottom: 0;
}

.security p {
  font-size: 18px;
}

.security .security-item {
  display: flex;
  flex-direction: column;
}

.security .security-item span {
  font-weight: 700;
  font-size: 18px;
  color: #333333;
}

.security .security-item img {
  margin-bottom: 16px;
  max-width: 120px;
}

.security .security-item p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

@media (max-width: 1199px) {
  .security h3 {
    font-size: 30px !important;
    text-align: center;
  }

  .security .security-item span,
  .security .security-item p {
    text-align: center;
  }

  .security .security-item {
    padding-right: 0;
    justify-content: center;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# SupFooter Section
--------------------------------------------------------------*/
.supfooter {
  background: linear-gradient(180deg, #090027 58.09%, #0C0095 100%);
  padding-bottom: 0;
}

.supfooter .container img {
  max-width: 100%;
}
