:root {
  --primary: #ff9a0a;
  --secondary: #354F8E;
  --light: #EFF5F9;
  --dark: #004004;
}

header {
  background-color: #f1f1f1;
  padding: 5px;
  text-align: left;
}

div {
  display: inline-block;
  vertical-align: top;
}

div:first-child {
  margin-bottom: 0.5px;
}

.container {
  display: flex;
  align-items: center;
}

.image-section {
  flex: 1;
  margin-right: 20px;
}

.text-section {
  flex: 1;
}

.container2,
img {
  margin-left: 10px;
  width: 50px; /* Add this line to specify the image width */
  height: 50px; /* Add this line to specify the image height */
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #343a40;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-container a {
  color: #fff;
  text-decoration: none;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.center-content {
  text-align: center;
}

.footer-container a:hover {
  text-decoration: underline;
}

.footer-container .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.footer-container .footer-links a {
  margin: 50px;
}

.footer-container .newsletter-form {
  margin-top: 20px;
}

.footer-container .newsletter-form .input-group {
  display: flex;
  align-items: center;
}

.footer-container .newsletter-form .form-control {
  border-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.footer-container .newsletter-form .btn {
  border-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.footer-container .social-icons {
  margin-top: 20px;
}

.footer-container .social-icons .btn {
  margin-right: 20px;
}

.footer-bottom {
  background-color: #343a40;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #6c757d;
}

p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}



.hero-header {
  background: url(../img/header2.jpeg.jpg) top right no-repeat;
  background-size: cover;
  padding-bottom: rem;
}

.hero1-header {
  background: url(../img/MI1.jpg) top right no-repeat;
  background-size: cover;
  padding-bottom: rem;
}

.hero2-header {
  background: url(../img/Tablet2.jpg) top right no-repeat;
  background-size: cover;
  padding-bottom: rem;
}

.hero3-header {
  background: url(../img/MI2.jpg) top right no-repeat;
  background-size: cover;
  padding-bottom: rem;
  font-size: 1.5rem;
}

.btn {
  font-weight: 700;
  transition: .5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0.  8px 6px -6px #555555;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.btn-light {
  background-color: var(--light);
  color: #000;
}

.btn-dark {
  background-color: var(--dark);
  color: #fff;
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline-secondary {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid var(--light);
  color: var(--light);
}

.btn-outline-dark {
  background-color: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
}

.btn-block {
  display: block;
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-light {
  color: var(--light);
}

.text-dark {
  color: var(--dark);
}
/* Adjustments for Services section */

.service-item {
  display: flex;
  align-items: center;
}

.content-image {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

.text-box {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.text-box h4 {
  margin-bottom: 10px;
}

.text-box p {
  margin: 0;
}

.text-box a {
  display: inline-block;
  margin-top: 10px;
}
.key-features li {
  list-style-type: none;
}

.key-features li::before {
  content: "\2022"; /* Add a bullet point before each list item */
  color: #000; /* Set the color of the bullet point */
  display: inline-block;
  width: 1em; /* Adjust the width of the bullet point */
  margin-left: -1em; /* Align the bullet point with the text */
}

/* Adjust logo size */
.navbar-brand img {
  max-width: 300px;
  height: 157px;
}

/* Adjust hero section */
.hero1-header {
  padding-top: 50px; /* Adjust as needed */
  padding-bottom: 50px; /* Adjust as needed */
}

.hero1-header h1 {
  font-size: 4.5rem; /* Adjust as needed */
  margin-bottom: 2rem; /* Adjust as needed */
}

/* Additional styles for buttons if needed */
/*
.btn {
  /* Custom button styles */


/* Adjustments for responsiveness */
@media (max-width: 767px) {
  .service-item {
    flex-direction: column;
  }
  
  .content-image,
  .text-box {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .content-image img {
    margin: 0 auto;
  }
}


/* Adjustments for medium-sized screens */
@media (max-width: 768px) {
  .service-item .service-icon {
    font-size: 1.5rem;
  }
  
  .service-item h4 {
    font-size: 1.2rem;
  }
  
  .service-item p {
    font-size: 0.9rem;
  }
}

/* Adjustments for small-sized screens */
@media (max-width: 576px) {
  .service-item .service-icon {
    font-size: 1rem;
  }
  
  .service-item h4 {
    font-size: 1rem;
  }
  
  .service-item p {
    font-size: 0.8rem;
  }
}

.segment-heading {
  text-align: center;
  margin-bottom: 20px;
}

.navbar-light .navbar-nav .nav-link {
  font-family: 'Jost', sans-serif;
  position: relative;
  margin-left: 30px;
  padding: 30px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: .5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: .5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link  {
    margin-left: 0;
    padding: 10px 0;
  }
}




/* Adjustments in segments index context */

.service-item {
  padding: 30px;
}

.service-item img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 767px) {
  .service-item {
    padding: 20px;
  }
}

/* Adjustments in segments index context */

.service-item {
  padding: 30px;
}

.service-item img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 767px) {
  .service-item {
    padding: 20px;
  }
}

/* Alignment in segments header index context */
.py-5 {
  padding-top: -2 !important;
  padding-bottom: 0 !important;
}

.service-item {
  margin-bottom: 0;
}

/*key feature font size*/

.key-features li {
  font-size: 20px;
}

