@font-face {
    font-family: "Bricolage Grotesque";
    src: url('/assets/fonts/BricolageGrotesque-VariableFont_opsz\,wdth\,wght.ttf') format('truetype');
    font-style: normal;
    font-optical-sizing: auto;
}

@font-face {
    font-family: "Inter";
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-style: italic;
    font-optical-sizing: auto;
}

@font-face {
    font-family: "Inter";
    src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-style: italic;
    font-optical-sizing: auto;
}

html {
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;
  font-size: 14px;
  scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 100;
  color: white;
  background-color: #181818;
}

.video-container {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 223, 0, 0.7), rgba(24, 24, 24, 1));
}

.text-block {
  position: relative;
  text-align: left;
  max-width: 600px;
  margin: 20rem auto 0;
}

@media screen and (max-width: 750px) {
  .text-block {
    max-width: 350px;
    margin-top: 10rem;
  }
}

@media screen and (max-width: 400px) {
  .text-block {
    max-width: 300px;
  }
}

.text-block h1 {
  font-size: 3rem;
}

.text-block p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.button {
  background-color: #ffec19;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border: none;
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Bricolage Grotesque", sans-serif;
  transition: 0.2s ease-in-out;
}

.button:hover {
  background-color: white;
}

.text-block p span {
  color: #ffec19;
  font-weight: 600;
}

.usp {
  background-color: #2E2E2E;
  color: white;
  height: 200px;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow-x: hidden;
}

@media screen and (max-width: 1000px) {
  .usp {
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}

.usp p {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 650px) {
  .usp p {
    flex: 0 0 30%;
    margin-right: 2rem;
  }
}

.usp p img {
  margin-bottom: 0.5rem;
  height: 100px;
}

.content {
  max-width: 600px;
  margin: auto;
  padding-bottom: 5rem;
}

@media screen and (max-width: 750px) {
  .content {
    max-width: 350px;
  }
}

@media screen and (max-width: 400px) {
  .content {
    max-width: 300px;
  }
}

.content h2 {
  color: #ffec19;
}

.content > p {
  margin-bottom: 3rem;
}

.content ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  .content ul {
    flex-direction: column;
  }
}

.content ul li {
  flex: 0 1 45%;
}

.content ul li h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.office-mobile{
  display: none;
  @media screen and (max-width: 800px) {
    display: block;
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
}
.location {
  margin-top: 2rem;
  display: flex;
  background-color: white;
  border-radius: 5px;
  color: black;
  height: 8rem;
  border-left: 4px solid #ffec19;
}

.location img {
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .location img {
    display: none;
  }
}

.location-text {
  display: flex;
  flex-direction: column;
  margin: 1rem 0 0 2rem;
}

.location-text p {
  margin: 0;
}
