body {
  margin: 0px;
  padding: 0px;
  /* background-color: #ff8a00; */
  font-family: "Nunito", sans-serif;
}
/* For Navbar */
nav {
  background: #000000;
  color: #EBEBD3;
  padding: 1em 0;
  position: relative;
}

nav::after {
  content: '';
  clear: both;
  display: table;
}

.nav-container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.logo {
  font-family: "Nunito", sans-serif;
  float: left;
  font-size: 1.2em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: lighter;
}

.nav-container > a{
  color: #EBEBD3;
}

.logo span {
  font-weight: 300;
  color: #EBEBD3;
}

.site-nav {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  right: 0;
  background: #000000;
  height: 0px;
  overflow: hidden;
}

.site-nav--open {
  height: auto;
}

.site-nav li {
  border-bottom: 1px solid #575766;
}

.site-nav li:last-child {
  border-bottom: none;
}

.site-nav a {
  color: #EBEBD3;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 2em 6em 2em 2em;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #e4b363;
  color: #464655
}

.menu-toggle {
  padding: 1em;
  position: absolute;
  top: .5em;
  right: 1em;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after{
  content: '';
  display: block;
  background: #ebebd3;
  height: 2px;
  width: 25px;
  /* border-radius: 3px; */
  transition: all ease-in-out 500ms;
}

.hamburger::before {
  transform: translatey(-7px);
}

.hamburger::after {
  transform: translatey(4px);
}

.open .hamburger {
  transform: rotate(45deg);
}

.open .hamburger::before {
  opacity: 0;
}

.open .hamburger::after {
  transform: translatey(-3px) rotate(-90deg);
}

@media (min-width: 700px) {
  
  .menu-toggle {
    display: none;
  }
  
  .site-nav {
    height: auto;
    position: relative;
    background: transparent;
    float: right;
  }

  .site-nav .nactive{
    color: #ff9d00;
  }
  
  .site-nav li {
    display: inline-block;
    border: none;
  }
  
  .site-nav a {
    padding: 0;
    margin-left: 3em;
  }
  
  .site-nav a:hover,
  .site-nav a:focus {
    background: transparent;
  }
  
  .site-nav--icon {
    display: none;
  }
  
}
/* End Navbar */

.container {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0px auto;
  align-items: center;
  justify-content: center;
}

.left,
.right {
  height: 100vh;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right {
  width: 40%;
  background-color: #fff;
  align-items: center;
}

.left{
  align-items:center;
  width: 60%;
  background-color: #ff8a00;
}

.left > h1{
  font-weight: 200;
  text-transform: uppercase;
}

p {
  font-family: "Nunito", sans-serif;
  text-align: center;
  font-weight: 500;
  margin: 0px;
  display:block;
  width: 60%;
  font-size: 20px;
  line-height: 40px;
  color: aliceblue;
  line-height: 30px;
}

.icons{
  padding-top: 20px;
}

.left  a {
  text-align: center;
  text-decoration: none;
  font-size: 2em;
  color: #000000;
  padding: 10px;
  transition: ease 250ms;
}

.left a:hover{
  color:#fff;
}

.left > a:hover{
  background-color: #000000;
  color: #ebebd3;
  padding: 7px 30px;
  border-radius: 5px;
}

img {
  height: 300px;
  width: 350px;
  border-radius: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

span{
  color: #000000;
  font-family: "Nunito", sans-serif;
}

@media (max-width: 800px) {
  .container {
    flex-direction: column;
  }
  .left,
  .right {
    text-align: center;
    justify-content: center;
    width: 100%;
    border-radius: 0;
  }
  a{
    margin: 0px auto;
    margin-top: 20px;
  }

  .right{
    display: none;
  }

  p{
    width: 80%;
  }
}
