*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}


a {
  color: black;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 14px;
}

a:hover {
  text-decoration: none;
  color: black;
}

.mb-4 {
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Styling starts here */
body {
  /* background: #222222; */
  font-family: Arial, Helvetica, sans-serif;
}


.nav-wrapper {
  padding: 20px;
  color: black;
  background-color: white;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  /* height: 100px; */
}

/* NAVBAR DESKTOP */
.navbar-desktop {
  display: flex;
  justify-content: right;
}

/* ends */
/* Nav-links left  */

.navlinks-left {}

.navlinks-left ul {
  display: flex;
  margin-bottom: 0;
  align-content: center;
  list-style: none;
}

.navlinks-left li {
  margin: 10px;

  /* border: 1px solid white; */
}

.navlinks-left li a {
  display: inline-block;
  padding: 10px 15px;
  color: black;
}

/* NAV LINKS RIGHT */

.navlinks-right ul {
  display: flex;
  margin-bottom: 0;
  list-style: none;
}

.navlinks-right li {
  margin: 10px;
}

.navlinks-right li a {
  display: inline-block;
  padding: 10px 15px;
  color: black;
}

.logo {
  align-self: center;
  padding-left: 10px;
  float: left;
}

.logo img {
  width: 150px;
}

/* Nav for mobile */
.navbar-mobile {
  display: flex;
  justify-content: space-between;
  display: none;
  position: relative;
  color: white;
}

.nav-toggle {
  position: relative;
  z-index: 11;
  margin-top: 10px;

}

.nav-toggle .line {
  height: 2px;
  margin-bottom: 5px;
  width: 30px;
  background-color: black;
  display: block;
}

.nav-toggle span {
  transition: transform 0.5s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(42deg) translateY(10px) translateX(10px);
  transition: transform 0.5s;
}

.nav-toggle.open span:nth-child(2) {
  background-color: transparent;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-42deg);
  transition: transform 0.5s;
}

.menu-drawer {
  position: fixed;
  background-color: white;
  width: 100%;
  left: 0;
  top: -100%;
  padding: 20px 50px;
  transition: top 2s;
  z-index: 10;
}

.menu-drawer.show {
  top: 65px;
  transition: top 0.5s;
}

.menu-drawer ul {
  list-style: none;
}

.menu-drawer li {
  margin-bottom: 20px;
}

.menu-drawer a {
  color: black;
}

/* Nav for mobile ends */


/* BANNER STARTS */

.banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../imgs/banner.jpg);
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.heading-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 50%;
  margin: auto;
}

.heading {
  font-size: 1.5em;
  color: white;
  font-family: dd, sans-serif;
  text-align: center;
}

@media screen and (max-width: 850px) {
  .heading-box {
    max-width: 90%;
  }

  .heading {
    font-size: 1em;
  }
}

/* BANNER ENDS */

.title {
  color: #9b1e18;
}

/* Sec 1 starts here  */
.latest-sec {
  background-color: #ffffff;
  height: auto;
  /* margin-top: 100px; */
}

.content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 60px;
}

@media screen and (max-width: 1000px) {
  .content {
    max-width: 80%;
    margin: auto;
  }
}


.title {
  font-size: 25px;
  font-family: sans-serif !important;
  font-weight: bold;
  letter-spacing: 5px;
}

.subtitle {
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
}

.development-para {
  max-width: 800px;
  text-align: justify;
  padding: 0 4px;
}

.customer-list {
  max-width: 600px;
  margin: auto;
  margin-top: 20px;
}


.customer-list ul li {
  float: left;
  margin-right: 25px;
}

.divide {
  width: 150px;
  height: 2px;
  background-color: rgba(92, 105, 126, 0.2);
}


/* FOOTER SEC STARTS HERE ----------------- */
#footer {
  background-color: #495678;
  color: white;
  text-align: center;
  padding: 50px 0px;
  font-weight: bolder;
}

#footer a {
  color: white;
}

/* FOOTER SEC ENDS HERE ------------ */

/* Media Query Css */

@media screen and (max-width: 1000px) {
  .navbar-desktop {
    display: none;
  }

  .navbar-mobile {
    display: flex;
  }

  .nav-wrapper {
    height: 66px;
  }

  #nav-bar .logo img {
    display: none;
  }
}


.latest-sec {
  background-image: url(../imgs/bg-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 5px;
}



.latest-sec1 {
  background-color: #ffffff;
  height: auto;
  /* margin-top: 100px; */
}

.active {
  color: #495678;
  font-weight: bolder;
}

.top-container {
  box-sizing: border-box;
  content: "";
  clear: both;
  display: table;
  width: 100%;
  margin-top: 80px;
}

.sec-left {
  float: left;
  width: 50%;
}

.sec-right {
  float: left;
  width: 50%;

}

@media screen and (max-width: 800px) {
  .sec-left {
    width: 100%;
  }

  .sec-right {
    width: 100%;

  }
}

.ceo {
  float: left;

}

.ceo img {
  width: 150px;
}

.justify {
  text-align: justify;
}

.color {
  color: blue;
}


.image-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: auto;
  margin-bottom: 50px;
  margin-top: 50px;
}

.image-container {
  flex: 0 10%;
  padding: 10px;
  border: 1px solid grey;
  margin: 5px;
  height: auto;
  opacity: 0.8;
  cursor: pointer;
}

.image-container:hover {
  opacity: 1;
}

.image-container img {
  width: 100%;
  height: 100%;
  height: auto;
}

@media screen and (max-width: 800px) {
  .image-container {
    flex: 0 25%;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f2f2f2;
  color: black;
}

.left-align {
  text-align: left;
}

.list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: left;
  margin-top: 50px;
  margin-bottom: 60px;
  max-width: 50%;
  margin: auto;
}

.list ul {
  padding: 0;
  padding-left: 40px;
}

.list li {
  text-align: left;
  margin-bottom: 10px;
}