.roboto-slab-font_nav {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.inter-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
}
:root {
  --grey: #f1f1f1;
  --black: #000000;
  --white: #ffffff;
  --yellow: yellow;
  --yellowgreen: yellowgreen;
  --antiquewhite: antiquewhite;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

main {
  width: 95%;
  margin: 0 auto;
  /* background-color: #bbb; */
}

nav {
  padding: 0;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none; /* Remove bullets */
  margin: 0;
  padding: 0.7rem 3rem;
}

nav ul li {
  text-align: center;
}

nav ul li img {
  width: 1.5rem;
  height: auto;
  /* display: block; */
  margin: 0 auto;
}

nav ul li a {
  text-decoration: none;
  font-size: 0.9em;
  color: var(--black);
  padding: 10px 15px;
}

/* nav ul li div {
  display: flex;
  justify-content: center;
  align-items: center;
padding: 0.1em 3em;
  gap: 1.5em;
  font-size: 0.9em;
  border: 1px solid var(--black);
  cursor: pointer;
  box-sizing:border-box;
  /* transition: background-color 0.3s ease; Smooth hover transition 
} */

nav ul li a div p {
  /* margin-right: 10px;  */
}

nav ul li a div img {
  width: 1.4em;
  height: auto;
  padding: 0;
  margin: 0;
}

/* nav ul li div:hover {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
} */

nav ul li a div {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0.5em 0em;
  gap: 1.5em; */
  font-size: 0.9em;
  color: var(--black);
  background-color: transparent;
  border: 1px solid var(--black);
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

nav ul li a div::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 0;
  transition: top 0.3s ease;
}

nav ul li a div:hover::before {
  top: 0;
}

nav ul li a div span {
  position: relative;
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  gap: 1.5em;
  z-index: 1;
  transition: color 0.3s ease;
}

nav ul li a div:hover span {
  color: var(--white); /* Change the text color to white on hover */
}
.landing {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
  /* height: 100vh; */
  /* background-color: var(--yellowgreen); */
}
.top_content {
  display: grid;

  grid-template-columns: 1fr 0.6fr; /* Equal space for both columns */
  margin-block: 1em;
  gap: 20px;
  grid-template-rows: 27rem;
  align-items: stretch;
}

.top_text {
  /* background-color: yellow; */
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  text-align: left; /* Ensure the text aligns to the left */
}

.top_text h1 {
  font-size: 5.5rem;
  margin: 0;
  padding: 0;
}

.top_text p {
  font-size: 1rem;
  width: 53%;
  font-weight: 300;
  padding: 0;
}

.top_image {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically center the image */
  padding: 0;
  min-height: 100%;
  margin: 0;
  margin-inline: 2em;
}

.top_image img {
  width: 100%; /* Make the image take up the full width of the cell */
  height: 100%; /* Make the image take up the full height of the cell */
  object-fit: cover; /* Ensure the image fills the grid cell */
}

.bottom_content{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-block: 1em;
  width: 50%;
}
.bottom_content input, .bottom_content textarea, .bottom_content button {
  padding: 1em;
  font-family: "Inter" sans-serif;
  font-size: 1rem;
  font-weight: 100;
  border: 0;
  background-color: var(--grey);
}

#message {
  min-height: 2rem; 
  resize: vertical; 
  font-family: "Inter" sans-serif;
  overflow-y: auto; 
  /* font-size: 1rem;
  font-weight: 100; */
  border: 0;
  /* background-color: var(--grey); */
  /* padding: 1em;  */
}
#send{
  background-color: var(--black);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}
footer {
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40rem;
  /* padding: 1em 0; */
  margin-block-start: 5em;
  /* margin: 0; */
}
.footer_content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: min-content;
  margin: 0 auto;
  /* background-color: var(--grey); */
  color: var(--white);
  /* padding: 1em; */
  /* box-sizing:content-box; */
  min-height: 40rem;
  /* margin-block-start: 5em; */
  font-size: 0.9em;
}
footer h1 {
  font-size: 11rem;
  margin: 0;
  margin-block-start: 3rem;
  padding: 0;
  font-weight: 700;
  font-family: "Roboto Slab", serif;
}
.links {
  /* background-color: yellowgreen; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 100%;
  /* padding: 0 10px; */
}
.links a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.1em;
  padding: 10px 15px;
}
.vertical_line {
  width: 1px;
  height: 1.5em;
  background-color: var(--white);
  /* margin: 0 10px;  */
}
.socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* background-color: rgb(81, 0, 255); */
  /* width: 15%; */
  /* max-width: 30%; */
  /* padding: 0 10px; */
}
.address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-color: yellow; */
  width: 100%;
  margin: 0 auto;
  text-align: center;
  /* padding: 0 10px; */
}
.socials i {
  /* background-color: transparent; */
  font-size: 2em;
  color: var(--white);
  padding: 10px 15px;
}
.copy_right {
  /* background-color: yellowgreen; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
  font-size: 0.75rem;
  font-weight: 800;
  max-width: 100%;
  /* padding: 0 10px; */
}
