* {
  box-sizing: border-box;
  padding: 0;
  margin:0;
  font-family: 'arial', sans-serif;
}

  .signup-form {
      margin: auto;
      width: 25rem;
    }
  
a {
  text-decoration: none;
}

p {
  line-height: 1.2rem;
}

ul {
  list-style: none;
}



/* nav section */
.nav-menu {
  position: sticky;
  display: flex;
  top: 0;
  padding: 16px;
  justify-content: space-between;
  z-index: 20;
  background: rgba(250, 250, 250, 0.1);
}

/* display: flex;
position: sticky;
top:0;
background: #333;
color: #fff;
justify-content: space-between;
z-index: 1;
padding: 1rem;
} */

.nav-menu ul {
  display: flex;
  margin-right: 50px;
  align-items: center;
  list-style: none;
  font-size: 0.85rem;
}
.nav-menu ul li a{
  color: gray;
  padding: 10px;
  margin: 0 10px;
  transition: background, color, 2s ease-in-out;
}

.nav-menu ul li a:hover {
  background: red;
  color: white;
  border-radius: 5px;
}

.active-nav-link {
  background: rgb(121,18,21);
  padding: 10px 0px;
  border-radius: 5px;
}
.active-nav-link a{
  color: white !important; 
}

/* home section */

.main_preview {
  display: flex;
  background: url("../img/uc.png") center center/cover no-repeat;
  Height: 100vh;
}

.main_preview .main_preview_headers {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 50%;
  padding: 0 5rem;
  position: absolute;
  align-items: left;
  text-align: left;
  justify-content: center;
  /* background-color: rgba(122, 3, 17, 0.5); */
}

.main_preview_headers h2 {
  font-weight:bolder;
  margin-bottom: 0.1rem;
  color: rgb(94, 96, 98);
}


.main_preview_headers h1 {
  font-size: 3rem;
  font-weight:bolder;
  margin-bottom: 0.1rem;
  color: rgb(121,18,21);
}

.main_preview_headers img {
  max-width: 400px;
}
.main_preview_headers p {
  padding: 0.2rem;
  line-height: 1.4rem;
  border-bottom: white solid 2px;
  border-top: white solid 2px;
  width: 250px;
  text-align: left;
}

.about_button {
  background: black;
  color:white;
  width: 150px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
  padding: 5px 5px;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  margin-top: 1rem;
}


/* contacts Section */
.contacts_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}


.quotes {
  font-size: 20px;
  color: red;
}


.contact_us{
  margin-top: 15%;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: left;
  height: 100%;
}

.address {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  padding: 10px;
  max-width: 600px;
  font-size: 13px;
}
.signup-title {
  text-align: center;
  font-size: 1.8rem;
  color: #ff5454;
}

.form-wrap p {
  text-align: center;

}

.signup-form {
  background: white;
  width: 90%;
  padding: 5px;
  margin: auto;
}

.input textarea {
      padding: 1rem;
      background: rgb(240, 240, 244);
      display: flex;
      margin: auto;
      display: block;
      border-radius: 5px;
      box-shadow: rgba(0,0,0,0.3);
      font-family: Roboto;
      border: 0px;
      border-bottom: 2px solid white;
  }

  .signup-form input,
  .signup-form select,
  .signup-form textarea {
      display: block;
      background: rgb(250, 250, 250);
      margin: 20px auto;
      padding: 10px;
      color: grey;
      padding: 10px;
      width: 100%;
      border: 0px;
      border-bottom: 2px solid transparent;
  }

.msg textarea{
    height: 150px;
    border: 0px;
    border-bottom: 2px solid transparent;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #818383;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #818383;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #818383;
}
  .btn {
    background: rgb(121,18,21);
    text-align: center;
    padding: 15px;
    border: 0px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
  }

  .btn:hover {
    background: #791D16;
  }
.signup-page {
  margin-top: 3rem;
}

 .signup-title h1{
   margin-top: 2rem;
   font-size: 40px;
   margin: auto;
}


 /* footer section */
footer {
  padding: 20px;
  z-index: 20;
  background: rgb(38, 38, 38);
  color: white;
}

.foot_copy {
  text-align: center;
}
footer a{
  color: white;
}

footer a:hover {
  color: grey;
}

.contact_us iframe {
  display: flex;
  max-width: 700px;
}


/* success page */

.containers {
  display: flex;
  flex-direction: column;
  color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #791D16;
  padding: 30px;
}

.containers a {
  background: red;
  padding: 10px;
  color: white;
  border-radius: 5px;
  margin-top: 10px;
}