/* Root Variables */
:root {
    --max-width: 75%;
    --primary-color: #0099A1;
    --primary-hover: #008087;
    --secondary-color: #D5A00C;
    --secondary-hover: #b38401;
    --alternate :#f9f9f9;
    --alternate-hover: #ffd86a;
    --font-family: Poppins, Arial;
    --gap: 16px;
    --light-bg: #f9f9f9;
    --text: #01232C;
  }
  
  /* Global Styles */
  body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background: var(--light-bg);
    color: var(--text);
    font-size: 16px;
  }

* {letter-spacing: 0.5px;}
::selection {color: inherit;background-color: #f2f2f2;}
.nu {overflow: hidden;position: absolute;height: 0;font-size: 0;}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s all;
}
a:hover {
    color: var(--primary-color);
}

  /* Top Bar */
  .top-bar {
    position: sticky;
    top: 0;
box-sizing: border-box;
border-top: 2px solid var(--secondary-color);
    background: var(--text);
    color: white;
    padding: 0.5em 0;
    font-size: 14px;
    z-index: 1000;
  }
  .top-bar .social-icons i {
    margin-left: 8px;
    cursor: pointer;
  }
  
/* Header */
header {
    position: sticky;
    top: 36px;
    background:var(--light-bg);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center contents */
  }
  
  /* Logo */
  .logo {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center; /* Center logo content */
  }
  .logo img {
    height: 80px;
    transition: 0.3s all;
    padding: 15px 0; /* Remove unnecessary padding for consistency */
  }
  .smallLogo {
    height: 55px!important;
  }
  /* Container for header */
  .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Space between logo and nav */
    align-items: center; /* Ensure vertical centering */
    gap: 2em;
    position: relative;
    z-index: 10;

  }
  
  /* Main Navigation */
  .main-nav ul {
    display: flex;
    gap: var(--gap); /* Ensure spacing between items */
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 11;
  }
  
  .main-nav li {
    position: relative;
    cursor: pointer;
    padding: 5px 10px; /* Adjust padding for better centering */
    margin: 0 5px; /* Add some spacing between items */
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center; /* Center text inside each navigation item */
  }
  .main-nav li:hover {
    color: var(--primary-color);
  }
  .callNow {
    box-sizing: border-box;
    padding: 8px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    color: var(--light-bg);
    transition: 0.3s all;
  }
  .callNow:hover {
    transform: scale(1.05);
color: var(--light-bg)!important;    
  }
  .callNow a:hover {
color: var(--light-bg)!important;
  }
  .dropdown {
    position: absolute;
    top: 110px;
    width: 100%;
    min-height: 200px;
    background-color: white;
    transition: 0.3s all;
    left: 0;
    padding: 30px 0 40px 0;
    transform-origin: top; 
    transform: rotateX(90deg); 
    transition: transform 0.5s ease; 
  }
  .shrunk {
    top: 85px!important;
  }
  .dropdown h4 {
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 18px;
    color: var(--primary-color);
  }
  .dropdown .material-icons {
    font-size: inherit;
    color: var(--primary-color);
    width: 30px;
  }
  .dropdown ul li {
    box-sizing: border-box;
    padding: 8px;
    font-weight: 500;

  }
