.container {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

header.nav-sticky .top-bar {
  display: none;
}

.benefits-items {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  transition: all ease 0.3s;
}

li {
  list-style: none;
}

.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: 600ms ease-in-out 0s normal none 1 running nav-animation;
  z-index: 90000;
  box-shadow: 0 2px 15px -6px rgba(0, 0, 0, 0.2);
}

@keyframes nav-animation {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0);
  }
}
.nav-animation {
  animation-name: nav-animation;
}

header *, footer * {
  margin: 0;
  box-sizing: border-box;
}
header .w-100, footer .w-100 {
  width: 100%;
}
header ul, footer ul {
  padding: 0px;
  margin: 0px;
}
header body, footer body {
  font-family: "Montserrat", sans-serif;
}
header h1, header h2, header h3, header h4, header h5, header h6, header p, footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer p {
  padding: 0px;
  margin: 0px;
}

header .container::before, header .container::after {
  display: none;
}

footer {
  overflow: hidden;
}
footer p {
  font-family: "Montserrat", sans-serif;
}
footer .ft-in h4 {
  font-family: "Montserrat", sans-serif;
}
footer .ft-icn {
  display: flex;
  align-items: center;
}

/* =========  Responsive MIN WIDTH  ========= */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .benefits-items {
    justify-content: start;
  }
  .benefits-items li {
    flex: 0 0 48%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1080px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1080px;
  }
}
/* =========  Responsive MAX WIDTH  ========= */
@media (max-width: 991px) {
  .top-bar .top-right {
    display: none;
  }
}
@media (max-width: 767px) {
  #myModal1 .vdo {
    max-width: 100% !important;
  }
  .benefits {
    overflow: hidden;
  }
  .content-wrapper {
    overflow: hidden;
  }
}
@media (max-width: 420px) {
  .top-bar ul li {
    margin-right: 15px;
  }
  .top-bar ul li a {
    font-size: 14px;
  }
}/*# sourceMappingURL=header-footer.css.map */