@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap");
/* variables */
/* colors */
/* fonts */
/* display */
/* mixins */
/* tags */
a, h1, h2, h3, p, input, textarea {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

article {
  grid-column-start: 2;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

body {
  margin: 0px;
  background-color: #A08673;
  color: #000000;
}
body.dark-mode {
  background-color: #403a30;
  color: #ffffff;
}

form {
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}
form > button {
  margin-top: 10px;
}

footer {
  margin: 0px;
  background-color: #34595e;
  color: #ffffff;
}
footer.dark-mode {
  background-color: #171921 !important;
}
footer > p {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 15px;
  width: 80%;
  margin-bottom: 0px;
}

input, textarea {
  padding: 7px;
  border-radius: 10px;
  border: 2px solid #34595e;
}

label {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-size: 18px;
  height: 20px;
  padding-bottom: 10px;
}

main {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  margin-top: 30px;
}

nav {
  width: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  z-index: 2;
  box-shadow: 0px 10px 100px 15px #000000;
}
nav a {
  display: block;
  flex: 1 1 100%;
  text-decoration: none;
}
nav ul {
  text-align: center;
}

svg {
  padding-left: 10px;
}

textarea {
  height: 100px;
}

/* classes */
.circle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  transition: width 0.5s, height 0.5s, border-radius 0.5s;
  font-size: 2.25em;
  border-style: solid;
  border-color: #666666;
  border-width: 3px;
  border-radius: 25px;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px 0px #000000;
  z-index: 2;
}
.circle.dark-mode {
  border-color: #bbbbbb;
  color: #ffffff;
  background-color: #000000;
  box-shadow: 0px 0px 50px 0px #666666;
}

.dark_mode {
  color: #ffffff;
  padding: 20px;
  border-radius: 25px;
  background-color: #A08673;
  box-shadow: 10px 10px 50px 0px #000000;
}

.formCluster {
  margin-top: 5px;
  margin-bottom: 5px;
  display: grid;
  grid-template-rows: 20px 1fr;
}

.footer_social {
  width: 80%;
  padding-bottom: 20px;
}
.footer_social > ul {
  list-style-type: none;
  text-align: left;
}

.hero_image {
  height: 75%;
  max-height: 1000px;
  width: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_text {
  display: block;
  padding: 20px;
  margin-top: -20px;
  background-color: rgba(216, 250, 255, 0.7450980392);
  color: #171921;
  text-align: center;
}
.hero_text.dark-mode {
  background-color: rgba(54, 62, 64, 0.7450980392);
  color: #ffffff;
}
.hero_text > p {
  margin: 10px;
  margin-bottom: 0px;
  margin-top: 6px;
  font-weight: 500;
}
.hero_text > h1 {
  margin: 5px;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
}
.hero_text > h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.nav_bar {
  display: flex;
}
.nav_items {
  list-style-type: none;
  margin: 0;
  padding-left: 0px;
  overflow: hidden;
  width: 100%;
  background-color: #34595e;
  color: #ffffff;
}
.nav_items.dark-mode {
  background-color: #171921;
}
.nav_link_container {
  text-align: center;
}
.nav_link_container > a {
  font-size: 1.15em;
}
.nav_links {
  padding-top: 10px;
  padding-bottom: 10px;
}

.page_link {
  display: none;
  height: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  font-weight: 500;
  background-color: #34595e;
  color: #ffffff;
}
.page_link.dark-mode {
  background-color: #171921;
}

.row {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 20px;
  color: #000000;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  /*animation: glowRotate 4s infinite linear;*/
  background-color: #F5D2B8;
  box-shadow: 10px 10px 50px 0px #000000;
}
.row_content {
  /*background-color: #38383880;
  border: #B8EEF5 3px solid;
  padding: 20px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: grid;
  grid-template-rows: 48px 1fr 1fr 40px;*/
  border-radius: 25px;
  z-index: 1;
  position: relative;
}
.row.dark-mode {
  background-color: #A08673;
  color: #ffffff;
}
.row > p {
  max-width: 600px;
}
.row_image {
  margin-left: auto;
  margin-right: auto;
}
.row_image_horizontal {
  display: flex;
  min-width: 150px;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-height: 334px;
  margin-top: auto;
  margin-bottom: auto;
}
.row_image_vertical {
  display: flex;
  min-width: 150px;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 250px;
  height: 334px;
}
.row_button {
  display: inline-block;
  padding: 9px;
  background-color: #19828A;
  color: #ffffff;
  border-style: solid;
  border-color: #34595e;
  border-width: 2px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.8em;
  font-weight: 500px;
}
.row_button.dark-mode {
  background-color: #34595e;
  border-color: #19828A;
}
.row_button.dark-mode:hover {
  background-color: #91B1B5;
  color: #000000;
}
.row_header {
  font-size: 1.7em;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  color: #201D18;
  margin-top: 15px;
  margin-bottom: 10px;
}
.row_header.dark-mode {
  color: #ffffff;
}
.row > h3 {
  font-size: 1em;
  color: #34595e;
}

.show {
  display: none;
}

.social_container {
  display: block;
  margin-left: 0%;
  width: 18%;
}

/* IDs */
#dropDown {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 2;
  height: 40px;
  width: 40px;
  background-color: #34595e;
  color: #ffffff;
  border-style: none;
  border-radius: 20px;
  transition: background-color 1s;
}
#dropDown:focus {
  background-color: #171921;
  color: #B8EEF5;
  transition: background-color 1s;
}

#fname, #lname, #email, #tel {
  max-width: 50%;
}

#full_length {
  width: calc(100% - 22px);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}

#hidden_link {
  text-decoration: none;
  background-color: #34595e;
  color: #ffffff;
}

#home_link {
  position: relative;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-size: 1.25em;
  font-weight: 700;
  height: 30px;
  padding-top: 10px;
  background-color: #B8EEF5;
  color: #000000;
  flex-grow: 4;
  align-self: auto;
}
#home_link:hover {
  background-color: #171921;
  color: #ffffff;
  font-weight: bolder;
}
#home_link:hover.dark-mode {
  background-color: #19828A;
  color: #ffffff;
}
#home_link.dark-mode {
  background-color: #91B1B5;
}

#msg {
  max-width: 75%;
}

/*animations*/
@keyframes glowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=base.css.map */