.active-class {
    transform: rotateX(0); 
}
  /* Hamburger Menu */
  .hamburger {
    display: none;
    cursor: pointer;
    outline: none;
  }
  .hamburger i {
    font-size: 40px;
    padding: 20px;
  }
  .dropdown ul {
    display: block;
    flex: 1 1 33%;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 0 0 30px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
  }
  .search {
    box-sizing: border-box;
    padding: 5px 15px;
    border-radius: 15px;
    border: thin solid #e2e3de;
    width: 50px;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    position: relative; /* Ensures the pseudo-element is positioned within the field */
}



  .search:focus {
    width: 150px;
  }
  /* Drawer Menu */
  .drawer {
    position: fixed;
    top: 133px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text);
    color: white;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease-in-out;
    z-index: 1100;
    display: none;
  }

  .drawer.open {
    left: 0;
  }
  .drawer ul {
    list-style: none;
    padding: var(--gap);
  }
  .drawer ul li {
    margin: 0 0 5px 0;
    padding: 1em;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .underlay {
    position: fixed;
    top: 147px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1099; /* Ensure it's behind the drawer */
    display: none; /* Initially hidden */
}
.showunder {
  display: block!important;
}
  /* Hero Section */
  .hero {
    text-align: left;
    padding: 100px 0;
    color: white;
    background-color: var(--primary-hover);
    background-image: url(../img/hero.jpg);
    background-attachment:fixed;
    height: 65vh;
    position: relative;
    display: flex;
    background-size: cover;
    border-bottom: 10px solid var(--secondary-color);
    overflow: hidden; /* Ensures the overlay doesn't extend outside the container */
}
.plans {
    background-color: var(--primary-hover);
    background-image: url(../img/hero5.jpg);
    background-attachment:fixed;
    position: relative;  
    padding: 150px 0;  
}
.hero::after,
.timeline-section::after,
.plans::after,
#footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black overlay */
    pointer-events: none; /* Ensures overlay doesn't block user interactions */
}
.plans ul {
    list-style: none;
    /* text-align: left; */
    padding: 0;
    margin: 30px 0 0 0;
}
.plans ul li {
  padding: 8px;
  margin: 0 0 3px 0;
  background: rgba(0, 0, 0, 0.03);
  font-size: 90%;
}
.hero h1 {
    font-size: 3em;
    line-height: 1.2em;
    margin: 0;
    padding: 0 0 0 30px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
}
  .hero span {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%); */
    z-index: 10;
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 2em;
  }



.hero strong,
.hero b {
    font-weight: 500;
    color: #e3fdff;
}


  #neuralCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0.5;
  }
  .cta-buttons button {
    margin: 0 8px 0 0;
    border: none;
    cursor: pointer;
    background: var(--primary-color);
    color: white;

  }
  .cta-buttons button.secondary-btn {
    background: var(--secondary-color);
  }
  .cta-buttons   .primary-btn,
  .primary-btn {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    box-sizing: border-box;

  }
  .btn2 {
    color: var(--secondary-color);
  }





  

  .clipped {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 80px), 50% 100%, 0% calc(100% - 80px))!important;
  }

  .clippedr {
    clip-path: polygon(50% 0%, 100% 80px, 100% 100%, 0% 100%, 0% 80px)!important;
}

  .active {
    color: var(--primary-color)!important;
  }


  /* Generic Form Styles */
.hero form {
    box-sizing: border-box;
    width: 70%;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.5s all;
}
.hero form:hover {
    border-left: 4px solid var(--secondary-color);
    background-color: rgba(0, 0, 0, 0.4);
}
.hero form:hover > .url {
    background-color: #f8edd0;
    transition: all 0.3s;
    
}

.hero form h3 {
    font-size: 24px;
    line-height: 32px;
    padding: 0;
    margin: 0 0 30px 0;
}
.hero form h3 b {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 28px;

}
input, select, textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 4px;
    outline: none;
    background-color: #f9f9f9;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #6200ee; /* Material Design purple */
    box-shadow: 0 0 4px rgba(98, 0, 238, 0.5);
    background-color: #ffffff;
    border: 1px solid #D5A00C;
}

button {
    padding: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color:var(--secondary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s all;
    border: 2px solid var(--secondary-color);
    box-sizing: border-box;
    font-size: 18px;
}
button:hover {
  background-color: var(--secondary-hover);
}
.button {
  padding: 8px;
  display: inline-block;
  margin-top: 15px;
  color: white;
  background-color: var(--secondary-color);
}
.button:hover {
  color: white!important;
}

.cards-section {
    padding: 60px 0;

}

.card {
  display: flex;
  flex-direction: column; /* Makes cards stretch */
  flex: 1 1 33.333%;
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  padding: 30px 0;
  border-bottom: 8px solid var(--primary-color);
  position: relative;
  align-items: stretch; 
}

.card:nth-child(odd) {
    border-bottom: 8px solid var(--secondary-color);
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
.card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}  
}

