* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
/* Reusable classies */
.container {
  display: flex;
  flex-direction: column;
}

/* Reusable classies */
body {
  color: #333;
}

html {
  font: size 62.5%;
}

.site-wrapper {
  width: 80vw;
  margin: auto;
}

.img-wrapper .main-img {
  width: 64.5vw;
}

.img-wrapper .secondary {
  width: 64.5vw;
}

.main-header {
  text-align: center;
  margin: 10px 0 24px 0;
  background-color: #276873;
  color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
}

.title {
  font-size: 3rem;
  text-transform: uppercase;
}

.sub-title {
  color: rgba(153, 153, 153, 0.1);
}

.menu-box {
  display: inline-block;
  text-align: center;
  justify-content: space-around;
  /* display: flex; */
  /* margin: auto; */
}

.btn {
  box-shadow: 0px 10px 14px -7px #276873;
  background: linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
  background-color: #599bb3;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 20px;
  font-weight: bold;
  padding: 13px 32px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #3d768a;
  margin-bottom: 32px;
  text-align: center;
}

/* .btn-left {
  margin-right: 1.8rem;
} */
.btn:hover {
  background: linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
  background-color: #408c99;
}
.btn:active {
  position: relative;
  top: 1px;
}

H2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
}

.espa-img {
  width: 100%;
}

.main-img {
  max-width: 100%;
  max-height: 100vh;
  margin: auto auto 10px auto;
  display: block;
}

.secondary {
  max-width: 100%;
}

.card {
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #276873;
  color: #ffffff;
  border-radius: 10px;
}

.info {
  margin-bottom: 12px;
}

footer {
  text-align: center;
  margin-bottom: 12px;
}

.border {
  border-bottom: solid 2px #599bb3;
  margin-bottom: 32px;
  margin: 32px 0;
}

.fit {
  width: 100%;
  max-height: 620px;
  margin-bottom: 10px;
}

.cover {
  object-fit: contain;
}

.text-border {
  margin: auto;
  width: 60vw;
}

.about-title {
  margin: 2rem 0;
  font-size: 2rem;
}

.about-text {
  margin-bottom: 1rem;
  line-height: 1.4;
  font-size: 1.2rem;
  text-align: center;
}

/* cards */

.card-service {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0.05rem 0.1rem 0.3rem -0.03rem rgba(0, 0, 0, 0.45);
  padding-bottom: 1rem;
}

.card-service > :last-child {
  margin-bottom: 0;
}

.card-service h3 {
  margin-top: 2.2rem;
  font-size: 1.4rem;
  text-align: center;
}

.card-service p {
  margin-top: 1rem;
  font-size: 1.1rem;
  text-align: center;
}

.card-service img {
  border-radius: 0.5rem 0.5rem 0 0;
  width: 100%;
  height: 60%;
}

.card-service img ~ * {
  margin-left: 1rem;
  margin-right: 1rem;
}

.card-wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30ch, 1fr));
  grid-gap: 1.5rem;
  margin-top: 2rem;
}
