:root {
  background-color: #fdfbf6;
}

* {
  /* margin: 5px; */
  padding: 0;
  box-sizing: border-box;
  /* background-color: var(--main-background-color); */
}

body {
  font-family: system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin-trim: 0;
  line-height: 30px;
  cursor: url(/images/icons8-cursor-50.png) 4 4, auto;
}

.header {
  /* background: #f8f9fa; */
  color: #333;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*border-bottom: 1px solid #e9ecef;*/
}

.logo {
  height: 80px;
  width: 80px;
  height: fit-content;
  border-right: #333;
}

nav {
  /*display: flex;*/
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
}
.divider {
  width: 2px;
  height: 40px;
  background: black;
  margin: 0 8px;
}
.menu {
  font-size: 18px;
  font-weight: bold;
  /* margin-top: 45px; */
}

.main-wrapper {
  flex: 1;
  display: flex;
  /* background: white; */
  gap: 20px;
  padding: 20px;
}

.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title-section {
  color: #797877;
  padding: 40px;
  text-align: start;
  margin-top: -20px;
}

.title-section h1 {
  font-size: 70px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  margin-bottom: -10px;
}
.main-content {
  /* background: #f8f9fa; */
  color: #797877;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  /*justify-content: center;*/
  font-size: 24px;
  text-align: justify;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  margin-top: -50px;
  margin-bottom: 30px;
  width: 700px;
  height: 200px;
}
.main-content p {
  margin-bottom: 5px;
}

a {
  color: inherit;
  text-decoration: none;
  background: none;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: bold;
  cursor: url(/images/icons8-cursor-50.png) 4 4, auto;
}
.right-section {
  width: 300px;
  color: #666;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 150px;
  margin-right: 110px;
}
.image-container {
  height: 700px;
  /*width: 400px;*/
  border-radius: 120px;
  object-fit: contain;
  z-index: 1;
  margin-bottom: -200px;
}

.blue-box {
  background-color: #718dae;
  color: white;
  border-radius: 16px;
  padding: 20px;
  font-family: "Nunito", sans-serif;
  margin-top: -60px;
  margin-left: 20px;
  box-shadow: 4px 4px 4px grey;
}
.blue-box h2 {
  margin-top: 0;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
  padding: 20px 0px 0px 20px;
}
.blue-box p {
  font-size: 18px;
  line-height: 1.5;
  margin: 10px 0 20px 0;
  /* margin-top: -10px; */
  /* padding: 20px; */
  margin-left: 20px;
}
.manifesto-one {
  width: 675px;
  margin-bottom: -100px;
}
.manifesto-two {
  width: 1150px;
}
button {
  background-color: white;
  color: #d8a39a;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: url(/images/icons8-cursor-50.png) 4 4, auto;
  transition: background 0.3s ease;
  padding: 10px 20px 10px 20px;
  border-radius: 20px;
  border: none;
  margin-left: 20px;
  box-shadow: 4px 4px 4px black;
}
.blue-box button:hover {
  background-color: #dcc5b2;
}
.sub-content {
  color: #797877;
  padding: 60px;
  /*text-align: left;*/
  /*text-align: justify;*/
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  margin-top: -50px;
  text-align: justify;
}
.sub-content p {
  margin-bottom: 20px;
}
h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
}
.footer {
  color: #718dae;
  padding: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: -25px;
  margin-bottom: -30px;
}
hr {
  background-color: #718dae;
  height: 2px;
  border: none;
  width: 110%;
  margin: 1rem auto 0.2rem auto;
  border-radius: 4px;
}
nav a {
  color: #718dae;
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  margin: 0 10px;
}

nav a:hover {
  text-decoration: underline;
}