.card-content {
    padding: 30px;
    text-align: center;
}

.card-content h3 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 10px;
}

.card-content p {
    color: #757575;
    line-height: 1.6;
}

h3 {
  font-size: 18px;
}

section {
  transition: 0.3s;
}

.timeline-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 0;
    background-color: var(--primary-hover);
    background-image: url(../img/hero2.jpg);
    background-attachment:fixed;
    background-size: cover;
    position: relative;
}

.timeline-item {
    flex: 1 1 calc(50% - 40px); /* Each item takes 50% width minus gap */
    max-width: 400px; /* Optional max width for consistent card sizing */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.timeline-icon {
    background-color: #6200ee;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #757575;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-item {
        flex: 1 1 100%; /* Each item takes full width on smaller screens */
    }
}




.subcontain {
    box-sizing: border-box;
    padding: 30px;
    text-align: center!important;
    display: block;
    gap: 15px!important;
    z-index: 10;
    
}
.white {
    color: white;
}

.count {
  position: absolute;
  top: -32px;
  width: 55px;
  border-radius: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 35px;
  padding: 15px;
  font-weight: 600;
  color: #FFF;
  background-color: var(--primary-color);
  border: 4px solid white;
  line-height: 50px;
}
.count .material-icons {
  color: #FFF;;
}
.odd{
    background-color: var(--secondary-color);
}
.even {
    background-color: var(--primary-color);
}
.glow {
    box-shadow: 0 0 10px #111;
}
.content_block {
    position: relative;
    box-sizing: border-box;
    padding: 100px 0;
}

.content_block h2,
.h2,
.blogPost h2 {
    font-size: 30px;
    /* border-left: 4px solid var(--primary-color); */
    line-height: 34px;
    /* padding-left: 15px; */
    box-sizing: border-box;
}
.content_block h2::after,
.h2::after,
.blogPost h2::after {
    content: "";
    display: block;
    width: 250px;
    height: 5px;
    background-color: var(--primary-color); /* Adjust color as needed */
    margin-top: 30px; /* Space between text and underline */
}

.left_content, .right_content {
    flex: 1 1 60%; 
    text-align: left;
    box-sizing: border-box;
    padding: 60px 100px;
    position: sticky;
    top: 140px;
  }
  
  .right_content {
    flex: 1 1 40%; 
    overflow-y: auto; 
    padding: 0;
  }
  .content_block img {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .content_block b,
  .content_block strong {
    font-weight: 500;
  }

.plans .material-icons {
    font-size: 30px;
}
.plans button {
    margin-top: 30px;
}
.card-content strong {
    font-size: 140%;
}
.swoosh {
  width: 40%;
}

/* Footer Styling */
#footer {
    background-color: var(--text);
    color: #fff;
    padding: 100px 1em;
    text-align: left;
    background-attachment: fixed;
    background-image: url(../img/hero3.jpg);
    background-attachment:fixed;
    background-size: cover;
    position: relative;

  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    z-index: 10;
  }
  
  .footer-column {
    flex: 1 1 calc(33% - 2em); 
    box-sizing: border-box;
    padding: 1.5em;
    border-radius: 10px;
    z-index: 10;
  }
  
  .footer-column h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
    color: white;
    margin-top: 0;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin: 0.5em 0;
    border-left:5px solid var(--accent-color);
    padding: 0.5em;
    transition: 0.3s all;
    padding-left: 1em;
  }
  
  .footer-column a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
  }

  .footer-column .material-icons {
    font-size: inherit;
  }
  .footer-column ul li:hover {
    border-left:10px solid var(--accent-color);
    color: var(--accent-color);
  }
  
  .map-container {
    margin-top: 1em;
    border-radius: 8px;
    overflow: hidden;
  }
  .ftlogo {
    width: 60%;
    margin-bottom: 30px;
  }
  .footer-column iframe {
    position: relative;
    border-radius: 10px;
    opacity: 0.6;
    margin-top: 30px;
    transition: 0.3s all;
  }
  .footer-column iframe:hover {
    opacity: 0.9;
  }
  .base {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--text);
    color: white;
    padding: 1em;
  }

  /* Tag Cloud Styles */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0px;
  border-radius: 5px;
  margin: 10px 0;
  font-size: small;
}

