@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
box-sizing: border-box;
padding: 0;
margin: 0;
scroll-behavior: smooth;
}
.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("images/rat.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  transition: margin-left .5s;
  padding: 20px;
  z-index: 1;
}
.page .content {
  position: absolute;
  padding-top: 100px;
  width: 50%;
  float: left;
  margin-left: 100px;
}
.page .content h2{
  color: white;
  font-size: 3.5em;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
}

.page .content p {
  padding-top: 5px;
  margin-bottom: 20px; 
  color: white;
  font-family: 'Poppins', sans-serif;
}

.page .content a {
  margin-top: 50px;
  padding: 5px 20px;
  color: #baa864;
  border: solid;
  border-width: 4px;
  font-weight: 50px;
  cursor: pointer;
  background-color: white;
  text-decoration: none;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;

}

.page .content a:hover{
  color: white;
  background: #baa864;
  transition: 0.5s;
}

.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;
}
.contacts {
  width: 100%;

}
.contacts li{
  display: inline-block;
  margin: 5px;
  font-size: 15px;
  font-weight: 10px;
  color: #4a270a;
  font-family: 'Poppins', sans-serif;
}

.contacts a {
  text-decoration: none;
  color: #4a270a;
  font-family: 'Poppins', sans-serif;
}
.about {
  opacity: 0.8;
  z-index: 0;
  transition: margin-left .5s;
  overflow-x: hidden;
  }

.about::before {
  content: "";
  background-color: linear-gradient(to top, #fce9d2, transparent);
}
.about .colomn {
  content: "";
  width: 90%;
  clear: both;
  display: table;
  margin-left: 50px;
  justify-content: center;
}
.about .row {
  width: 30%;
  float: left;
  margin: 15px;
  font-family: 'Poppins', sans-serif;
  color: #4a270a;  
}
.about .row p {
  text-align: justify;
} 

.about .row img {
  width: 33%;
}

.footer {
  background-color: black;
  color: white;
  font-family: 'Poppins', sans-serif;
  height: 5vh;
  width: 106%;
}

@media screen and (max-width: 1256px) {
  .about .colomn .row {
    width: 100%;
    float: none;
  }
  .page {
    width: 110%;
  }
  .page .content {
    padding-top: 30px;
    margin-left: 0px;
    width: 80%;
  }
  .page .content h2 {
    font-size: 3em;
  }
  .sidebar {
    display: none;
  }
  .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;
  }
  .content .open {
    display: none;
    
  }
  .about {
    opacity: 0.8;
    z-index: 0;
    transition: none;
    overflow: hidden;
    margin: -10px;
    width: 110%;
  }
  .about .colomn {
    margin-left: -15px;
  }
  .content p span {
    display: none;
  }
  #b {
    text-align: center;
    
  }
}

  .footer p {
    padding-top: 8px; 
    font-size: 13px;
  }

  .footer p a {
    text-decoration: none;
    color: white;

  }
  .footer {
    margin-top: 3px;
    width: 110%;
  }
@media screen and (max-width: 1023px) {
  .page .content h2 {
    font-size: 2em;
  }
}