/* your styles go here */

/* overriding the body font */
.do-not-show {
 display:none !important;
}

.mar-left-right {
    padding: 50px;
}

.sec-card {
    background-color: #EB472B !important;
}

.fir-card {
    background-color: #000 !important;
}

.sec-title {
    color: #fff !important;
}

.wow {
    list-style: none;
    margin: 10px;
}

.navbar {
    padding: 20px;
}

.menu {
  display: flex;
  justify-content: flex-end; /* set justify-content to flex-end to align menu to the right */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-right: 20px;
}

.menu li:last-child {
  margin-right: 0;
}

.menu a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
}

.hamburger-icon {
  display: none;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

@media only screen and (max-width: 768px) {
  .menu {
    display: none;
  }

  .hamburger-icon {
    display: block;
    text-align: -moz-right;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .bar {
    width: 25px;
  }
}

