*{
    margin: 0;
    padding: 0;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
  
  body{
    font-family: 'Raleway', sans-serif;
    margin: 0;
    background-color: #F3F3F3;
  }
  
  .body::after{
    content: '';
    background: #333;
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
  }
  
  .hero{
    width: 100%;
    height: 100px;
    max-height: 200px;
    position: relative;
    color: white;
  }
  
  .container{
    width: 100%;
    overflow: hidden;
    padding: 0;
  }
  
  nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
    font-weight: bold;
    background-color: #E2792E;
    width: 100%;
  }
  
  ul li{
    display: inline-block;
    padding: 10px 20px;
  }
  
  .nav-item{
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-shadow: 3px 3px 10px black;
    padding: 13px 20px;
  }
  
  .nav-item:hover{
    border-radius: 10px;
    color: #E2792E;
    text-shadow: none;
    background-color: white;
    transition: .1s;
    font-size: 20px;
  }
  
  p{
    font-size: small;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    padding: 10px;
  }
  
  .logo{
    width: 150px;
    padding-left: 50px;
  }
  
  .nav-item{
    color: white;
    text-shadow: 3px 3px 12px black;
    text-decoration: none;   
  }

  h4{
    padding: 10px;
    text-align: center;
  }

  h6{
    padding: 10px;
    text-align: end;
  }

  section{
    padding: 50px;
  }
  
  .nota{
    padding-top: 30px;
    text-align: justify;
  }
  
  @media screen and (max-width: 768px){
    p{
        padding: 0px 10px;
        font-size: 14px;
    }
    .img-fracc{
        width: 150px;
        height: 150px;
    }
    .img-fracc-spc{
        width: 240px;
        height: 240px;
    }
    .fraccionamientos{
        margin: 30px 0;
    }
    .direccion{
        padding: 0px;
    }
    .nav-item{
        font-size: 12px;
    }
  }