@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
@keyframes slider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 7));
  }
}
.slider {
  border-radius: 8px;
  height: 100px;
  margin: 20px 0;
  overflow: hidden;
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.slider::before, .slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: slider-scroll 30s linear infinite;
  display: flex;
  width: calc(280px * 2 * 7);
}
.slider .slide {
  height: 100px;
  width: 280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.card {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.125);
  padding: 30px;
  margin: 50px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #edf0f1;
  color: #1a1a1d;
}

header {
  display: flex;
  justify-content: space-around;
  position: fixed;
  width: 100%;
  top: 0;
  height: 80px;
  align-items: center;
  padding: 0 5%;
  background-color: #1a1a1d;
  z-index: 2;
}

footer {
  display: flex;
  height: 300px;
  bottom: 0;
  width: 100%;
  background-color: #1a1a1d;
  align-items: center;
  padding: 30px 10%;
  color: #edf0f1;
  justify-content: space-between;
  flex-direction: column;
}
footer a {
  text-decoration: none;
  color: #edf0f1;
  font-weight: 500;
}

h1 {
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
}

p {
  padding: 10px 0;
}

.ng {
  pointer-events: none;
}

.logo {
  height: 80px;
  cursor: pointer;
}

.content {
  max-width: 800px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
}

.mi,
.cta,
.bb .overlay__content a {
  font-weight: 500;
  color: #edf0f1;
  text-decoration: none;
}

.nav__links {
  list-style: none;
  display: flex;
}
.nav__links .li .bu, .nav__links .li a {
  padding: 0 20px;
}
.nav__links .li .bu:hover, .nav__links .li a:hover {
  color: #084b7a;
}

.cta, .bb {
  padding: 9px 25px;
  background-color: #084b7a;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out 0s;
}
.cta:hover, .bb:hover {
  background-color: rgba(8, 75, 122, 0.8);
}

.menu {
  display: none;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  right: 0;
  top: 0;
  background-color: #1a1a1d;
  overflow-x: hidden;
  transition: width 0.5s ease 0s;
}
.overlay--active {
  width: 100%;
}
.overlay__content {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.overlay a {
  padding: 15px;
  font-size: 36px;
  display: block;
  transition: color 0.3s ease 0s;
}
.overlay a:hover, .overlay a:focus {
  color: #084b7a;
}
.overlay .close {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  color: #edf0f1;
}

.mi {
  display: block;
  float: none;
}

.az {
  position: relative;
  width: auto;
}

.uk {
  max-height: 0 !important;
}

.ax {
  position: absolute;
  background-color: #1a1a1d;
  transform: translate(0%, 30px);
  overflow: hidden;
  max-height: 120px;
  left: 0;
  right: 0;
  transition: max-height 0.25s;
  text-align: center;
}
.ax a {
  padding: 10px !important;
}

button, a {
  border: 0;
  font-family: inherit;
  font-weight: 500;
  font-size: inherit;
  color: #edf0f1;
  background-color: inherit;
  text-decoration: none;
}

.c {
  text-align: center;
}

hr {
  border: none;
  height: 1px;
  background-color: #edf0f1;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .close {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
@media only screen and (max-width: 800px) {
  .content {
    padding: 30px 0;
  }
  .card {
    min-height: 0;
    border-radius: 0;
  }
  .nav__links,
.cta {
    display: none;
  }
  .menu {
    display: initial;
  }
}