.tag {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.tag:hover a {
color: var(--text);

}
.material-icons {
  color: inherit;
}

.service-matrix {
    max-width: var(--max-width);
    margin: 0 auto;
}

.feature-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.plan {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #ddd;
}

.included-title {
    font-weight: 600;
    flex: 2;
}

.plan-name {
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.detail .material-icons {
    font-size: 24px;
    color: green;
}

.detail.disabled {
    background-color: #eeeeee;
    color: #aaa;
}


.h2split {
  text-align: center;
  margin: 0 0 0 0;
  position: relative;
  z-index: 15;
  overflow: hidden;
}
.h2split span {
  background-color: var(--primary-color);
  padding: 15px 30px;
  /* position: relative; */
  display: inline-block;
  margin-top: 60px;
  border-radius: 10px;
  color:var(--light-bg);
  margin-bottom: 30px;

}

.service-matrix {
  width: 100%;
  margin: 0 auto;
  
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  background-color: white;
  padding: 2em;
  padding-bottom: 5em;
  position: relative;
  z-index: 15;
  margin-top: 0;
  border-radius: 10px;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 60px), 50% 100%, 0% calc(100% - 60px));

}


.service-matrix table {
  width: 100%;
  border: none;
  z-index: 10;
}

.service-matrix th, .service-matrix td {
  padding: 10px;
  text-align: center;
  border: none;
}

.service-matrix th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.service-matrix td .material-icons {
  font-size: 20px;
  color: green;
}

.service-matrix td.disabled {
  background-color: #eeeeee;
  color: #aaa;
}

/* Add subtle background colors for plans */
.service-matrix td:nth-child(2) {
  background-color: #e0f7fa; /* Light teal for Basic */
}

.service-matrix td:nth-child(3) {
  background-color: #e8f5e9; /* Light green for Pro */
}

.service-matrix td:nth-child(4) {
  background-color: #fff3e0; /* Light orange for Enterprise */
}

@media (max-width: 600px) {
  .service-matrix,
  .desktop {
    display: none;
  }
}

.tleft {
  text-align: left!important;
}

.third {
  width: 20%!important;
}

.check-icon,
.cancel-icon {
  font-size: 30px!important;
  opacity: 0.9;
}
.check-icon {
  color: var(--primary-color)!important;
}

.cancel-icon {
  color: var(--secondary-color)!important;
}

/* TOTOP  */
#toTop {
  /* opacity: 0; */
  transition: 0.5s all;
  position: fixed;
  bottom: -100%;
  right: 1em;
  z-index: 50;
  border: none;
  padding: 10px;
  padding-bottom: 3px;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 25;
  color: white;
}
#toTop:hover {
  transform: translateY(-5px);
}
.visible {
  bottom: 10px!important;
}
.gst {
  position: absolute;
  font-size: 12px;
  color: #888;
}

