* {
box-sizing: border-box;
padding: 0;
margin: 0;
scroll-behavior: smooth;
}

body {
  background-image: url(../images/rat.jpg);
  background-size: cover;
  opacity: 0.9;

}

.nav {
  display: none;
}
.sidenav {
  font-family: 'Poppins', sans-serif;
  height: 100%; 
  width: 0; 
  position: fixed;
  z-index: 2; 
  top: 0; 
  left: 0;
  background-color: #baa864; 
  overflow-x: hidden;
  padding-top: 60px; 
  transition: 0.5s;
}


.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}


.sidenav a:hover {
  transition: 0.5s;
  color: #FCE9d2;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

body {
  overflow-x: hidden;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("rat.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  transition: margin-left .5s;
  padding: 20px;
  z-index: 1;
}
.page .sidebar {
  height: 100vh;
  width: 50px;
  float: left;
  background-color: #baa864;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0.8;
  z-index: 1;
}

.page .sidebar .toggle{
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin-left: 9px;

}

.page .sidebar .toggle::before{
  content: "";
  position: absolute;
  top:7px;
  width: 100%;
  height: 2px;
  background: white;
}

.page .sidebar .toggle::after{
  content: "";
  position: absolute;
  bottom:7px;
  width: 100%;
  height: 2px;
  background: white;
}

.page .form {
  font-family: 'Poppins', sans-serif;
  background-color: white;
  padding: 10px;
  border-radius: 30px;
  margin-left: 100px;
}

.page .form input {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  width: 300px;
  height: 50px;
  border: solid;
  border-color: #baa864;
  border-radius: 20px;
  padding: 10px;
  margin: 5px;
}

.page .form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  width: 300px;
  height: 200px;
  border: solid;
  border-radius: 20px;
  border-color: #baa864; 
  padding: 10px;
  margin: 5px;
  resize: none;
}

.page .form .g-recaptcha {
  width: 300px;
  margin: 5px;
}

.page .form .submit {
  cursor: pointer;
  background-color: white;
  border: solid;
  border-color: #baa864;
  color: #baa864;
}

.page .form .submit:hover {
  transition: 0.5s;
  background-color: #baa864;
  border-color: white;
  color: white;
}

.page .form .contact ul{
  padding: 3px;
  list-style-type: none;
}
.page .form .contact a {
  text-decoration: none;
  color: #baa864; 
}

@media screen and (max-width: 1256px) {
  .nav {
    display: inherit;
    background-color: #baa864;
    top: 0;
    width: 100%;
    text-align: center;
    position: fixed;
    opacity: 0.8;
    z-index: 5;
  }
  .nav li {
    display: inline-block;
    padding: 5px;
    
  }
  .nav li a {
    text-align: center;
    text-decoration: underline;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
  }
  .sidebar {
    display: none;
  }
  .page .form {
    margin-top: 20px;
    margin-left: -10px;
  }
}
