@font-face {
  font-family: "estedad";
  src: url("assets/fonts/woff2/Estedad-Regular.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "estedad", sans-serif;
}
.contact-page {
  background-color: #08273c;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Base styles */

/* Header and Navigation styles */
.width-web {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-flow: row-reverse;
  -moz-flex-flow: row-reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.main-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 20px 0;
}

.main-menu ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-menu ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.main-menu ul li a p {
  margin: 0;
}

.main-menu ul li a:hover {
  color: #8fff00;
}

.main-menu ul li a.active {
  color: #8fff00;
}

/* Header background styling */
.header-background {
  width: 100%;
  height: 100px;
  background-color: transparent;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: background-color 0.3s ease;
}

.header-background.slider-hover {
  background-color: #373737;
}

.exit-button {
  display: none;
}

/* Add these new styles for the logo */
.logoItem {
  height: 40px;
  width: auto;
  margin-right: 20px;
}

/* Update mobile styles for logo */
.contact-background {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.contact-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: #8fff00;
  font-weight: bold;
  margin-top: 14rem;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact-background-2 {
  position: fixed;
  left: 0;
  right: 0;
  top: 9rem;
  margin: auto;
}
.info-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.footer-rows {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  padding: 1rem;
  gap: 1rem;
  margin-top: 3rem;
  margin-right: 3rem;
  color: #fff;
  white-space: nowrap;
}
.footer-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: small;
  gap: 1rem;
  white-space: nowrap;
}
