/* **************************** */
/* HEADER SECTION */
/* **************************** */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8rem;
  background-color: #b8dce5;
}

/* LOGO */
.logo {
  height: 12.8rem;
}
.stickyNav {
  position: fixed;
  background-color: rgba(184, 220, 230, 0.95);
  z-index: 100;
  width: 100%;
}
.main-nav-list {
  list-style: none;
  display: flex;
  font-size: 2rem;
  gap: 4.8rem;
}
.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;

  color: #444;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #1289a7;
}

.main-nav-link-btn:link,
.main-nav-link-btn:visited {
  text-decoration: none;
  font-size: 2rem;
  padding: 1.2rem 2.4rem;
  color: #fff;
  transform: translate(all 0.3s);
  background-color: #1289a7;
}

.main-nav-link-btn:hover,
.main-nav-link-btn:active {
  background-color: #107b96;
  color: #d0e7ed;
}

/* **************************** */
/* HERO SECTION */
/* **************************** */
.section-hero {
  background-color: #d0e7ed;
  padding-bottom: 9.8rem;
}

.hero-img-box {
  position: relative;
}
.hero-img {
  width: 80%;
}
.hero-img-sm {
  position: absolute;
  width: 40%;
  left: -25%;
  top: 10%;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 4.8rem;
}

.btn-hero:link,
.btn-hero:visited {
  background-color: #1289a7;
  color: #fff;
}

.btn-hero:hover,
.btn-hero:active {
  background-color: #107b96;
  color: #d0e7ed;
}

/* **************************** */
/* ITEMS SECTION */
/* **************************** */
.items-section {
  background-color: #b8dce5;
}
.items {
  position: relative;
}
.item {
  position: relative;
  background-color: #107b96;
  margin: 3.6rem 0;
}
.item-img {
  width: 100%;
}
.sold-tag {
  position: absolute;
  padding: 0.2rem 0.2rem;
  font-size: 1.6rem;
  color: #d0e7ed;
  left: 5%;
  top: 3%;
}
.item-name {
  position: absolute;
  left: 40%;
  bottom: 10%;
  color: #fff;
  font-size: 1.4rem;
}
.slide-arrows {
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  position: absolute;
  right: 0;
  bottom: 0.5rem;
}
/* **************************** */
/* Feature In SECTION */
/* **************************** */
.featured-in-section {
  position: relative;
}
.heading-featured-in {
  font-size: 2.4rem;
  text-transform: uppercase;
  text-align: center;
  margin-top: 3.2rem;
  color: #888;
}
.featured-in-img {
  display: flex;
  justify-content: space-around;
  margin-top: 4.8rem;
}

.featured-in-img img {
  height: 4.8rem;
  filter: brightness(0);
  opacity: 50%;
}
/* **************************** */
/* HOW TO SECTION */
/* **************************** */

.icon {
  width: 6.4rem;
  height: 6.4rem;
  padding-bottom: 2.4rem;
}

.how-to-section {
  margin-top: 4.8rem;
  padding: 6.4rem 0;
}

.steps-description {
  font-size: 1.2rem;
  line-height: 1.5;
  padding-top: 1.6rem;
}

.step-text {
  color: #1289a7;
}

/* **************************** */
/* HERO SECTION */
/* **************************** */
.footer {
  background-color: #017fbd;
  padding: 9.8rem 4.8rem;
}

.footer-form {
  /* border: 1px solid #444; */
  font-size: 1.8rem;
  color: #fff;
}
.footer-form fieldset {
  padding: 1.2rem 2.4rem;
}
.footer-input {
  background-color: #017fbd;
  font-family: inherit;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  margin: 0 1.8rem;
}
.grid-footer {
  grid-template-columns: 3fr 1fr 1fr 1fr;
}

.footer-col-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.4rem;
  color: #fff;
  transition: all 0.3s;
}
.footer-link:hover,
.footer-link:active {
  color: #b8dce5;
}
.footer-link ion-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.footer-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
