:root {
  --light: #d8d2d2;
  --dark: #302e2f;

  --light-gray: #b6b6b6;
  --medium-gray: #b0b0b0;
  --dark-gray: #676767;

  overscroll-behavior: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;

  margin: 0;

  scroll-behavior: smooth;
  overflow-x: hidden;

  font-family: "Metropolis", sans-serif;
}

.text-bold {
  font-weight: 700;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.container {
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  width: 85.4166667%;
  max-width: 85.4166667%;
}

.container-large {
  width: 85.4166667% !important;
  max-width: 85.4166667% !important;
}

.container-center {
  align-items: center;
  text-align: justify;
  text-align-last: center;
}

.container-center-center {
  align-items: center;
  justify-content: center;
  text-align: justify;
  text-align-last: center;
}

section h1 {
  font-size: 2rem;
  font-family: "Syne", sans-serif;
}

section p {
  font-size: 1rem;
  line-height: 2rem;
  font-family: "Metropolis", sans-serif;
}

#find-us h1,
#partner-container h1 {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light);
  width: 100%;
  text-align: center;
  margin-top: 0;
}

/* NAV */
/* ============================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: none;

  font-family: "Syne", sans-serif;

  z-index: 100;

  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
}

nav .container {
  border-bottom: 1px solid var(--light);

  width: 85.4166667% !important;
  max-width: 85.4166667% !important;
}

ul.nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4rem;
  width: 100%;

  list-style: none;

  padding: 0;
  margin: 0;
}

.nav-item .nav-link {
  display: block;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--medium-gray);

  text-align: center;

  padding: 1rem 0;

  transition: color 0.3s ease;
}

.nav-item .nav-link:hover {
  color: var(--light-gray);

  transition: color 0.3s ease;
}

/* ============================== */

/* HEADER SECTION */
/* ============================== */
header {
  margin: auto;
  display: grid;
  place-items: center;

  min-width: 100%;
  min-height: 100vh;

  position: relative;
}

header video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  user-select: none;
  pointer-events: none;
}

.video-bg-overlay,
.bg-dark-overlay {
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  display: grid;
  place-items: center;
}

.bg-dark-overlay {
  /* background-color: rgba(34, 34, 34, 0.7); */
}

#home-logo {
  width: 180px;
}

#home-logo img {
  width: 100%;
  height: auto;
}
/* ============================== */

/* ABOUT  */
/* ============================== */
#about {
  min-width: 100%;
  min-height: 100vh;

  position: relative;

  color: var(--light);

  background-image: url("../img/bg-about-find-us.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* ============================== */

/* SERVICES */
#services {
  min-width: 100%;
  min-height: 100vh;

  position: relative;

  color: var(--dark);

  background-image: url("../img/bg-service.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.table-row {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  gap: 1rem;

  border-top: 1px solid var(--medium-gray);

  transition: all 0.5s ease;
}

.table-col {
  display: flex;
  flex-direction: column;
}

.table-col:first-child {
  width: 5rem;
  min-width: 5rem;

  font-size: 1rem;

  padding-top: 1rem;
}

.service-number {
  display: flex;
  justify-content: end;
  border-radius: 100rem;
  min-width: 2rem;
  padding: 0.5rem;
  border: 1px solid var(--medium-gray);
  height: fit-content;
}

.table-col:nth-child(2) {
  text-align: left;
  text-align-last: left;

  font-family: "Metropolis", sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 700;
}

.table-col:nth-child(3) {
  text-align: justify;
  text-align-last: left;

  font-size: 1rem;
  line-height: 2rem;

  padding-bottom: 1rem;
}
/* ============================== */

/* PARTNERS */
/* ============================== */
#our-partners {
  min-width: 100%;
  min-height: 100vh;

  position: relative;

  color: var(--light);

  display: grid;
  place-items: center;

  background-image: url("../img/black-metal-background-or-texture-2023-11-27-05-02-15-utc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#our-partners .bg-dark-overlay {
  place-items: center;
}

#partner-container {
  align-items: center;
  justify-content: center;
  text-align: justify;
  text-align-last: center;
}

.partner-list {
  list-style: none;
  width: 80vw;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 0.75rem;
  grid-row-gap: 1.5rem;
}

.partner-item {
  display: grid;
  place-items: center;
}

.partner-item img {
  max-height: 50px;
  object-fit: contain;

  filter: grayscale(1) invert(1);

  transition: all 0.3s ease;
}

.partner-item img:hover {
  transform: scale(1.1);
  filter: none;
}
/* ============================== */

/* CONTACT */
/* ============================== */
#find-us {
  min-width: 100%;
  min-height: 100vh;

  position: relative;

  color: var(--light);

  background-image: url("../img/bg-about-find-us.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#find-us-title {
  font-size: 2rem;
  text-align: center;
  text-align-last: center;

  width: 100%;
  border-bottom: 1px solid var(--light);
  padding-bottom: 2rem;
  /* margin-top: calc(8rem + 1px); */
}

#find-us .bg-dark-overlay {
  place-items: center;
}

#contact-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  box-sizing: content-box;
  gap: 2rem;

  width: 100%;

  align-items: start !important;
}

#contact-container a,
#contact-container a:hover {
  text-decoration: none;
  color: var(--light);
}

.contact-item {
  display: flex;
  flex-direction: column;

  font-size: 1rem;
  line-height: 2rem;
  text-align: justify;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}

.contact-item span {
  display: block;
}

.social-media-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.social-media-item {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--light);
  border-radius: 100rem;
}

.social-media-item span:first-child {
  font-weight: 700;
}

.email-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--light);
  border-radius: 2rem;
  flex: 1;
}

.email-container span:first-child {
  font-weight: 700;
  border-bottom: 1px solid var(--light);
  display: block;
  text-align: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
/* ============================== */
