@import url("https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Amiri", serif;
  background: var(--bs-light);
  color: var(--bs-dark);
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(var(--bs-info-rgb), 0.3);
}

::placeholder {
  color: #ccc;
}

a {
  color: var(--bs-secondary);
  text-decoration: none;
  outline-width: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

strong {
  font-weight: 700;
}

.main-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
}

.container-fluid.ws-container {
  max-width: 100rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.sans-extended {
  font-family: "Figtree", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ws-title {
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  position: relative;
  padding-bottom: 1em;
  text-transform: uppercase;
}

.ws-title::after {
  content: "";
  display: block;
  width: 5rem;
  height: 3px;
  position: relative;
  bottom: -1rem;
  background: var(--bs-secondary);
  transition: width 0.3s ease-in-out;
}

.ws-title.ws-title-center {
  text-align: center !important;
}

.ws-title.ws-title-center::after {
  margin: 0 auto;
}

.ws-title > small {
  display: block;
  font-size: 60%;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.ws-title > small.lighter {
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.main-logo {
  display: block;
  width: 25rem;
  max-width: 75%;
  margin: 0 auto 3rem auto;
}

.main-logo > img {
  display: block;
  width: 100%;
}

.intro-text {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.2em;
  max-width: 55rem;
  display: block;
  margin: 0 auto 2rem auto;
}

.center-content {
  text-align: center;
}

.main-title {
  font-size: clamp(1rem, 3vw, 1.5rem);
}

.main-title > small {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  color: var(--bs-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  margin: 0.5rem;
}

.itemscope-tags {
  display: none;
}

.contact-tags {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-tags > span {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 700;
}

@media (max-width: 440px) {
  html {
    font-size: 90%;
  }
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
  .contact-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .contact-tags > span::after {
    content: "•";
    color: var(--bs-secondary);
    display: inline-block;
    margin-left: 0.5rem;
  }

  .contact-tags > span:last-child::after {
    content: "";
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
}

@media (min-width: 1440px) {
}

@media (min-width: 1660px) {
}
