.container2 {
  width: 100%;
  display: grid;
  grid-template-columns: 550px 40% 1fr ;
  grid-template-rows:600px 25px;
  grid-gap: 5rem; 10em;
  grid-gap-row:10em;
  
 
    
}

#toggle {
  display: none;
} 
nav{
    display:none;
} 

 @media (max-width: 700px)   { .container2 {
     display:block;
 }button { width: 25px;
          height: 30px;
    color: darkgrey;
    border-color:black;
     }
     div.item1-4{max-width: 450px;}
 }
 div.item1-4 {width: 515px;}
div.item4-4 {width:515;}

 
@media (max-width: 800px)   { 
    
    .container {
     display:block;
 } 
}

@media (max-width: 800px)   {
     
   
     
    
.nav-choice {
  position: relative;
  margin: 35px auto 0;
  max-width: 750px;
  max-height: 375px;
  background-color: #f8f9fa;
  overflow: hidden;
}


nav.navbar.navbar-expand-lg.navbar-light.bg-light {
        display:none}

.navbar-label{
  position: absolute;
  width: 20px;
  height: 20px;
  margin: 25px;
  background-color: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.6s;
}

#toggle {
  display: none;
}

.two, .nav-link {
  text-decoration: none;
  /*display:block;*/
  display: inline-block;
  float: left;
  clear: both;
  color: transparent;
  font-size: 17px;
  letter-spacing: -6px;
  height: 7px;
  line-height: 7px;
  text-transform: uppercase;
  transform: scaleY(0.2);
  transition: 0.5s, opacity 0.1s;
}
.two:before {
  position: absolute;
  content: '';

  top: 50%;
  transform: translateY(-50%) scaleY(5);

  width: 100%;
  height: 2px;
  background-color: #EC7263;
  transition:0.5s;
}

nav {
  display: inline-block;
  margin: 25px 25px 20px;
  pointer-events: none;
  transition: 0.5s;
  
}

/*===================================================
        Moving the navigation menu on click
=====================================================*/
#toggle:checked ~ nav {
  margin-bottom: 100px;
  pointer-events: auto;
  transform: translate(50px, 50px);
  
}
/*===================================================
        Spreading out the hyperlinks
=====================================================*/
#toggle:checked ~ nav .two {
  color: #a59e9d;
  letter-spacing: 0;
  height: 40px;
  line-height: 40px;
  margin-top: 0;
  opacity: 1;
  transform: scaleY(1);
  
}
/*===================================================
        Removing the lines
=====================================================*/
#toggle:checked ~ nav .two:before {
  opacity: 0;
}
/*===================================================
        The Hover Effect
=====================================================*/
.navbar-label:hover {
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1), inset 0 0 0 20px rgba(0, 0, 0, 0.1);
}

/*==================================================
          Cross button Creation
====================================================*/
.navbar-label:before, .navbar-label:after {
  position: absolute;
  content: '';
  top:50%;
  left: 0;
  width: 100%;
  height: 1px;
  /*transform:translateY(-25%);*/
  background-color: #EC7263;
  border-radius: 5px;
  transition: 0.5s;
}
#toggle:checked ~ .navbar-label:before {
  height: 2px;
  transform: translateY(-50%) rotate(45deg) scale(1);
}
#toggle:checked ~ .navbar-label:after {
  height: 2px;
  transform: translateY(-50%) rotate(-45deg) scale(1);
}

.navbar-label:before {
  transform: translateY(-50%) rotate(45deg) scale(0);
}
.navbar-label:after {
  transform: translateY(50%) rotate(-45deg) scale(0);
}

}