/* colors: #E5DED3 -LIGHT BEIGE
#D56A44 - ORANGE  #495867 - BLUE
/* #1E1E1E - OFF BLACK  #9D988C - GREY  */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{ 
  background-color: #E5DED3;
  max-height: 310rem;
  overflow-x: hidden;
}

nav{
    align-items: center;
    
}
.header {
  background-color: #d5ccbe;
  /* box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1); */
  position: fixed;
  width: 100%;
  z-index: 3;
  align-items: center;
  border-bottom: 2px solid #333;
}

.header ul {
display: flex;
justify-content: center;
width: 100%;
/* align-items: center; */
/* position: absolute; */
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  /* background-color: #fff; */
  font-family: 'Aglet Sans', sans-serif;
  flex-wrap: wrap;
}

.header li a {
  display: block;
  padding: 20px 20px;
  /* border-right: 1px solid #f4f4f4; */
  color: #333;
  text-decoration: none;
  
}
.header img{
    position: absolute;
    max-width: 7rem;
  padding: 0;
  margin-top: .85rem;
}
#order{
    position: relative;
    right: 0;
    margin-right: 10px;
}
   

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
  position: absolute;
  z-index: 1;
}


.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }


/* Menu toggle: */

  @media (min-width: 65em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
    
    
  }

  /* menu toggle^ */

  /* section one */

  .section_one{
    width: 100vw;
    height: 70rem;
    display: flex;
  }
  .heading{
    position: absolute;
    z-index: 2;
    margin-top: 7.5rem;
    display: flex;
    width: 100vw;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid black;
    height: 90px;
    font-family: 'Aglet Sans', sans-serif;
    box-shadow:-0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
  }
  .heading h1{
    font-size: 32px;
    position: absolute;
    top: 0;
    margin-top: .3rem;
  }

  .heading p{
    position: absolute;
    margin-top: 1.75rem;
    font-size: 16px;
    padding: 2px;
  }
  .contact_form{ 
    display: grid;
    row-gap: 5px;
    justify-content: center;
    height: 35rem;
    position: absolute;
    width: 100vw;
    margin-top: 15rem;
    font-family: 'Aglet Sans', sans-serif;
  }

  .contact_form form{
        border: 1px solid black;
        min-width: 69vw;
        background-color: #fff;
        margin: 0 auto;
        box-shadow:-0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
        padding: 20px;
        display: flex;
        flex-direction: column;
    }
  

  input, button, textarea {
    border: 2px solid rgba(0, 0, 0, 0.6);
    background-image:none;
    background-color: #dadad3;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 5px;
  }
  textarea {
    min-height: 50px;
    resize:vertical;
}

.contact_form #com{
  min-height: 350px;
}

.contact_form button{
cursor: pointer;
box-shadow:-0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);

}

/* orange spots */

.orange_spot{
  width: 20.5rem;
  height: 20.5rem;
  background-color: #D56A44;
  border-radius: 100%;
  filter: blur(75px);
}
.spot_one{
  position: absolute;
  margin-top: 20rem;
  margin-left: -10rem;
}

.spot_two{
  position: absolute;
  right: 0;
  margin-top: 45rem;
}

