body {
  margin: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0000002f;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10; /* Make sure header stays on top */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #ffffff2d;
}

.sticky img {
  display: inline-block;
  width: 30%;
}

@media screen and (min-width: 550px) {
  #small-logo {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  #logo {
    display: none;
  }

  #small-logo {
    width: 10%;
  }
}

.sticky a {
  text-decoration: none;
  color: #333;
  margin: 0 10px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #fff;
}

.hero {
  height: 100vh;
  background-image: url("../img/landing/bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  padding: 30px;
}

.hero h2 {
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 2px #0000005a;
}

.hero p {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
}

.first {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 30px 200px;
}

.first h2 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
}

.first p {
  text-align: center;
  color: var(--text);
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  /* font-weight: 700; */
  font-style: normal;
  font-size: 1rem;
}

@media screen and (max-width: 700px) {
  .first {
    padding: 30px 100px;
  }
}
@media screen and (max-width: 450px) {
  .first {
    padding: 30px 50px;
  }
}

.first button {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: "Montserrat", serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.first button:focus {
  color: #171e29;
}

.first button:hover {
  border-color: #a6c0b5;
  color: #a6c0b5;
  fill: #a6c0b5;
}

.first button:active {
  border-color: #a6c0b5;
  color: #a6c0b5;
  fill: #a6c0b5;
}

@media (min-width: 768px) {
  .first button {
    min-width: 170px;
  }
}

/* Features */
.tabs {
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  background: white;
  width: 70%;
  padding: 50px;
  padding-bottom: 80px;
  border-radius: 5px;
  min-width: 240px;
}
.tabs input[name="tab-control"] {
  display: none;
}
.tabs .content section h2,
.tabs ul li label {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 18px;
  color: #a6c0b5;
}
.tabs ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.tabs ul li {
  box-sizing: border-box;
  flex: 1;
  width: 25%;
  padding: 0 10px;
  text-align: center;
}
.tabs ul li label {
  transition: all 0.3s ease-in-out;
  color: #929daf;
  padding: 5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tabs ul li label br {
  display: none;
}
.tabs ul li label svg {
  fill: #929daf;
  height: 1.2em;
  vertical-align: bottom;
  margin-right: 0.2em;
  transition: all 0.2s ease-in-out;
}
.tabs ul li label:hover,
.tabs ul li label:focus,
.tabs ul li label:active {
  outline: 0;
  color: #bec5cf;
}
.tabs ul li label:hover svg,
.tabs ul li label:focus svg,
.tabs ul li label:active svg {
  fill: #bec5cf;
}
.tabs .slider {
  position: relative;
  width: 25%;
  transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}
.tabs .slider .indicator {
  position: relative;
  width: 50px;
  max-width: 100%;
  margin: 0 auto;
  height: 4px;
  background: #a6c0b5;
  border-radius: 1px;
}
.tabs .content {
  margin-top: 30px;
}
.tabs .content section {
  display: none;
  -webkit-animation-name: content;
  animation-name: content;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  line-height: 1.4;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
}
.tabs .content section h2 {
  color: #a6c0b5;
  display: none;
}

.tabs .content section h2::after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #a6c0b5;
  margin-top: 5px;
  left: 1px;
}

.tabs
  input[name="tab-control"]:nth-of-type(1):checked
  ~ ul
  > li:nth-child(1)
  > label {
  cursor: default;
  color: #a6c0b5;
}
.tabs
  input[name="tab-control"]:nth-of-type(1):checked
  ~ ul
  > li:nth-child(1)
  > label
  svg {
  fill: #a6c0b5;
}
@media (max-width: 600px) {
  .tabs
    input[name="tab-control"]:nth-of-type(1):checked
    ~ ul
    > li:nth-child(1)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .slider {
  transform: translateX(0%);
}
.tabs
  input[name="tab-control"]:nth-of-type(1):checked
  ~ .content
  > section:nth-child(1) {
  display: block;
}
.tabs
  input[name="tab-control"]:nth-of-type(2):checked
  ~ ul
  > li:nth-child(2)
  > label {
  cursor: default;
  color: #a6c0b5;
}
.tabs
  input[name="tab-control"]:nth-of-type(2):checked
  ~ ul
  > li:nth-child(2)
  > label
  svg {
  fill: #a6c0b5;
}
@media (max-width: 600px) {
  .tabs
    input[name="tab-control"]:nth-of-type(2):checked
    ~ ul
    > li:nth-child(2)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .slider {
  transform: translateX(100%);
}
.tabs
  input[name="tab-control"]:nth-of-type(2):checked
  ~ .content
  > section:nth-child(2) {
  display: block;
}
.tabs
  input[name="tab-control"]:nth-of-type(3):checked
  ~ ul
  > li:nth-child(3)
  > label {
  cursor: default;
  color: #a6c0b5;
}
.tabs
  input[name="tab-control"]:nth-of-type(3):checked
  ~ ul
  > li:nth-child(3)
  > label
  svg {
  fill: #a6c0b5;
}
@media (max-width: 600px) {
  .tabs
    input[name="tab-control"]:nth-of-type(3):checked
    ~ ul
    > li:nth-child(3)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .slider {
  transform: translateX(200%);
}
.tabs
  input[name="tab-control"]:nth-of-type(3):checked
  ~ .content
  > section:nth-child(3) {
  display: block;
}
.tabs
  input[name="tab-control"]:nth-of-type(4):checked
  ~ ul
  > li:nth-child(4)
  > label {
  cursor: default;
  color: #a6c0b5;
}
.tabs
  input[name="tab-control"]:nth-of-type(4):checked
  ~ ul
  > li:nth-child(4)
  > label
  svg {
  fill: #a6c0b5;
}
@media (max-width: 600px) {
  .tabs
    input[name="tab-control"]:nth-of-type(4):checked
    ~ ul
    > li:nth-child(4)
    > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name="tab-control"]:nth-of-type(4):checked ~ .slider {
  transform: translateX(300%);
}
.tabs
  input[name="tab-control"]:nth-of-type(4):checked
  ~ .content
  > section:nth-child(4) {
  display: block;
}
@-webkit-keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@media (max-width: 1000px) {
  .tabs ul li label {
    white-space: initial;
  }
  .tabs ul li label br {
    display: initial;
  }
  .tabs ul li label svg {
    height: 1.5em;
  }
}
@media (max-width: 600px) {
  .tabs ul li label {
    padding: 5px;
    border-radius: 5px;
  }
  .tabs ul li label span {
    display: none;
  }
  .tabs .slider {
    display: none;
  }
  .tabs .content {
    margin-top: 20px;
  }
  .tabs .content section h2 {
    display: block;
  }
}

.counter {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100vw;
}

.cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  padding: 2rem;
}

.card {
  display: flex;
  flex-direction: column;
  width: 20rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 5% 5% 100% 100%;
  background-color: #E8E8E8;
}

.card h2 {
  font-family: "Inter", sans-serif;
  font-size: 2.5em;
}

.card p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  font-weight: 500;
}

.cards img {
  width: 50%;
}

.gif {
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gif img {
  object-fit: contain;
}

@media screen and (max-width: 550px) {
  .cards {
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.first ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.first ul li strong {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
}

/* Footer */
footer {
  width: 100%;
  background-color: #eeeef2;
}

footer .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 0.9rem;
  color: #7a7984;
}

.row .ico {
  margin-bottom: 15px;
}

.row .link {
  margin-bottom: 30px;
}

footer a {
  text-decoration: none;
  color: #7a7984;
  margin-right: 20px;
}
