
:root {
  --botanical-green: #7c8055;
  --herbal-cream: #f6f4ef;
  --muted-clay: #c46a4a;
  --deep-charcoal: #2e2e2c;
  --herbal-amber: #d8a84e;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --nav-background: rgba(246, 244, 239, 1);
  --main-: #020f1b;
    --clr-gold-hero: rgba(243, 213, 82, 1);
  --clr-conf-blue: #020f1b;
  --clr-conf_Gold: #f3d552;
  --clr-conf-Gray-bg: rgba(139, 136, 136, 0.05);
  --conf-gray-main: rgba(255, 255, 255, 1);
  --clr-conf-Gold-bg: rgba(243, 213, 82, 0.2);
  --clr-conf-white: #fff;
  --clr-button-gold-bg: rgba(32, 32, 31, 1);
}

/* Footer Section */
#footer {
  background: var(--clr-conf-blue);
  color: var(--conf-gray-main);
  padding: 40px 100px;
}
.footer_contents {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-weight: normal;
}
.formNews {
  margin: 35px 0;
}
.newsForm {
  background: transparent;
}
.newsForm input,
.entry__field input {
  border: 1px solid var(--conf-gray-main);
  background: rgba(139, 136, 136, 0.2);
  border-radius: 10px;
  padding: 13px 9px;
  width: 300px;
  color: var(--herbal-cream);
}
.newsForm button {
  border-radius: 10px;
  padding: 13px 30px;
  font-weight: bold;
  border: none;
  background: var(--clr-gold-hero);
  margin-left: 10px;
  transition: transform 0.2s ease;
}
.newsForm button:hover {
  transform: translateY(10px);
  background: var(--clr-conf_Gold);
}
.footer_organize {
  display: flex;
}
.bitmaps_footer {
  margin-left: 20px;
}
.footer_Contacts p {
  margin: 17px 0;
}
.footer_Contacts a {
  text-decoration: none;
  color: var(--conf-gray-main);
}
.footer_Contacts p img,
.footer_Contacts p i {
  position: relative;
  top: 5px;
  padding: 0 8px;
}
.footer_Contacts p i {
  font-size: 23px;
}

.footer_left{
    max-width: 50%;
}
#message{
  transition: .5s ease-in-out;
  margin: 10px 0;
}
#message.addError{
  color: #dd3b29;
}
#message.Success{
  color: var(--herbal-amber);
}
/* Media Querry Mobile */
@media screen and (min-width: 0) and (max-width: 700px)  {
     #footer {
    padding: 10px 20px;
  }
   .footer_contents {
    display: block;
  }
  /* Footer */
  .rightFooter {
    margin: 35px 0;
  }
  .footer_Contacts {
    margin: 15px 0;
  }
  .footer_Contacts p {
    margin: 17px 0;
  }
  .bitmaps_footer {
    margin-left: 5px;
  }
  .newsForm button,
  .newsForm input {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .footer_left{
    max-width: 100%;
  }
}