@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

* {
  font-family: "Inter", sans-serif;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
@media (prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}
body {
  background-color: white;
  margin: 0px;
  overflow-x: hidden;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
}
a {
  text-decoration: none;
  color: lightblue;
}
.abouttag {
  color: blue;
  font-size: 20px;
}
h1 {
  margin: 0px;
  font-size: 2.3rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.3rem;
}

/* at this point, just use p tags */
h4 {
  font-size: 1.1rem;
  margin-bottom: 0px;
}

p {
  font-size: 1rem;
}

section {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 0.1vh;
}

.white {
  color: #fafafa;}

.black {
  color: black;
}
.checked {
  color: orange;
}


.Navbar {
  background-color: #333333;
  height: min-content;
  width: 100%;
  margin: 0px;
  padding: 20px;
  padding-left: 20px;
  display: block;
}

.Navbar > span > a {
  margin: 20px;
  font-size: 1rem;
  text-decoration: none;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}
#more {
  display: none;
}

.bottom {
  position: absolute;
  bottom: 0;
}

.fixed-bottomC {
  position: fixed;
  bottom: 0;
}
.logos {
  display: grid;
  grid-template-rows: auto;
  margin: 20px;
  /* justify-content: space-between;
  align-items: center; */
}

.logo:nth-child(1) {
  transition-delay: 100ms;
}
.logo:nth-child(2) {
  transition-delay: 200ms;
}
.logo:nth-child(3) {
  transition-delay: 300ms;
}
.logo:nth-child(4) {
  transition-delay: 400ms;
}

.contact-form {
  display: grid;
  justify-content: center;
}

.contact-p {
  justify-self: center;
  align-self: center;
  font-size: 1.3rem;
}

.contact-form > button {
  background-color: lightblue;
  border: none;
  outline: none;
}

.contact-form > input {
  padding: 10px;
  border: none;
  outline: none;
  background-color: lightblue;
}

.contact-form > textarea {
  padding: 10px;
  border: none;
  outline: none;
  background-color: lightblue;
}

.contact-card > h1 {
  display: block;
}
.info-hidden {
  width: 20px;
}
img {
  align-items: center;
  place-content: center;
  place-self: center;
  align-self: center;
  border-radius: 50px;
  width: 100px;
}
.pic {
  border-radius: 10px;
  width: 20rem;
  height: 4rem;
}

#myBtnP {
  margin-left: 10px;
  border-radius: 25px;
  background-color: black;
  color: white;
}

/* .cards-container {
  display: flex;
  justify-content: center;
} */

.card {
  border: #333333 solid 2px;
  border-radius: 10px;
  box-shadow: 0 32px 32px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: min-content;
  padding: 20px;
  width: max-content;
}

.card-package {
  margin: 2rem;
}
.card-package2 {
  margin: 2rem;
}
.card-package3 {
  margin: 15rem;
}

.bn39 {
  background-image: linear-gradient(135deg, #008aff, #86d472);
  border-radius: 6px;
  box-sizing: border-box;
  color: #ffffff;
  display: block;
  height: 50px;
  font-size: 1.4em;
  font-weight: 600;
  padding: 4px;
  position: relative;
  text-decoration: none;
  width: 7em;
  z-index: 2;
}

.bn39:hover {
  color: #fff;
}

.bn39 .bn39span {
  align-items: center;
  background: #0e0e10;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: background 0.5s ease;
  width: 100%;
}

.bn39:hover .bn39span {
  background: transparent;
}

@media only screen and (width: 375px) {
  .card-wrapper{
  font-size: 10px;
  padding: 10px;
  padding-left: 1px;

}
.cards-container{
  font-size: 10px;
  margin: 20px;
}
  .card > h1 {
    font-size: 1.5rem;
  }

  .card > p {
    font-size: 1rem;
  }

  .card {
    width: 100%;
  }

  .logo {
    width: 50vw;
    height: auto;
  }

  /* Contact form */
  .contact-card > h1 {
    display: block;
    font-size: 0.5rem;
  }

  .contact-form > input {
    width: 100%;
    border: none;
    outline: none;
    background-color: lightblue;
  }

  .contact-form > textarea {
    width: 100%;
    border: none;
    outline: none;
    background-color: lightblue;
  }

  .contact-form > button {
    background-color: lightblue;
    border: none;
    outline: none;
    width: max-content;
  }

  .contact-card > h1 {
    width: max-content;
  }

  /* Navbar */
  .Navbar > span > a {
    margin: 5px;
    font-size: 0.5rem;
    padding: 5px;
  }

  .Navbar {
    display: block;
    margin: 0;
    padding: 5px;
    max-height: min-content;
  }
}