.finance_form {
  position: fixed;
  top: -150%;
  transition: 1s all;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #f4f4f4, white);
  width: 40%;
  z-index: 1005;
  box-sizing: border-box;
  padding: 30px;
  margin: 0 auto;
  text-align: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 60px), 50% 100%, 0% calc(100% - 60px));
}
.show_form {
  top: 2px!important;
}
.finance_form h3 {
  font-size: 30px;
}
.finance_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
  z-index: 1000; /* Just below the form */
  display: none;
  border-top: 2px solid var(--secondary-color);
}
.show_overlay {
  display: block;
}
.form-row {
  display: flex;
  /* gap: 20px; */
}

.form-group {
  box-sizing: border-box;
  padding: 8px;
  display: block;
  flex: 1;
  width: 100%;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, select, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: inherit;
  border-left: 2px solid var(--primary-hover);
}
.finance_form input {
  margin-bottom: 0;
}
.finance_form button {
  /* position: absolute; */
  width: 100%;
  padding: 8px 0 16px 0;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  border:none;
  transition: 0.3s all;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 60px), 50% 100%, 0% calc(100% - 60px));
}
.finance_form button:hover {
  background-color: var(--primary-color);
}
textarea {
  margin-bottom: 0;
}
.close_form {
  position: absolute;
  top: 0;
  right: 0;
  left: unset!important;
  transform: none!important;
  padding: 15px;
  
  cursor: pointer;
}

.touch {
  font-weight: 100;
  font-size: 60px;
}
.finance_form img {
  width: 100px;
}



.toggle-content {
  display: none;
  padding: 10px;
}

.toggle-content.visible {
  display: block;
}


.market {
  background-color: var(--alternate-hover)
}

.market h4 {
  background-color: ;
  border:2px solid var(--secondary-color);
  box-sizing: border-box;
  padding: 20px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s ease-in-out;
}
.market .material-icons {
   transition: 0.3s; 
}
.market h4:hover > .material-icons {
  transform: scale(1.5);
  /* color: var(--alternate);   */
}
.market h4:hover {
  /* border-color: var(--alternate); */
  color: var(--secondary-hover);
}
.market button {
  background-color: var(--secondary-color);
}
.market h2::after {
  background-color: var(--secondary-color);
}
.market .material-icons {
  color: var(--secondary-color);
  font-size: 1.5em;
}

.highlite {
  color: var(--secondary-color);
}
.highlight {
  background-color: #fff3e0!important;
}
.pri {
  color: var(--primary-color);
}
.sec {
  color: var(--secondary-color);
}

.subs .content_block:nth-child(even) {
  background-color: #f4f4f4;
}

.breadcrumb {
  background-color: var(--alternate-hover);
}
.breadcrumb ul {
  list-style: none;
  padding: 10px;
  display: flex;
  align-items: center;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.breadcrumb li i {
  font-size: 20px;
  margin-right: 5px;
  color: var(--primary-color); /* Material Icon color */
}

.breadcrumb li:not(:last-child)::after {
  content: "\f105"; /* FontAwesome right arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 10px;
  color: var(--text);
}

.breadcrumb a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}


.close_form .material-icons {
  font-size: 60px!important;
  
}
.center {
  text-align: center;
}
.subs .center .material-icons {
  font-size: 250px!important;
  color: var(--primary-color);
}

.fail, .success {
  position: relative;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 1em;
  background-color: #ace2b7;
}
.fail {
  background-color: #e2acac!important;
}
.closeMSG {
    position: absolute;
      top: 0;
      right: 0;
      font-size: 25px;
      padding: 16px;
      margin: 5px;
      cursor: pointer;
}
.blog {
  display: flex;
  flex-wrap: wrap;  
}
.blogPost {
  box-sizing: border-box;
  padding: 30px;
  text-align: left;
  flex: 1 1 25%;
}

.jobCard {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 15px;
  border: thin #e2e3de solid;
  text-align: left;
  margin-bottom: 8px;
  border-left: 5px solid var(--primary-color);
}
.jobCard:nth-child(even) {
  border-left: 5px solid var(--secondary-color);
}
.jobCard p {
  padding: 2px 0;
  margin: 0;
}

